2021-09-28 21:38:44 +01:00
---
id: 6133acc353338c0bba9cb553
2021-10-21 10:07:52 -07:00
title: Step 5
2021-09-28 21:38:44 +01:00
challengeType: 0
2021-10-21 10:07:52 -07:00
dashedName: step-5
2021-09-28 21:38:44 +01:00
---
# --description--
Lastly in the `head` , the `title` element is useful for screen readers to understand the content of a page. Furthermore, it is an important part of _ SEO _ .
Give your page a `title` that is descriptive and concise.
# --hints--
You should add a `title` element to the `head` .
```js
// TODO: Fix once builder puts head in the right place
assert.exists(document.querySelector('body > title'));
```
You should not make the `title` longer than 60 characters.
```js
assert.isAtMost(document.querySelector('body > title')?.textContent?.length, 60);
```
Try being more descriptive with your `title` element. _ Hint: At least 20 characters _
```js
assert.isAtLeast(document.querySelector('body > title')?.textContent?.length, 20);
```
# --seed--
## --seed-contents--
```html
<!DOCTYPE html>
<html lang="en">
--fcc-editable-region--
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="freeCodeCamp Accessibility Quiz practice project" />
<link rel="stylesheet" href="styles.css" />
</head>
--fcc-editable-region--
<body>
</body>
</html>
```
```css
body {
background: #f5f6f7 ;
color: #1b1b32 ;
font-family: Helvetica;
margin: 0;
}
```