Comment out HTML Problem with order

I don’t understand what they mean by, "Don’t change the order of h1 h2 or p. I have not changed the order. Am I missing something?

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

The challenge asks you to comment out the h1 and p elements. In your code you are only commenting out the content of these elements

1 Like