Comment out and Uncomment Confused

Tell us what’s happening:
I am confused on what to do to comment out. What do I do? I need another example

Your code so far


<! --                        -->
<h1>Hello World</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; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36 Edg/84.0.522.69.

Challenge: Comment out HTML

Link to the challenge:

The challenge description says “Comment out your h1 element and your p element”.

Example: Comment out the h2 element:

<h1>Hello World</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>

I posted this to another question earlier today but it should help you as well.

In HTML you write comments like this :

<!-- Comment -->

For your challenge, three elements are commented out

<h1>, <h2> & <p>

the challenge wants you to leave the h1 & p tags commented out but change the h2 tag so that it will not be commented out.

Hint: You don’t need to rewrite all of the elements.

<!-- This is a comment.  --> 
   This is not a comment.