Files
Naomi Carrigan 16e7cdedb1 feat: migrate filenames to IDs (#45146)
* feat: migrate filenames to IDs

* feat: migrate balance sheet file names

* revert: no id name for cert projects

* fix: i swear i know what i'm doing
2022-03-02 09:06:00 -06:00

735 B

id, title, challengeType, dashedName
id title challengeType dashedName
5f33071498eb2472b87ddee4 Step 1 0 step-1

--description--

As you learned in the last few steps of the Cat Photo App, there is a basic structure needed to start building your web page.

Add the <!DOCTYPE html> tag, and an html element.

--hints--

You should have the DOCTYPE declaration.

assert(code.match(/<!DOCTYPE html>/i));

You should have an opening <html> tag.

assert(code.match(/<html>/i));

You should have a closing <html> tag. Remember that closing tags have a / following the opening < bracket.

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

--seed--

--seed-contents--

--fcc-editable-region--

--fcc-editable-region--