Build a Cat Photo App - Step 4

Tell us what’s happening:

Hola buenas tardes me está arrojando este error y no se como solucionar, soy principiante ayuda!!

Your comment should be above the p element. You have them in the wrong order.

Este es el codigo que estoy poniendo no se que esta mal

Your code so far

<html>
  <body>
    <h1>CatPhotoApp</h1>
    <h2>Cat Photos</h2>

<!-- User Editable Region -->

    
    <p>Everyone loves cute cats online!</p>
    <p>
  <!--TODO: Add link to cat photos-->
    </p>
      


  

  

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

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

Challenge Information:

Build a Cat Photo App - Step 4

Hi there, and welcome to the community!

I noticed a few issues in your code:

  1. You have an extra <p> and </p> tag that is not needed.
  2. The comment is placed inside the <p> element, but the lesson asks you to add it before the <p> element, outside of it.
    The instructions say:

Add a comment above the <p> element with this text:
TODO: Add link to cat photos

Try adjusting your code accordingly. Keep going—you’re doing great! :rocket:

Hey Buddy See here is the given code in instructions.

 <p>Everyone loves cute cats online!</p>

And here is your written code.

Here you only need to remove your p tag and kindly shift comment line above p tag

Because as per instructions you need to add the comment line above your p tag.

<p>
  <!--TODO: Add link to cat photos-->
    </p>

Hope You Understand.