Cant seem to understand lesson three

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

Your code so far


<!--<h1>Hello World/h1>-->
<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>
<!--Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.-->

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36

Challenge: Comment out HTML

Link to the challenge:

you have still all three elements visible on the page, instead the p and h1 elements should be commented out so that they are no more visible - you don’t need to create new elements

Hi

you seem to have not understood html comments
well

what you have done is still a valid comment but not what they asked for.

here’s a quick review →

<p></p>
<a></a>
<h1></h1>
Etc.

are elements.

commenting out an element →

<!--  //comment tag
<a></a>  //element
-->  

Hi,

If you are confused with commenting your tags, just cut and copy the <h2> and paste it below the comments. No need to create a new <h1> and <p> tag.

I hope this helps

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