How to hide comment

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 8.1.0; SAMSUNG SM-P585 Build/M1AJQ) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/7.2 Chrome/59.0.3071.125 Safari/537.36.

Challenge: Uncomment HTML

Link to the challenge:

1 Like

Comments are usually some extra characters you put in the beginning of a line or lines of code so the machine that reads your code (compiler) won’t start read them.

There are two different types of commenting, single line and multiple line.

In case of HTML you mostly comment multiple lines together. The extra and special character for that is <!-- which denotes the start of multi line comment and then --> which denotes the end of comment section.

Now you should know how to remove your comment, i.e uncomment your code.

This is not about hiding, it’s about uncomment - uncomment - uncomment - uncomment, just try to understand comment/uncomment