How can my p element commented out so that it is not visible on the page?

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

Your code so far


<!das ist der Tite
<h1>Hello World</h1>
-->
<h2>CatPhotoApp</h2>
<!das ist das parag
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sn.</p>
-->

Your browser information:

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

Challenge: Comment out HTML

Link to the challenge:

Comment starts with <!-- and end with --> anything inbetween them will not show on screen. So you need 1 set for h1 and another set for the p. They have put some there already.
You need an ending comment after h1 and a beginning comment before p

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