Comment out HTML

Tell us what’s happening:

Your code so far

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

<h2>CatPhotoApp</h2>

<p>Hello Paragraph</p>
-->Sun<!--

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36.

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

you need to comment out h1 and p element .you could do this by wrapping those elements within <!-- -->

-->Sun<!-- is not correct. If you want to comment something in HTML, you have to use <!-- something (everything you want to comment) -->