Learn HTML by Building a Cat Photo App - Step 4

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

What am I doing wrong? where do I put the comment insert and how do I write it please

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <h2>Cat Photos</h2>
  <!--  TODO: Remove h1  --> TODO: Add link to cat photos <!-- TODO: Remove h1  -->
  <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/605.1.15 (KHTML, like Gecko) Version/15.2 Safari/605.1.15

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

Link to the challenge:

The instructions say:

Add a comment above the p element with this text:

TODO: Add link to cat photos

So to add a comment, the format you need looks like this:

<!-- put all the comments in the middle -->

They asked to add one comment.
The also asked that the comment contain the text provided:

TODO: Add link to cat photos

In your case you added this line:

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

Do you think you followed the instruction to add one comment containing the text shown?
Hopefully I’ve now pointed you in the direction you need to go.

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