Uncomment H1 and P not working

Did anybody ever get this one to work? I’ve tried a few different ways but its still giving me the same 3 errors but I am quite sure that I’m correct! Any help is appreciated!

Your code so far


<!--<h1>Hello World</h1>-->
<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>-->
<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>

Challenge: Comment out HTML

Link to the challenge:

What errors are you getting?

Why do you have the same elements twice: one commented out and one uncommented?

Your h1 element should be commented out so that it is not visible on the page. Your p element should be commented out so that it is not visible on the page.
You should not change the order of the h1 h2 or p in the code.

I thought I had to leave the elements to uncomment?

Oh my GOSH! I got it now. I don’t know why I thought that I left the elements for each one on the last test. Thanks for asking me that question, that made me change my approach! I’ve passed it now. Thanks again!

Good job figuring it out! Happy coding.

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