* chore: rename files * chore: update codebase * chore: proper title case * chore: missed block name Co-authored-by: Shaun Hamilton <shauhami020@gmail.com> Co-authored-by: Shaun Hamilton <shauhami020@gmail.com> Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>
1.0 KiB
1.0 KiB
id, title, challengeType, dashedName
id | title | challengeType | dashedName |
---|---|---|---|
5f3313e74582ad9d063e3a38 | Step 2 | 0 | step-2 |
--description--
Add a head
element within the html
element, so you can add a title
element. The title element's text should be Camper Cafe Menu
.
--hints--
You should have an opening <head>
tag.
assert(code.match(/<head>/i));
You should have a closing </head>
tag.
assert(code.match(/<head>/i));
You should have an opening <title>
tag.
assert(code.match(/<title>/i));
You should have a closing </title>
tag.
assert(code.match(/<\/title>/i));
Your <title>
element should be nested in your <head>
element.
assert(code.match(/<head>\s*<title>.*<\/title>\s*<\/head>/i));
Your <title>
element should have the text Camper Cafe Menu
. You may need to check your spelling.
assert(code.match(/<title>camper\scafe\smenu<\/title>/i));
--seed--
--seed-contents--
<!DOCTYPE html>
<html>
--fcc-editable-region--
--fcc-editable-region--
</html>