HTML Uncommenting

Tell us what’s happening:I can’t figure out how to uncomment

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 (iPhone; CPU iPhone OS 14_0_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Mobile/15E148 Safari/604.1.

Challenge: Uncomment HTML

Link to the challenge:

If you want to uncomment a comment block it’s very simple. Take away the <!-- before the element starts and then after the end of the element remove the --> For example,

<!--<h1>Hi</h1>-->

becomes

<h1>Hi</h1>

Let me know if this helps!