* chore: rename files * chore: update codebase * chore: proper title case * chore: block name Co-authored-by: Shaun Hamilton <shauhami020@gmail.com> Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
48 lines
808 B
Markdown
48 lines
808 B
Markdown
---
|
|
id: 5d822fd413a79914d39e98c9
|
|
title: Step 1
|
|
challengeType: 0
|
|
dashedName: step-1
|
|
---
|
|
|
|
# --description--
|
|
|
|
Welcome to the CSS Variables Skyline project! Start by adding the `!DOCTYPE html` declaration at the top of the document so the browser knows what type of document it's reading.
|
|
|
|
# --hints--
|
|
|
|
Your code should contain the `DOCTYPE` reference.
|
|
|
|
```js
|
|
assert(code.match(/<!DOCTYPE/gi));
|
|
```
|
|
|
|
You should include a space after the `DOCTYPE` reference.
|
|
|
|
```js
|
|
assert(code.match(/<!DOCTYPE\s+/gi));
|
|
```
|
|
|
|
You should define the document type to be `html`.
|
|
|
|
```js
|
|
assert(code.match(/html/gi));
|
|
```
|
|
|
|
You should close the `DOCTYPE` declaration with a `>` after the type.
|
|
|
|
```js
|
|
assert(code.match(/html\s*>/gi));
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```html
|
|
--fcc-editable-region--
|
|
|
|
--fcc-editable-region--
|
|
|
|
```
|