Learn HTML by Building a Cat Photo App - Step 16

Tell us what’s happening:

i dont know what it means when they say to remove the comment, could use some help here. not sure which comment theyre referring to

Your code so far

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

<!-- User Editable Region -->

      <!-- TODO: Add link to cat photos -->
      <p href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg"</p>
      <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>

<!-- User Editable Region -->

      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 16

Hi there! This is your comment and you need to remove it

1 Like

Thanks Ray. For the future, how am i supposed to identify what the comment is?

1 Like

you learned how to make a comment in step 4

Just keep in mind how to add comments in HTML:

<!-- Write your comments here -->

In CSS:
/* This is a single-line comment */ or

/* This is
a multi-line
comment */

And in JS:
// This is a single-line comment

/* This is
a multi-line
comment in JS too*/
1 Like

i tried it and it worked

1 Like