Problem with Commenting

Tell us what’s happening:

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 (Linux; Android 9; SM-A207F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.111 Mobile Safari/537.36.

Challenge: Uncomment HTML

Link to the challenge:

Hi there, you should uncomment h1, h2, and the paragraph.
you see this is the commenting syntax in HTML

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

to uncomment things, follow this:

<h1>Hello World</h1>

simply remove these:

<!--   -->

Thank you so much, looking at it now I saw it was a tricky test
I didn’t see that it was already a comment and all I had to do was remove the comment tag
Thanks again.