So its not letting me go through to the next one because if i take my p element away it says dont change the order so asap can you help me
Your h1 element should be commented out so that it is not visible on the page.
Passed
Your h2 element should not be commented out so that it is visible on the page.
Passed
Your p element should be commented out so that it is not visible on the page.
Passed
Each of your comments should be closed with --> .
You should not change the order of the h1h2 or p in the code. Your code so far
Hello World -->
<h2>CatPhotoApp --> /h2>
Kitty ipsum dolor sit amet,shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff. -->
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36.
To add a comment tag, you put <!-- and --> around the text you wish to make into a comment. To remove a comment tag, you need to remove both <!-- and -->.
You shouldn’t remove the <p> and </p> in this challenge.
If you are using the code above, you do not have everything right.
You should modify the starter code
<!--
<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>
-->
and only add or remove comment tags <!-- and -->. You are removing a lot of things that you should not be.