75 lines
1.3 KiB
Markdown
75 lines
1.3 KiB
Markdown
![]() |
---
|
||
|
id: 5f356ed6cf6eab5f15f5cfe6
|
||
|
title: Part 21
|
||
|
challengeType: 0
|
||
|
---
|
||
|
|
||
|
## Description
|
||
|
<section id='description'>
|
||
|
|
||
|
The menu takes up the full width of the page. You can use a `div` element to hold all the elements located in the `body` element and then apply some special styling to it. The `div` element is used mainly for design layout purposes unlike the other content elements you have used so far.
|
||
|
|
||
|
Start by adding a `div` element inside the `body` element and then move all the elements located in the `body` element inside it.
|
||
|
|
||
|
</section>
|
||
|
|
||
|
## Tests
|
||
|
<section id='tests'>
|
||
|
|
||
|
```yml
|
||
|
tests:
|
||
|
- text: Test 1
|
||
|
testString: ''
|
||
|
|
||
|
```
|
||
|
|
||
|
</section>
|
||
|
|
||
|
## Challenge Seed
|
||
|
<section id='challengeSeed'>
|
||
|
|
||
|
<div id='html-seed'>
|
||
|
|
||
|
```html
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>Camper Cafe Menu</title>
|
||
|
<link href="styles.css" rel="stylesheet" type="text/css" />
|
||
|
</head>
|
||
|
--fcc-editable-region--
|
||
|
<body>
|
||
|
<header>
|
||
|
<h1>CAMPER CAFE</h1>
|
||
|
<p>Est. 2020</p>
|
||
|
</header>
|
||
|
<main>
|
||
|
<section>
|
||
|
<h2>Coffees</h2>
|
||
|
</section>
|
||
|
</main>
|
||
|
</body>
|
||
|
--fcc-editable-region--
|
||
|
<html>
|
||
|
```
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<div id='css-seed'>
|
||
|
|
||
|
```css
|
||
|
body {
|
||
|
background-color: burlywood;
|
||
|
}
|
||
|
|
||
|
h1, h2, p {
|
||
|
text-align: center;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</section>
|