2019-11-04 21:01:05 -06:00
|
|
|
---
|
|
|
|
id: 5d822fd413a79914d39e98ca
|
|
|
|
title: Part 2
|
|
|
|
challengeType: 0
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: part-2
|
2019-11-04 21:01:05 -06:00
|
|
|
---
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --description--
|
2019-11-04 21:01:05 -06:00
|
|
|
|
|
|
|
Add opening and closing `html` tags below the doctype so you have a place to start putting some code.
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --hints--
|
2019-11-04 21:01:05 -06:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
test-text
|
2019-11-04 21:01:05 -06:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert(code.match(/<!DOCTYPE\s+html\s*>\s*<html\s*>\s*<\/html\s*>/gi));
|
2019-11-04 21:01:05 -06:00
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --seed--
|
2019-11-04 21:01:05 -06:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
## --seed-contents--
|
2019-11-04 21:01:05 -06:00
|
|
|
|
|
|
|
```html
|
|
|
|
<!DOCTYPE html>
|
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --solutions--
|
2019-11-04 21:01:05 -06:00
|
|
|
|
|
|
|
```html
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
```
|