Solve problem "Uncomment HTML" online - Learn Python 3 - Snakify

Lesson: HTML5 and CSS

Uncomment HTML

Commenting is a way that you can leave comments within your code without affecting the code itself.

Commenting is also a convenient way to make code inactive without having to delete it entirely.

You can start a comment with <!-- and end a comment with -->

Uncomment your h1, h2 and p elements.


 Make your h1 element visible on your page by uncommenting it.
 Make your h2 element visible on your page by uncommenting it.
 Make your p element visible on your page by uncommenting it.
 Be sure to delete all trailing comment tags, i.e. -->.
<!--
<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
<p>Hello Paragraph</p>
-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

The content on this page is licensed under Attribution-ShareAlike 4.0 International. Original authors: freeCodeCamp, the content was modified.