* chore(curriculum): accessibility-quiz * chore(curriculum): cafe-menu * chore(curriculum): ferris-wheel * chore(curriculum): fix ferris-wheel tests * chore(curriculum): colored-markers * chore(curriculum): photo-gallery * chore(curriculum): magazine * chore(curriculum): penguin * chore(curriculum): city-skyline * chore(curriculum): registration-form * chore(curriculum): picasso-painting * chore(curriculum): balance-sheet * chore(curriculum): piano * chore(curriculum): rothko-painting * fix: title min 15 chars
910 B
910 B
id, title, challengeType, dashedName
id | title | challengeType | dashedName |
---|---|---|---|
61fd66c687e610436494c6f1 | Step 3 | 0 | step-3 |
--description--
Within your section
element, add an h1
element with a nested span
element.
--hints--
Your section
element should have an h1
element.
assert(document.querySelector('section')?.children?.[0]?.localName === 'h1');
Your h1
element should have a span
element.
assert(document.querySelector('h1')?.children?.[0]?.localName === 'span');
--seed--
--seed-contents--
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Balance Sheet</title>
<link rel="stylesheet" type="text/css" href="./styles.css">
</head>
<body>
<main>
--fcc-editable-region--
<section>
</section>
--fcc-editable-region--
</main>
</body>
</html>