--- id: 587d7788367417b2b2512aa3 title: Make Screen Reader Navigation Easier with the footer Landmark challengeType: 0 videoUrl: '' localeTitle: Facilita la navegación por el lector de pantalla con el pie de página --- ## Description
Al igual que el header y la nav , el elemento de footer tiene una característica de hito incorporada que permite que los dispositivos de asistencia naveguen rápidamente hacia él. Se utiliza principalmente para contener información de derechos de autor o enlaces a documentos relacionados que generalmente se encuentran en la parte inferior de una página.
## Instructions
La página de entrenamiento de Camper Cat está progresando bien. Cambie el div que usó para ajustar su información de copyright en la parte inferior de la página a un elemento de footer .
## Tests
```yml tests: - text: Su código debe tener una etiqueta de footer . testString: 'assert($("footer").length == 1, "Your code should have one footer tag.");' - text: Su código no debe tener ninguna etiqueta div . testString: 'assert($("div").length == 0, "Your code should not have any div tags.");' - text: Su código debe tener una etiqueta de footer apertura y cierre. 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 ```