I have problem with Uncomment HTML

Tell us what’s happening:

Your code so far

<!--
<h1>Hello World</h1>

<h2>CatPhotoApp</h2>

<p>Hello Paragraph</p>
-->

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.85 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/uncomment-html

Commented code is always between <!-- and -->
For example:

<!-- <h1>Hello World</h1> -->
<h2>CatPhotoApp</h2>
<p>Hello Paragraph</p>

The first line is commented, while the second and third line are Uncommented.

Also, you can use Comment tags to write your own tips. Whatever it is written between those 2 tags is not gonna be executed by the Browser.
Example:

<!-- This is the first text shown with h1 tags, and it's not gonna be executed -->
<h1>Hello World</h1>
1 Like