Help Comment out HTML

Tell us what’s happening:

Your code so far


<!--hh-->
<h1>Hello World</h1>

<h2>CatPhotoApp</h2>

<!--hh-->
<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; rv:60.0) Gecko/20100101 Firefox/60.0.

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

<!-- is the start of the comment and --> is the end. The challenge asks you to comment out h1 and p, but not h2, so you should wrap h1 and p separately with the opening and closing comment tag similar to this:

<!-- <h1>Text</h1> -->

okok thankyou sir for help me