Build a Cat Blog Page - Step 11

Tell us what’s happening:

Please help me to solve it…i have been tried for too long

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 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>

<!-- User Editable Region -->

    <p>lorem ipsum dolor sit amet consectetur adipisicing elit.Quisquam</p> 
    <p>quod, voluptates, quae, quos quisquam, dolorum quia nemo repudiandae</p> 

<!-- User Editable Region -->

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

Your browser information:

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

Challenge Information:

Build a Cat Blog Page - Step 11

please copy the one paragraph provided in the example code, and use that twice

Hey buddy, Over here you need to add only two paragraph tags not to add anything in it.

Below your h3 element, add two paragraphs of lorem ipsum text.

Hope You Understand.

`copy and paste all this

<p>
  Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam
  quod, voluptates, quae, quos quibusdam dolorum quia nemo repudiandae
  quidem voluptatum quas. Quisquam quod, voluptates, quae, quos
  quibusdam dolorum quia nemo repudiandae quidem voluptatum quas.
</p> and also the p tags 

and paste twice and you will pass this thanks as i know how frustrating it is i am trying to help you if you need any more help lett me know thanks Ian.`