How do I Uncomment HTML

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 (Linux; Android 7.0; Infinix X559C Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Mobile Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/uncomment-html

You uncomment by removing the comment tags (the <!-- and --> parts)

You have to remove below from your code.

<!--  -->

A shortcut to do this would be to select the code you want to comment or uncomment and then,

  • PC - Ctrl + / (control + forward slash)
  • Mac - Cmd + / (command + forward slash)
1 Like