Don't get the uncomment part before h2 element

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

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

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15

Challenge: Comment out HTML

Link to the challenge:

Here you’ll need to end the comment before your h2 element begins.

It’s just saying that you need the end comment element (--->) before the h2 element.


So, right now you have an open comment (<!---) at the beginning and a close comment at the end - that means that all the code is commented out. (You can tell in the editor because they are green.)

But they want:

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

So, you want to change this so the middle element (h2) is uncommented. Hint - you’ll end up with two of each, open comments and close comments.

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