Stuck on step but believe my code is correct

Stuck on this step https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/comment-out-html

Asked to comment out h1 and p

My code is:


       <!-- 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 -->

Get message:

// running tests You should not change the order of the
h1
h2
or
p

But I’m not changing the order of these tags.

Stuck.
in the code. // tests completed

Hello~!

It looks like the tests might be failing because <!-- h1> is not the proper syntax. This isn’t a commented out <h1> tag.

For example, a commented out tag would look like:

<!--<tag>Text</tag>-->
2 Likes

Hello there,

I’ve edited your post for readability. 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.

Please 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.

markdown_Forums

Also, for future posts, if you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.