Learn HTML by Building a Cat Photo App - Step 4

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<html>
  <body>
    CatPhotoApp
    <h2>Cat Photos</h2>
<!--4Add link to cat photos--> 
    <p>Click here to view more cat photos.</p>
  </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/105.0.0.0 Safari/537.36

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

Link to the challenge:

1- The content CatPhotoApp must be inside the tag <h1>HERE</h1>
2- You have an error in the content of the comment I advise you to copy and paste
To avoid mistakes

1 Like

I did fix it. still stuck on it.

Step 4

Commenting allows you to leave messages without affecting the browser display. It also allows you to make code inactive. A comment in HTML starts with <!--, contains any number of lines of text, and ends with -->. For example, the comment <!-- TODO: Remove h1 --> contains the text TODO: Remove h1.

Add a comment above the p element with this text:

TODO: Add link to cat photos

wrong code : <!--4Add link to cat photos-->
correct code : <!--TODO: Add link to cat photos-->

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