Emily1
1
Tell us what’s happening:
Your code so far
<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
<p>Hello Paragraph</p>
Your browser information:
Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36
.
Link to the challenge:
https://www.freecodecamp.org/challenges/uncomment-html
If you remove the <!--
from the code, you should also remove its matching -->
pair.
Emily1
4
<!--
<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
<p>Hello Paragraph</p>
>--
now my code is like this hahahha~~~
idk how to handle that~~~
You should just remove the first and last lines.
Emily1
6
ahhhhhh i m gonna be crazy!!!
is that weird?
From the above example, how will one uncomment it please assist!
All you have to do to comment something out is add <!— —>
around the text.
To uncomment you do the reverse. Remove <!—
and —>
.
Thanks a lot HBA…Got it right, Kindly assist on how to delete a comment
I already explained in the above comment how to uncomment.
You just remove the same characters you added earlier.
So if you have
<!-- <p>hello</p> -->
you just delete those chars so you end up with
<p>hello</p>
Thank you, am getting it right