Comment out HTML <help>

Tell us what’s happening:

Your code so far


</h1>


<h2>CatPhotoApp</h2>-->
<!--
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>-->

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/comment-out-html

So far, you have commented our your p element. Do the same for your h1. Overall, you’ll want to have two comment outs.

Comment Example:
<!-- text -->

As per what I can see, you did not comment out H1 part

Yes, you need to comment out the h1. For example,

<!-- THIS IS COMMENTED OUT  BT H2 IS VISIBLE INFORMATION. 
<h1>Information here </h1>

-->

<h2> You can see this information because it is NOT commented out </h2>

Hope this can help you :smile: