--- id: 587d7788367417b2b2512aa3 title: Make Screen Reader Navigation Easier with the footer Landmark challengeType: 0 videoUrl: '' localeTitle: جعل قارئ شاشة الملاحة أسهل مع تذييل لاندمارك --- ## Description
يشبه عنصر footer المشابه header nav ميزة المعالم المضمنة التي تسمح للأجهزة المساعدة بالانتقال إليها بسرعة. يتم استخدامه بشكل أساسي لاحتواء معلومات حقوق الطبع والنشر أو الروابط إلى المستندات ذات الصلة التي عادة ما تكون في أسفل الصفحة.
## Instructions
تحقق صفحة تدريب Camper Cat تقدمًا جيدًا. غيّر div الذي استخدمه في التفاف معلومات حقوق النشر الخاصة به في أسفل الصفحة إلى عنصر footer .
## Tests
```yml tests: - text: يجب أن يكون footer علامة footer واحد. testString: 'assert($("footer").length == 1, "Your code should have one footer tag.");' - text: يجب ألا تحتوي شفرتك على أي علامات div . testString: 'assert($("div").length == 0, "Your code should not have any div tags.");' - text: يجب أن تحتوي الشفرة على علامة footer للفتح footer . 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 ```