Files
Nicholas Carrigan (he/him) ca6f5dbbcd chore: rename registration form (#44202)
* chore: rename files

* chore: update codebase

* chore: proper title case
2021-11-19 21:18:01 -06:00

803 B

id, title, challengeType, dashedName
id title challengeType dashedName
60eebd07ea685b0e777b5583 Step 1 0 step-1

--description--

Welcome to the Registration Form 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.

assert(code.match(/<!DOCTYPE/gi));

You should include a space after the DOCTYPE reference.

assert(code.match(/<!DOCTYPE\s+/gi));

You should define the document type to be html.

assert(code.match(/html/gi));

You should close the DOCTYPE declaration with a > after the type.

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

--seed--

--seed-contents--

--fcc-editable-region--

--fcc-editable-region--