2019-11-04 21:01:05 -06:00
|
|
|
---
|
|
|
|
id: 5d822fd413a79914d39e98cb
|
2021-10-21 10:07:52 -07:00
|
|
|
title: Step 3
|
2019-11-04 21:01:05 -06:00
|
|
|
challengeType: 0
|
2021-10-21 10:07:52 -07:00
|
|
|
dashedName: step-3
|
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
|
|
|
|
2021-07-16 04:46:40 +01:00
|
|
|
Next, add opening and closing `head` and `body` tags within the `html` element.
|
2019-11-04 21:01:05 -06:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --hints--
|
2019-11-04 21:01:05 -06:00
|
|
|
|
2021-07-16 04:46:40 +01:00
|
|
|
You should have an opening `head` tag.
|
2019-11-04 21:01:05 -06:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
2021-07-16 04:46:40 +01:00
|
|
|
assert(code.match(/<head\s*>/i));
|
|
|
|
```
|
|
|
|
|
|
|
|
You should have a closing `head` tag.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert(code.match(/<\/head\s*>/i));
|
|
|
|
```
|
|
|
|
|
|
|
|
You should have an opening `body` tag.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert(code.match(/<body\s*>/i));
|
|
|
|
```
|
|
|
|
|
|
|
|
You should have a closing `body` tag.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert(code.match(/<\/body\s*>/i));
|
|
|
|
```
|
|
|
|
|
|
|
|
The `head` and `body` elements should be siblings.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert(document.querySelector('head').nextElementSibling.localName === 'body');
|
|
|
|
```
|
|
|
|
|
|
|
|
The `head` element should be within the `html` element.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert([...document.querySelector('html').children].some(x => x.localName === 'head'));
|
|
|
|
```
|
|
|
|
|
|
|
|
The `body` element should be within the `html` element.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert([...document.querySelector('html').children].some(x => x.localName === 'body'));
|
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>
|
2021-07-16 04:46:40 +01:00
|
|
|
--fcc-editable-region--
|
2019-11-04 21:01:05 -06:00
|
|
|
<html>
|
|
|
|
|
|
|
|
</html>
|
2021-07-16 04:46:40 +01:00
|
|
|
--fcc-editable-region--
|
2019-11-04 21:01:05 -06:00
|
|
|
|
|
|
|
```
|
2021-07-16 04:46:40 +01:00
|
|
|
|