Files
Nicholas Carrigan (he/him) 2cfa1d3bcd chore: rename css skyline (#44211)
* 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>
2021-11-20 08:34:21 -06:00

878 B

id, title, challengeType, dashedName
id title challengeType dashedName
5d822fd413a79914d39e98ca Step 2 0 step-2

--description--

Add opening and closing html tags below the DOCTYPE so you have a place to start putting some code.

--hints--

Your html element should be below the DOCTYPE declaration.

assert(code.match(/(?<!<html\s*>)<!DOCTYPE\s+html\s*>/gi));

Your html element should have an opening tag.

assert(code.match(/<html\s*>/gi));

Your html element should have a closing tag.

assert(code.match(/<\/html\s*>/));

Your html tags should be in the correct order.

assert(code.match(/<html\s*>\s*<\/html\s*>/));

You should only have one html element.

assert(document.querySelectorAll('html').length === 1);

--seed--

--seed-contents--

<!DOCTYPE html>
--fcc-editable-region--

--fcc-editable-region--