Crie uma Página de Blog de Gatos - Passo 11

Conte-nos o que está acontecendo:

Mr. Whiskers First Day Home

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempornincididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sun in culpa qui officia d eserunt mollit anim id est laborum.

o código diz que o primeiro elemento parágrafo deve conter lorem ipsum.verifique a ortográfica e pontuação .Solícito a correção.

Seu código até o momento

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

<!-- User Editable Region -->

   <sectoon id="about">
  <h2>About</h2>
  <h3>Mr. Whiskers' First Day Home</h3>
          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sed do eiusmod tempor incididunt ut labore et dolorw magna aliqua. Ut enim adminim veniam,quis nostrud exercitation ullamco laboris nisi ut sliquip ea commodo consequat.</p>
          <p>Duis aute iture dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariwtur.Excepteur sint occaecat cupidatat mon proident, sun in culpa qui officia deserunt mollit anim id est laborum.</p>  
          </section> 

<!-- User Editable Region -->

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

Informações do seu navegador:

Agente de usuário: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Mobile Safari/537.36

Informações do desafio:

Crie uma Página de Blog de Gatos - Passo 11

Hi @robertrosadelima ,

It looks like you may have changed the starting code in areas you were not asked to change, which will cause the tests to fail. Please click the reset button to restore the original code and try again.

image

Both paragraphs should contain the exact lorem ipsum text that is shown in the instructions.

Happy coding!