Learn HTML by Building a Cat Photo App - Step 4

Tell us what’s happening:
what am I missing here?

Your code so far

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

<!-- User Editable Region -->

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

<!-- 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/115.0.0.0 Safari/537.36 Edg/115.0.1901.203

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

Link to the challenge:

How would you turn
TODO: Add link to cat photos
into a comment?

Hello!

@jjfcc is giving you a good hint into the problem.

You have turned something into a comment which is great.

The only problem, as @jjfcc is hoping to draw your attention to, is that it is not the correct text to be made into a comment.

If you use the information from @jjfcc, and the code for the comment, you will pass.

Happy coding! :slight_smile:

I still don’t get it.

This is the work area with your code.

Below this line is what we start Step 4 off with at the beginning.

< p>See more cat photos in our gallery.< /p>

And this is what the instructions tell us to do.

Add a comment above the p element with this text:

TODO: Add link to cat photos

Therefore, the comment that is showing in your post has two errors.

  1. It is not above the < p>See more cat photos in our gallery.< /p>.
    It has been made into the comment.

  2. Though the TODO: Add link to cat photos is in the correct location above the p element, it has not been made into a comment.

This could easily be fixed by removing the comment < ! - - and the - - > from their current locations to the correct locations surrounding the correct text TODO: Add link to cat photos to be the comment.

Happy coding! :slight_smile:

i got it!! thanks for the responds!!

1 Like

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