Need help just started

Tell us what’s happening: I am stuck on this I find it not that helpful in the sercummstanc during the wrong ones

Your code so far


<!--need more practice on the start-->
<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>
<!--deffetily need more  help on the start on this -->

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Safari/605.1.15.

Challenge: Comment out HTML

Link to the challenge:

// start

need more practice on the start

Hello World

// end

CatPhotoApp

// start

Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

deffetily need more help on the start on this

// end

Hi @hsalvador265,

You can comment out different sections of HTML by wrapping them in the <!-- --> pattern. For the challenge you linked, you can use them twice to comment out the parts for the challenge

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

You can also wrap just one line

<!-- <h1>Here is another thing</h1> -->

Hope this helps!