* 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
159 lines
3.4 KiB
Markdown
159 lines
3.4 KiB
Markdown
---
|
|
id: 5f3ef6e01f288a026d709587
|
|
title: Step 67
|
|
challengeType: 0
|
|
dashedName: step-67
|
|
---
|
|
|
|
# --description--
|
|
|
|
You can use an `hr` element to display a divider between sections of different content.
|
|
|
|
First, add an `hr` element between the first `header` element and the `main` element. Note that `hr` elements are self closing.
|
|
|
|
# --hints--
|
|
|
|
You should add an `hr` element. `hr` elements are self-closing.
|
|
|
|
```js
|
|
assert(code.match(/<hr\s?\/?>/i));
|
|
assert(!code.match(/<\/hr>/i));
|
|
```
|
|
|
|
You should not change your existing `header` element.
|
|
|
|
```js
|
|
assert($('header').length === 1);
|
|
```
|
|
|
|
You should not change your exiting `main` element.
|
|
|
|
```js
|
|
assert($('main').length === 1);
|
|
```
|
|
|
|
Your `hr` element should be between your `header` element and your `main` element.
|
|
|
|
```js
|
|
assert($('hr')[0].previousElementSibling.tagName === 'HEADER');
|
|
assert($('hr')[0].nextElementSibling.tagName === 'MAIN');
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```html
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<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" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<div class="menu">
|
|
--fcc-editable-region--
|
|
<header>
|
|
<h1>CAMPER CAFE</h1>
|
|
<p class="established">Est. 2020</p>
|
|
</header>
|
|
<main>
|
|
<section>
|
|
<h2>Coffee</h2>
|
|
<article class="item">
|
|
<p class="flavor">French Vanilla</p><p class="price">3.00</p>
|
|
</article>
|
|
<article class="item">
|
|
<p class="flavor">Caramel Macchiato</p><p class="price">3.75</p>
|
|
</article>
|
|
<article class="item">
|
|
<p class="flavor">Pumpkin Spice</p><p class="price">3.50</p>
|
|
</article>
|
|
<article class="item">
|
|
<p class="flavor">Hazelnut</p><p class="price">4.00</p>
|
|
</article>
|
|
<article class="item">
|
|
<p class="flavor">Mocha</p><p class="price">4.50</p>
|
|
</article>
|
|
</section>
|
|
<section>
|
|
<h2>Desserts</h2>
|
|
<article class="item">
|
|
<p class="dessert">Donut</p><p class="price">1.50</p>
|
|
</article>
|
|
<article class="item">
|
|
<p class="dessert">Cherry Pie</p><p class="price">2.75</p>
|
|
</article>
|
|
<article class="item">
|
|
<p class="dessert">Cheesecake</p><p class="price">3.00</p>
|
|
</article>
|
|
<article class="item">
|
|
<p class="dessert">Cinnamon Roll</p><p class="price">2.50</p>
|
|
</article>
|
|
</section>
|
|
</main>
|
|
--fcc-editable-region--
|
|
<footer>
|
|
<p>
|
|
<a href="https://www.freecodecamp.org" target="_blank">Visit our website</a>
|
|
</p>
|
|
<p>123 Free Code Camp Drive</p>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
<html>
|
|
```
|
|
|
|
```css
|
|
body {
|
|
background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 40px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 30px;
|
|
}
|
|
|
|
.established {
|
|
font-style: italic;
|
|
}
|
|
|
|
h1, h2, p {
|
|
text-align: center;
|
|
}
|
|
|
|
.menu {
|
|
width: 80%;
|
|
background-color: burlywood;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding: 20px;
|
|
max-width: 500px;
|
|
}
|
|
|
|
h1, h2 {
|
|
font-family: Impact, serif;
|
|
}
|
|
|
|
.item p {
|
|
display: inline-block;
|
|
}
|
|
|
|
.flavor, .dessert {
|
|
text-align: left;
|
|
width: 75%;
|
|
}
|
|
|
|
.price {
|
|
text-align: right;
|
|
width: 25%
|
|
}
|
|
```
|
|
|