uncomment h1,h2 and p

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

<!--Uncomment your h1,h2 and p element.-->

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36 Edg/99.0.1150.55

Challenge: Uncomment HTML

Link to the challenge:

THIS CAN BE A LITTLE CONFUSING:

Uncommenting is the Removal of a comment.


This is an example of Commented Html:

<!--<h1>Hello World</h1> -->
or
<!-- <header> -->



This is an example of Uncommented Html:

<h1>Hello World</h1> 
or
<header> 
1 Like

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