* 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
895 B
895 B
id, title, challengeType, dashedName
id | title | challengeType | dashedName |
---|---|---|---|
61fd6343fb42013d99bcd7f3 | Step 2 | 0 | step-2 |
--description--
Within your body
element, nest a section
element within a main
element.
--hints--
The first element inside the body
element should be your main
element.
assert(document.querySelector('body')?.children?.[0]?.localName === 'main');
You should have a section
element within your main
element.
assert(document.querySelector('main')?.children?.[0]?.localName === 'section');
--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>
--fcc-editable-region--
<body>
</body>
--fcc-editable-region--
</html>