Learn HTML by Building a Cat Photo App - Step 4

Tell us what’s happening:
I’m entering the correct code but I keep on receiving the message that there are extra openings or closing characters. Also, I entered the text as indicated in the exercise still it keeps on saying you should enter this text. The position of the comment is also wrong. It says above p and doesn’t recognize either.

Your code so far

<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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.69

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

Link to the challenge:

Hello and welcome to the community :smiley:!

remove the extra > closing bracket. Comments should look like this:

<!-- and -->

This is spare as well as your comments should not have the syntax of element tags:

Ex of commented out code:

<!-- This is a comment in
multiple lines.-->

Hello!

Use the above for reference on how to do your comment.

1 Like

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