Comment out HTML Failure!

I know this is a really simple early task, but I apparently I managed to get something wrong! The message says, " // running tests

Do not change the order of the h1 h2 or p in the code.

// tests completed"

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

I’m not sure if I follow the error message, but you shouldn’t be adding the “!–” inside of the tags.

To comment out the h1 without commenting out h2, you want to make sure that <!-- comes before <h1> and --> comes after </h1>, but before <h2>

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

That was the problem don’t comment out within the tag. Thank you much.