Urgent help needed guys

Tell us what’s happening:
i am having trouble commenting without being visible need help real quick

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>


Challenge: Comment out HTML

Link to the challenge:

<!---->

Each of these is a comment, but it doesn’t contain anything. If you want to comment-out code or text, you need to put it in between <!-- and -->

<!-- I am a comment -->

thanks but i tried putting a comment there but still the same

You need to share your code in order for us to help you find the error in it.


When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

<!--my comment-->
<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
<!--my comment-->
<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>

The instructions say

Comment out your h1 element and your p element

but your h1 and p elements are not inside the comments. You have the phrase my comment inside your comments.

You have two comments. Both comments are “my comment”. None of your code is in comments.