How to do this in html?

Its my first time ever doing coding but when I did html on one of the levels
its giving me a error saying:

"You should not change the order of the h1, h2, or p elements in the code. "
Your code so far


<!-- HELLO-->
<!--Hello World-->
<!-- kittens -->
<h2>--CatPhotoApp</h2>
<!-- cats --> 
<!--Kitty ipsum door sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.-->
-->

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36

Challenge: Comment out HTML

Link to the challenge:

I would really appreciate if you can give me some answers

you can see that entire given code block is “commented out”, now you need to separately “comment out” them

when doing so, keeping headings level in sync as in, h1 should come before h2

now look at your code, your ‘h1’ and ‘p’ tag is missing

try to follow along instructions, it should be easy enough :slight_smile:

I would suggest you reset the challenge.

Now put a start <!-- and end --> comment around the first and last element.

Example

<!--
<title>Do not show me</title>
-->

<p>I can be seen and read on the page</p>

<!--
<p>I'm just here for the jelly beans, do not show this...please</p>
-->

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