Im trying to learn how to uncomment and i dont know what im doing wrong but i just cant figure it out any hints would be awesome

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

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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 Edg/91.0.864.70

Challenge: Uncomment HTML

Link to the challenge:

From the instructions:

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

So that means any code between the opening <!-- and the ending --> will be a comment and will not show up on the page.

Right now all the HTML code in the editor window is commented out. How would you change it so that the h1, h2, and p elements are not commented out. Since those are the only elements on the page it is basically saying to uncomment everything.

1 Like

or,
select line(s) which you want to uncomment or comment just press the shortcut ctrl + /

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