---
id: 5f3313e74582ad9d063e3a38
title: Step 2
challengeType: 0
dashedName: step-2
---
# --description--
Add a `head` element within the `html` element, so you can add a `title` element. The title element's text should be `Camper Cafe Menu`.
# --hints--
You should have an opening `
` tag.
```js
assert(code.match(//i));
```
You should have a closing `` tag.
```js
assert(code.match(//i));
```
You should have an opening `` tag.
```js
assert(code.match(//i));
```
You should have a closing `` tag.
```js
assert(code.match(/<\/title>/i));
```
Your `` element should be nested in your `` element.
```js
assert(code.match(/\s*.*<\/title>\s*<\/head>/i));
```
Your `` element should have the text `Camper Cafe Menu`. You may need to check your spelling.
```js
assert(code.match(/camper\scafe\smenu<\/title>/i));
```
# --seed--
## --seed-contents--
```html
--fcc-editable-region--
--fcc-editable-region--
```