Html Probelm Uncomment

Tell us what’s happening:
Describe your issue in detail here.
I don’t know how to complete Uncomment help me

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

Your browser information:

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

Challenge: Uncomment HTML

Link to the challenge:

Welcome to the forum.

You’ve almost got it. You have to just remove the comment tags.

The main problem is that on the paragraph line:

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

you left a closing comment tag (-->) at the end. When I remove that, the tests pass.

You also added this:

<!-- Uncomment -->

That was adding a comment with the text of “Uncomment”. That was not part of the assignment, but it doesn’t appear to make the test fail.

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