Uncommenting and making something visibale

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

Hello, I am having some trouble trying to make my h1 visible while h2 and p are uncommented, I am brand new to coding and really unsure how to do this

Please and thank you
in advance!
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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Safari/605.1.15

Challenge: Uncomment HTML

Link to the challenge:

This (<!--) marks the beginning of a comment. This (-->) makes the end of the comment. Right now they surround all of the code, making it one big comment. Instead you want the first and last elements to be comments. You need a <!-- and a --> to surround each of those elements. So, instead of one huge comment, it will be two smaller ones.

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