Learn HTML by Building a Cat Photo App - Step 4

Tell us what’s happening:

This is my code

Click to preview more cat photos

But it says that "Your comment should be above the element p . You have them in the wrong order". Does any one know ?

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>
  <p>Click to preview more 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/128.0.0.0 Safari/537.36 OPR/114.0.0.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 4

this is the p element, you need to put the comment above this

the comment should not be inside a p element

did that still doesn’t work

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

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

where this came from? that text is to be of the comment, not of a p element

never mind thanks it works now