Learn HTML by Building a Cat Photo App - Step 4

The Commenting tag is not worki
im using the tag as it sead but it is not working

CatPhotoApp

Cat Photos

See more cat photos in our gallery.


<!-- User Editable Region -->

<html>
  <body>
    <h1>CatPhotoApp</h1>
    <h2>Cat Photos</h2>
    <!---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/110.0.0.0 Safari/537.36 Edg/110.0.1587.41

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

Link to the challenge:

I know this seems real picky, but that’s just the way the test are :slightly_smiling_face:

You have added an extra dash at the beginning. Because a comment starts with <!-- that extra dash is being interpreted as being part of the comment text. So the tests think you added -TODO: Add link to cat photos with that extra dash in there and thus you aren’t passing because it is not exactly the same as what was expected.

In general, do not add any more than what you are asked to add or the tests will yell at you. Even one extra character (which includes spaces) can cause you to fail the tests.

1 Like

Thank you so much. that did work