2021-12-03 14:20:34 -08:00
---
2022-02-18 10:15:16 -08:00
id: 61fd6ab779390f49148773bb
2021-12-03 14:20:34 -08:00
title: Step 5
challengeType: 0
dashedName: step-5
---
# --description--
2022-02-18 10:15:16 -08:00
Below your `h1` element, create a `div` element. Give it an `id` attribute set to `years` . You want this particular element to be hidden from screen readers, so give it the `aria-hidden` attribute set to `true` .
2021-12-03 14:20:34 -08:00
# --hints--
2022-02-18 10:15:16 -08:00
You should create a new `div` element after your `h1` element.
2021-12-03 14:20:34 -08:00
```js
2022-02-18 10:15:16 -08:00
assert(document.querySelector('h1')?.nextElementSibling?.localName === 'div');
2021-12-03 14:20:34 -08:00
```
2022-02-18 10:15:16 -08:00
Your new `div` element should have an `id` attribute set to `years` .
2021-12-03 14:20:34 -08:00
```js
2022-02-18 10:15:16 -08:00
assert(document.querySelector('div')?.getAttribute('id') === 'years');
2021-12-03 14:20:34 -08:00
```
2022-02-18 10:15:16 -08:00
Your new `div` element should have the `aria-hidden` attribute set to `true` .
2021-12-03 14:20:34 -08:00
```js
2022-02-18 10:15:16 -08:00
assert(document.querySelector('div')?.getAttribute('aria-hidden') === 'true');
2021-12-03 14:20:34 -08:00
```
# --seed--
## --seed-contents--
```html
<!DOCTYPE html>
<html>
<head>
2022-02-18 10:15:16 -08:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2021-12-03 14:20:34 -08:00
<title>AcmeWidgetCorp Balance Sheet</title>
2022-02-18 10:15:16 -08:00
<link rel="stylesheet" type="text/css" href="./styles.css">
2021-12-03 14:20:34 -08:00
</head>
<body>
2022-02-18 10:15:16 -08:00
<main>
<section>
<h1>
<span class="flex">
<span>AcmeWidgetCorp</span>
<span>Balance Sheet</span>
</span>
</h1>
2021-12-03 14:20:34 -08:00
--fcc-editable-region--
2022-02-18 10:15:16 -08:00
2021-12-03 14:20:34 -08:00
--fcc-editable-region--
2022-02-18 10:15:16 -08:00
</section>
</main>
2021-12-03 14:20:34 -08:00
</body>
</html>
```
```css
```