I keep entering the information as directed but it’s not going through

Tell us what’s happening:
Describe your issue in detail here.

Your code so far


<!--
<h1>Hello World</h1
<h2>CatPhotoApp</h2
<!-->Kitty ipsum dolor 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 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/169.0.385036250 Mobile/15E148 Safari/604.1

Challenge: Comment out HTML

Link to the challenge:

Remember the directions:

Comment out your h1 element and your p element, but not your h2 element.

You code currently has two opening comment tags, and only one closing tag. It is also commenting out the h2 element which is against the directions. A proper comment should have a opening tag, code inside (or text) to comment, and then a closing tag.

<!-- <h4>This is a comment</h4> -->
<h1>This is not a comment</h1>

Apply what you know to make sure only the h1 and p elements are commented, but not the h2. This may require more then 1 comment to be used.

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