2020-09-03 19:12:42 -07:00
|
|
|
---
|
|
|
|
id: 5f344fbc22624a2976425065
|
|
|
|
title: Part 10
|
|
|
|
challengeType: 0
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: part-10
|
2020-09-03 19:12:42 -07:00
|
|
|
---
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --description--
|
2020-09-03 19:12:42 -07:00
|
|
|
|
|
|
|
Create an `h2` element in the `section` element and give it the text `Coffees`.
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --hints--
|
2020-09-03 19:12:42 -07:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
Test 1
|
2020-09-03 19:12:42 -07:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
2020-09-03 19:12:42 -07:00
|
|
|
|
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --seed--
|
2020-09-03 19:12:42 -07:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
## --seed-contents--
|
2020-09-03 19:12:42 -07:00
|
|
|
|
|
|
|
```html
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>Camper Cafe Menu</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
<h1>CAMPER CAFE</h1>
|
|
|
|
<p>Est. 2020</p>
|
|
|
|
</header>
|
|
|
|
<main>
|
2020-11-27 19:02:05 +01:00
|
|
|
--fcc-editable-region--
|
2020-09-03 19:12:42 -07:00
|
|
|
<section>
|
|
|
|
</section>
|
2020-11-27 19:02:05 +01:00
|
|
|
--fcc-editable-region--
|
2020-09-03 19:12:42 -07:00
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
<html>
|
|
|
|
```
|
|
|
|
|