Build a Cat Blog Page - Step 11

Tell us what’s happening:

My lorem ipsum text is not running successfully. The test result says “2. Your first paragraph element should have lorem ipsum text. Double check for spelling and punctuation errors.
3. Your second paragraph element should have lorem ipsum text. Double check for spelling and punctuation errors.”

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

<!-- User Editable Region -->

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

Your browser information:

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

Challenge Information:

Build a Cat Blog Page - Step 11

GitHub Link: https://github.com/freeCodeCamp/freeCodeCamp/blob/main/curriculum/challenges/english/blocks/workshop-blog-page/66a335e5888ffb367633200a.md

Yes, you made a typo. You are missing space after comma in both of your paragraphs. The best solution is to copy and paste complete lorem ispum text given by instructions.

Thank you! That solved the issue. I appreciate your help

It sounds like the test isn’t finding the exact text it expects. I’d double-check the content inside both <p> elements and make sure the spelling, spacing, and punctuation match the instructions exactly. Even a small difference can cause the test to fail. If you’re still stuck, sharing your current code would help others spot the issue more quickly.