Comment out HTML: order of h1 h2 and p elements

Tell us what’s happening:
Although I seem to have done the necessary bits of uncommenting on h1 element and then on p element, I still can’t satisfy this message “Do not change the order of the h1 h2 or p in the code.”
I tried a few suggestions from the help forum but no results. What am I doing wrong?

Your code so far


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

<h2>CatPhotoApp</h2>

<!--p>Hello Paragraph</p-->

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:56.0) Gecko/20100101 Firefox/56.0.

Link to the challenge:
https://www.freecodecamp.org/challenges/comment-out-html

Hello!

I think I understand what I was doing wrong. Please correct me if this is right. To uncomment, this is what I was originally doing to the h1 and p elements:
<!--h1>Hello World</h1-->

whereas what I should be doing is this:

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

Can someone please confirm if this solution is indeed correct? Many thanks!

Yup. Make that change to both your h1 and p tags.

1 Like

Thank you @ArielLeslie :cowboy_hat_face: