Learn HTML by Building a Cat Photo App - Step 4

Tell us what’s happening:

I am not getting the output, please help me with this

Your code so far

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

<!-- User Editable Region -->

    <h1>TODO: Add link to cat photos</h1>
    <!--<p>See more cat photos in our gallery.</p>-->
   <p>TODO: Add link to cat photos</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/127.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 4

Hi @Swati-coder-boot and welcome!

What the instructions wants is for us to add a comment above:

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

A comment should follow this pattern:

<!-- add text here -->

Our comment in this step will have the text: TODO: Add link to cat photos.

Let’s use another example. Say I want to add a comment below an <h1> element. I would do something that looks like the following:

<h1>I am a heading element</h1>
<!-- I am a comment below the heading element -->

I hope this helps. Happy Coding!