--- id: 587d7788367417b2b2512aa3 title: Make Screen Reader Navigation Easier with the footer Landmark challengeType: 0 videoUrl: 'https://scrimba.com/c/crVrDh8' forumTopicId: 301022 dashedName: make-screen-reader-navigation-easier-with-the-footer-landmark --- # --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. # --hints-- Your code should have one `footer` tag. ```js assert($('footer').length == 1); ``` Your code should not have any `div` tags. ```js assert($('div').length == 0); ``` Your code should have an opening and closing `footer` tag. ```js assert(code.match(/