Learn HTML by Building a Cat Photo App - Step 4

Hello,
I’ve been trying to pass and so far I don’t see anything bad with my code, can you help me please?

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

<!-- User Editable Region -->

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

<!-- 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/111.0.0.0 Safari/537.36 Edg/111.0.1661.62

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

Link to the challenge:

Howdy! Thanks for posting your question on the forum.
Your code:

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

Instruction:
Add a comment above the p element with this text:
TODO: Add link to cat photos

I can see that you’ve added your comment below the p element. This challenge requires you to add your comment above the p element.
Just copy your comment, delete it, and add it above the p element.

Your new code should look like this:

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

Hope this helped!

1 Like

hello and welcome to fcc forum :slight_smile:

  • misplaced comment

lets read from instructions

Add a comment above the p element with this text:
TODO: Add link to cat photos

  • as you can see you’re supposed to “place it above p”, currently you have it under it

address that change and it should be alright, happy learning :slight_smile:

1 Like

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