Comment out HTML help

Tell us what’s happening:

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/68.0.3440.106 Safari/537.36.

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

You don’t want to modify any existing html elements. You did it so by </h1-->

instead, you just want to wrap around html elements with comments like

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

Do this for p element as well.

You made a small mistake at the beginning and the end of your code.

Your <p> element is p> at the beginning and </p at the end. it normally should start with normal <p> and ends with usual </p>, you shouldn’t change it.
The same thing goes for your h1, it should end with </h1> and not an </h1.

Fix them now and everything will be okay.