Comment out HTMLs

how can i comment elements without changing the order?

Your code so far


<!--h1--><!--p-->
<!--h1Hello World-->

<h2>CatPhotoApp</h2>

<!--pKitty 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 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36.

Challenge: Comment out HTML

Link to the challenge:

The way you did it was in fact modifying the other tags, instead of just commenting them out. Consider that you can have multiple lines, tags, etc. and do i.e.:

<!--
<h1>Text</h1>
<h2>Other text</h2>
-->