--- id: bad87fee1348bd9aedf08804 title: Comment out HTML localeTitle: Comentar fuera de HTML challengeType: 0 videoUrl: '' --- ## Description
Recuerde que para iniciar un comentario, debe usar <!-- y para finalizar un comentario, debe usar --> Aquí deberá finalizar el comentario antes de que comience su elemento h2 .
## Instructions
Comente su elemento h1 y su elemento p , pero no su elemento h2 .
## Tests
```yml tests: - text: Comenta tu elemento h1 para que no se vea en tu página. testString: 'assert(($("h1").length === 0), "Comment out your h1 element so that it is not visible on your page.");' - text: Deje su elemento h2 comentarios para que sea visible en su página. testString: 'assert(($("h2").length > 0), "Leave your h2 element uncommented so that it is visible on your page.");' - text: Comenta tu elemento p para que no se vea en tu página. testString: 'assert(($("p").length === 0), "Comment out your p element so that it is not visible on your page.");' - text: 'Asegúrese de cerrar cada uno de sus comentarios con --> .' testString: 'assert(code.match(/[^fc]-->/g).length > 1, "Be sure to close each of your comments with -->.");' - text: No cambie el orden de h1 h2 o p en el 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 ```