Adding a comment!

Tell us what’s happening:
Describe your issue in detail here.

Your code so far


<!--Title-->


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

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 9; Hisense U963) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.96 Mobile Safari/537.36

Challenge: Comment out HTML

Link to the challenge:

Hello @lesleymohutsiwa49

Welcome to the forum!

Please describe your issue in the Tell us what’s happening: section

As per the challenge, you will have to comment h1 and p elements and leave the h2 element uncommented.

1 Like

I recommend resetting your code and starting over with this exercise if you are still on it.

In the code you provided, you removed the <h1>Hello World</h1> element entirely.

This exercise it intended to teach us how to comment out certain sections of our page, which is generally useful when debugging or testing.

Your objective with this exercise is to uncomment the <h2>CatPhotoApp</h2> while leaving the rest commented.

You will need to add a --> after the </h1> but before the <h2> and a <!-- after the </h2> but before the <p>

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