Build a Cat Blog Page - Step 12

Tell us what’s happening:

Hi everyone, I am stuck on Step 12 of the ‘Build a Cat Blog Page’ project. I am trying to add a second article element with an h3 heading and two paragraphs of lorem ipsum text, but my code is not passing. I have checked my tags and nesting, but I can’t find the error. Could someone please review my code and point out what I am doing wrong? Thank you!

Your code so far


<!-- User Editable Region -->

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Mr. Whiskers' Blog</title>
    <meta charset="UTF-8" />
</head>
<body>
    <header>
        <h1>Welcome to Mr. Whiskers' Blog Page!</h1>
        <figure>
            <img src="https://cdn.freecodecamp.org/curriculum/css-photo-gallery/1.jpg" alt="a cat in the garden" />
            <figcaption>Mr. Whiskers in the Garden</figcaption>
        </figure>
        <nav>
            <ul>
                <li><a href="#about">About</a></li>
                <li><a href="#posts">Posts</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </header>

    <main>
        <section id="about">
            <h2>About</h2>
            <p>Hi there! I'm Jane Doe, a passionate writer who finds endless inspiration in the antics of my beloved cat, Mr. Whiskers.</p>
            <p>His playful nature and boundless energy keeps me on my toes. I love him so much.</p>
        </section>

        <section id="posts">
            <h2>Posts</h2>
            <article>
                <h3>Mr. Whiskers' First Day Home</h3>
                <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque quibusdam dolorum quia nemo repudiandae quidem voluptatum quas. Quisquam quod, voluptates, quae, quos.</p>
            </article>
            <article>
  <h3>Mr. Whiskers' First Bath</h3>
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
  <p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
</article>

        </section>

        <section id="contact">
            <h2>Contact</h2>
            <p>You can reach me at: janedoe@email.com</p>
        </section>
    </main>
</body>
</html>

<!-- User Editable Region -->

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36

Challenge Information:

Build a Cat Blog Page - Step 12

fist please reset the step, you made changes to this one

you need to use again the whole p element with the lorem ipsum text you used in the previous step