--- id: 587d7788367417b2b2512aa3 title: Make Screen Reader Navigation Easier with the footer Landmark challengeType: 0 videoUrl: '' localeTitle: Torne a navegação do leitor de tela mais fácil com o rodapé Landmark --- ## Description
Semelhante ao header e nav , o elemento de footer tem um recurso de referência integrado que permite que dispositivos de assistência naveguem rapidamente até ele. É usado principalmente para conter informações de direitos autorais ou links para documentos relacionados que geralmente ficam na parte inferior de uma página.
## Instructions
A página de treinamento da Camper Cat está fazendo um bom progresso. Altere a div ele usou para envolver suas informações de direitos autorais na parte inferior da página em um elemento de footer .
## Tests
```yml tests: - text: Seu código deve ter uma tag de footer . testString: 'assert($("footer").length == 1, "Your code should have one footer tag.");' - text: Seu código não deve ter tags div . testString: 'assert($("div").length == 0, "Your code should not have any div tags.");' - text: Seu código deve ter uma tag de footer abertura e fechamento. 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 ```