Tell us what’s happening:
Describe your issue in detail here.
Your code so far What is uncomment
<!--<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.
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36.
To “uncomment” means to remove the code that creates a comment. A comment is a piece of text in a program that you don’t want the program to run. You can use them for information, for an explanation of the code for human readers. Or, it is also common to use to prevent certain code from running. For example, if I had an HTML file that had:
<h1>Howdy!</h1>
I could wrap it in comment tags, like:
<!-- <h1>Howdy!</h1> -->
Those comment tags prevent the code from running because it is now a comment.
Sometimes, after you’ve experimented with that code not running, you want to add it back into the code again, so you “uncomment” it by removing those comment tags.
That is what you are supposed to do with this challenge - to uncomment the specified code by removing the relevant comment tags.