Tell us what’s happening:
Your code so far
<!--
<h1></h1>-->
<h2>CatPhotoApp</h2>
<p></p>-->
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 OPR/65.0.3467.78
.
Challenge: Comment out HTML
Link to the challenge:
https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/comment-out-html
Hey @yeahmie 
The purpose of commenting is, in general, the one to leave your code “only for developers or for yourself”, basically in case of HTML the browser is ignoring everything is wrapped into <!-- -->
.
So in order to pass this test you don’t have to delete your code but, instead, to wrap the h1 and the p elements into <!-- -->
. Like this:
<!-- <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> -->
Please let me know if it does not make sense for you.
Happy Coding 
Thanks so much @lucatardi Worked out and now facing the next stage of my HTML5…How do i create my Main element for the 2 nest elements