Comment out HTML--I need help

Tell us what’s happening:

Your code so far


<!--Amazing-->
<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>
<!--Amazing-->

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.2 Safari/605.1.15.

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

Good try!

You want to comment out elements instead of putting up comments. Comment out h1 and p elements.

For ex.

<!--
<element></element>
-->

Everything between “<!--” and “-->” gets commented out. Think of it like a “<comment out></comment out>” tag set.