* feat: initial infra * feat: create steps * chore: apply sem's review suggestions Co-authored-by: Sem Bauke <46919888+Sembauke@users.noreply.github.com> * feat: write tests * chore: optional?.chaining?. * chore: gikf's suggestion Co-authored-by: Krzysztof <60067306+gikf@users.noreply.github.com> * chore: rename * chore: * Co-authored-by: Shaun Hamilton <shauhami020@gmail.com> * chore: apply shaun's review suggestions Co-authored-by: Shaun Hamilton <shauhami020@gmail.com> * chore: manual review suggestions * chore: ????? Co-authored-by: Shaun Hamilton <shauhami020@gmail.com> Co-authored-by: Sem Bauke <46919888+Sembauke@users.noreply.github.com> Co-authored-by: Krzysztof <60067306+gikf@users.noreply.github.com> Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
992 B
992 B
id, title, challengeType, dashedName
id | title | challengeType | dashedName |
---|---|---|---|
6193dbfec896f21aed7d8114 | Step 3 | 0 | step-3 |
--description--
Within your #sheet
element, create a new div
and give it an id
set to header
.
--hints--
You should create a new div
element within your #sheet
element.
assert(document.querySelectorAll('#sheet > div')?.length === 1);
Your new div
element should have an id
attribute set to header
.
assert(document.querySelector('#sheet > div')?.getAttribute('id') === 'header');
--seed--
--seed-contents--
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AcmeWidgetCorp Balance Sheet</title>
<link rel="stylesheet" type="text/css" href="./styles.css" />
</head>
<body>
--fcc-editable-region--
<div id="sheet">
</div>
--fcc-editable-region--
<footer>Last Updated: December 2021</footer>
</body>
</html>