---
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 `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>/si));
```
Your `` element should have the text `Cafe Menu`. You may need to check your spelling.
```js
assert.match(document.querySelector('title')?.innerText, /Cafe Menu/i);
```
# --seed--
## --seed-contents--
```html
--fcc-editable-region--
--fcc-editable-region--
```