--- id: bad87fee1348bd9aedf08804 title: Comment out HTML challengeType: 0 videoUrl: https://scrimba.com/p/pVMPUv/cGyGbca forumTopicId: 16782 localeTitle: Комментарий HTML --- ## Description
Помните, что для того, чтобы начать комментарий, вам нужно использовать <!-- и для завершения комментария, вам нужно использовать --> Здесь вам нужно будет закончить комментарий до того, как начнется ваш элемент h2 .
## Instructions
Вы можете комментровать элементы h1 и p , но не элемент h2 .
## Tests
```yml tests: - text: Comment out your h1 element so that it is not visible on your page. testString: assert(($("h1").length === 0)); - text: Leave your h2 element uncommented so that it is visible on your page. testString: assert(($("h2").length > 0)); - text: Comment out your p element so that it is not visible on your page. testString: assert(($("p").length === 0)); - text: Be sure to close each of your comments with -->. testString: assert(code.match(/[^fc]-->/g).length > 1); - text: Do not change the order of the h1 h2 or p in the code. testString: assert((code.match(/<([a-z0-9]){1,2}>/g)[0]==="

" && code.match(/<([a-z0-9]){1,2}>/g)[1]==="

" && code.match(/<([a-z0-9]){1,2}>/g)[2]==="

") ); ```

## Challenge Seed
```html ```
## Solution
```html

CatPhotoApp

```