Learn HTML by Building a Cat Photo App - Step 4

I dont know where ive failed to make a comment

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

<!-- User Editable Region -->

   <!---------->TODO: Add link to cat photos
    <p>See more cat photos in our gallery.</p>
    

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 4

Link to the challenge:

1 Like

Look at the example the challlenge gives you


For example, the comment 

<!-- TODO: Remove h1 -->

Here the text todo: remove h1 is a comment
Now, compare it to what you have.

1 Like

You have made a comment in the right place but the syntax of your comment is not right.

In HTML, the format for writing a comment is:
<!-- COMMENT -->

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.