Basic HTML and HTML5 - Uncomment HTML

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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42

Challenge: Basic HTML and HTML5 - Uncomment HTML

Link to the challenge:

Hi, welcome to the forum.

Let me give you an example of how to add a comment and then how to remove it.

First let us add a comment to the code below:

<p>This is a sentence.</p>
<h3>This is a medium header</h3>
<!— this is a sample comment —>

Now let us try to add a comment around the first two lines only:

<!—
<p>This is a sentence.</p>
<h3>This is a medium header</h3> —>
<!— this is a sample comment —>

Now let remove the comment again from the first two lines:

<p>This is a sentence.</p>
<h3>This is a medium header</h3>
<!— this is a sample comment —>

I hope by examine the above examples you can try this challenge again.

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