Build a Cat Blog Page - Step 15

Tell us what’s happening:

I am unable to solve step 15 in cat blog page
Please help me to solve it

Your code so far

<!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 peacefully sleeping"
        />
        <figcaption>Mr. Whiskers Sleeping</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>

<!-- User Editable Region -->

        <article>
          <h3>Mr. Whiskers' First Day Home</h3>
          <p>lorem ipsum dolor sit amet,consectetur adipiscing elit. Mr.Whiskers, the newest addition to the family,arrived with a gentle purr,eager to explore his new home.Curabitur bibendum urna eu turpis cursus,vel volutpat risus vehicula.The moment he stepped through the door,his eyes widened, taking in every corner with curiosity</p>

          <p>Sed vitae felis a odio malesuada venenatis.Mr.Whiskers carefully sniffed the soft carpet, his tiny paws leaving delicate impressions as he adjusted to his new surroundings.Phasellus fermentum purus et erat fringilla, vel varius dui fermentum.His tail flicked with excitement as he discovered the cozy spots around the living room.</p>
        </article>

<!-- User Editable Region -->

      </section>
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36

Challenge Information:

Build a Cat Blog Page - Step 15

you use copy and paste and put all the given text in a single p element, then put all the same text in a second p element