How do i Uncomment HTML elements

Tell us what’s happening: How do i uncomment h1, h2, p elements

Your code so far


<!--



-->

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/uncomment-html

if you have this:

<!--- <p>hello</p> -->

you can uncomment it by removing the <!-- and the --> like this

<p>hello</p>
1 Like