No trailing comments tags should be visi ble on the page

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

Your code so far


<!--h1 h2 p-->
<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>
<!h1 h2 p-->.
-->

Your browser information:

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

Challenge: Uncomment HTML

Link to the challenge:

I am having challenge on the topic commenting and uncommenting
the result I get is telling me [no trailing comments tags should be visible on the page. →
please help me to understand it.

commenting is a way to communicate between me and you without the computer intervening

<!-- <h1> tailed comment </h1>-->
<!-- here is example --> 
<!-- ToDo: remove the useless comments -->
<!-- useless comment -->

because the computer doesn’t intervene with the comments. both of us can add whatever we want to the comments.

but what if there are useless comment we can delete it. or we can remove the trailing tags which are those <!-- -->

so giving my example above, if you wanna read my comments. you will find 2 are useless being there, so we untail the useful ones and delete the other.

<h1> untailed comment </h1>
here is example 

here is in detail article about commenting.
HTML Comments: How to Comment Out your HTML Code (freecodecamp.org)

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