2020-09-03 19:12:42 -07:00
---
id: 5f33294a6af5e9188dbdb8f3
2021-10-21 10:07:52 -07:00
title: Step 5
2020-09-03 19:12:42 -07:00
challengeType: 0
2021-10-21 10:07:52 -07:00
dashedName: step-5
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
2021-07-21 12:03:09 -07:00
The name of the cafe is `CAMPER CAFE` . Add an `h1` element within your `body` element. Give it the name of the cafe in capitalized letters to make it stand out.
2020-09-03 19:12:42 -07:00
2020-11-27 19:02:05 +01:00
# --hints--
2020-09-03 19:12:42 -07:00
2021-07-21 12:03:09 -07:00
You should have an opening `<h1>` tag.
2020-09-03 19:12:42 -07:00
2020-11-27 19:02:05 +01:00
```js
2021-07-21 12:03:09 -07:00
assert(code.match(/<h1>/i));
```
You should have a closing `</h1>` tag.
```js
assert(code.match(/<\/h1>/i));
```
You should not change your existing `body` element.
```js
assert($('body').length === 1);
```
Your `h1` element should be nested in your `body` element.
```js
assert($('h1')[0].parentElement.tagName === "BODY");
```
Your `h1` element should have the text `CAMPER CAFE` .
2020-09-03 19:12:42 -07:00
2021-07-21 12:03:09 -07:00
```js
assert(code.match(/<h1>CAMPER CAFE<\/h1>/));
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>
2020-11-27 19:02:05 +01:00
--fcc-editable-region--
2020-09-03 19:12:42 -07:00
<body>
</body>
2020-11-27 19:02:05 +01:00
--fcc-editable-region--
2020-09-03 19:12:42 -07:00
<html>
```