--- id: bad87fee1348bd9aedf08802 title: Uncomment HTML challengeType: 0 videoUrl: https://scrimba.com/p/pVMPUv/cBmG9T7 forumTopicId: 18329 localeTitle: Раскомментирование в HTML --- ## Description
Комментирование - это способ, с помощью которого вы можете оставлять комментарии для других разработчиков в своем коде, не влияя на итоговый вывод, который отображается конечному пользователю. Комментирование также является удобным способом сделать код неактивным, не удаляя его целиком. Комментарии в HTML начинаются с <!-- , и заканчиваются с -->
## Instructions
Раскомментируйте свои элементы h1 , h2 и p .
## Tests
```yml tests: - text: Make your h1 element visible on your page by uncommenting it. testString: assert($("h1").length > 0); - text: Make your h2 element visible on your page by uncommenting it. testString: assert($("h2").length > 0); - text: Make your p element visible on your page by uncommenting it. testString: assert($("p").length > 0); - text: Be sure to delete all trailing comment tags, i.e. -->. testString: assert(!/[^fc]-->/gi.test(code.replace(/ * ```
## Solution
```html

Hello World

CatPhotoApp

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

```