--- id: 587d7788367417b2b2512aa3 title: Make Screen Reader Navigation Easier with the footer Landmark challengeType: 0 videoUrl: 'https://scrimba.com/c/crVrDh8' --- ## Description
Similar to header and nav, the footer element has a built-in landmark feature that allows assistive devices to quickly navigate to it. It's primarily used to contain copyright information or links to related documents that usually sit at the bottom of a page.
## Instructions
Camper Cat's training page is making good progress. Change the div he used to wrap his copyright information at the bottom of the page to a footer element.
## Tests
```yml tests: - text: Your code should have one footer tag. testString: assert($('footer').length == 1, 'Your code should have one footer tag.'); - text: Your code should not have any div tags. testString: assert($('div').length == 0, 'Your code should not have any div tags.'); - text: Your code should have an opening and closing footer tag. testString: assert(code.match(/
## Challenge Seed
```html

Training

Stealth & Agility Training

Climb foliage quickly using a minimum spanning tree approach

No training is NP-complete without parkour

Combat Training

Dispatch multiple enemies with multithreaded tactics

Goodbye world: 5 proven ways to knock out an opponent

Weapons Training

Swords: the best tool to literally divide and conquer

Breadth-first or depth-first in multi-weapon training?

© 2018 Camper Cat
```
## Solution
```js // solution required ```