Uncommenting HTML stage

Tell us what’s happening:
Describe your issue in detail here.

Your code so far


<!--This is a commented block. 
It doesn't matter how long it is, if it has <h1>HTML elements</h1> in it or if it develops
into a
few lines,
everything between the first less than sign followed by exclamation mark and the last greater than sign is commented out
<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 8.1.0; TECNO CF7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Mobile Safari/537.36

Challenge: Uncomment HTML

Link to the challenge:

Comments in HTML start with <!-- and end with a -->

Everything inside your comment tag will not be visible on the page. Right now, you have your h1, h2 and p element inside the comment tag.

Your task here is to uncomment h1, h2, p elements which you can do by removing the comment tags.

I would recommend resetting the lesson. All you have to do is remove the comment signs (<!-- and -->)

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.