curriculum/challenges/english/blocks/workshop-cafe-menu/5f356ed6cf6eab5f15f5cfe6.md
The div element is used mainly for design layout purposes, unlike the other content elements you have used so far. Add a div element inside the body element and then move all the other elements inside the new div.
Inside the opening div tag, add the id attribute with a value of menu.
Your opening <div> tag should have an id attribute set to menu.
assert.strictEqual(document.querySelector('div')?.id, 'menu');
You should have a closing </div> tag.
assert.match(code, /<\/div>/i);
You should not change your existing body element. Make sure you did not delete the closing tag.
assert.lengthOf(document.querySelectorAll('body'), 1);
Your div element should be nested in the body.
assert.equal(document.querySelector('div')?.parentElement?.tagName, 'BODY');
You should move all the other elements inside the new div.
assert.lengthOf(document.querySelector('body > div#menu > main')?.children, 3);
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cafe Menu</title>
<link href="styles.css" rel="stylesheet"/>
</head>
<body>
--fcc-editable-region--
<main>
<h1>CAMPER CAFE</h1>
<p>Est. 2020</p>
<section>
<h2>Coffee</h2>
</section>
</main>
--fcc-editable-region--
</body>
</html>
body {
background-color: burlywood;
}
h1, h2, p {
text-align: center;
}