--- id: bad87fee1348bd9aedf08804 title: Comment out HTML challengeType: 0 videoUrl: '' localeTitle: Comente o HTML --- ## Description
Lembre-se que para começar um comentário, você precisa usar <!-- e para finalizar um comentário, você precisa usar --> Aqui você precisa terminar o comentário antes do seu elemento h2 começar.
## Instructions
Comente seu elemento h1 e seu elemento p , mas não seu elemento h2 .
## Tests
```yml tests: - text: Comente o seu elemento h1 para que ele não fique visível na sua página. testString: 'assert(($("h1").length === 0), "Comment out your h1 element so that it is not visible on your page.");' - text: Deixe seu elemento h2 descomentado para que fique visível na sua página. testString: 'assert(($("h2").length > 0), "Leave your h2 element uncommented so that it is visible on your page.");' - text: Comente o seu elemento p para que ele não fique visível na sua página. testString: 'assert(($("p").length === 0), "Comment out your p element so that it is not visible on your page.");' - text: Certifique-se de fechar cada um dos seus comentários com --> . testString: 'assert(code.match(/[^fc]-->/g).length > 1, "Be sure to close each of your comments with -->.");' - text: Não mude a ordem do h1 h2 ou p no código. 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]==="

") , "Do not change the order of the h1 h2 or p in the code.");' ```

## Challenge Seed
```html ```
## Solution
```js // solution required ```