2018-09-30 23:01:58 +01:00
---
id: bad87fee1348bd9aedf08802
title: Uncomment HTML
challengeType: 0
videoUrl: 'https://scrimba.com/p/pVMPUv/cBmG9T7'
2019-07-31 11:32:23 -07:00
forumTopicId: 18329
2018-09-30 23:01:58 +01:00
---
## Description
<section id='description'>
Commenting is a way that you can leave comments for other developers within your code without affecting the resulting output that is displayed to the end user.
Commenting is also a convenient way to make code inactive without having to delete it entirely.
2019-09-18 20:51:55 +03:00
Comments in HTML start with <code>< ;!--</code> and end with a <code>--> ;</code>
2018-09-30 23:01:58 +01:00
</section>
## Instructions
<section id='instructions'>
Uncomment your <code>h1</code>, <code>h2</code> and <code>p</code> elements.
</section>
## Tests
<section id='tests'>
```yml
2018-10-04 14:37:37 +01:00
tests:
2019-11-30 20:09:48 -08:00
- text: Your <code>h1</code> element should be visible on the page by uncommenting it.
2019-07-24 02:50:51 -07:00
testString: assert($("h1").length > 0);
2019-11-30 20:09:48 -08:00
- text: Your <code>h2</code> element should be visible on the page by uncommenting it.
2019-07-24 02:50:51 -07:00
testString: assert($("h2").length > 0);
2019-11-30 20:09:48 -08:00
- text: Your <code>p</code> element should be visible on the page by uncommenting it.
2019-07-24 02:50:51 -07:00
testString: assert($("p").length > 0);
2019-11-30 20:09:48 -08:00
- text: No trailing comment tags should be visible on the page (i.e. <code>--></code>).
testString: assert(!$('*:contains("-->")')[1]);
2018-09-30 23:01:58 +01:00
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='html-seed'>
```html
<!--
<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
-->
```
</div>
</section>
## Solution
<section id='solution'>
2020-07-13 18:58:50 +02:00
```html
2019-01-24 21:03:03 +00:00
<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
2018-09-30 23:01:58 +01:00
```
2019-07-18 08:24:12 -07:00
2018-09-30 23:01:58 +01:00
</section>