--- id: 587d7790367417b2b2512aaf title: Make Links Navigatable with HTML Access Keys challengeType: 0 videoUrl: '' localeTitle: جعل الروابط نافيجيتابل مع مفاتيح الوصول إلى HTML --- ## Description
تقدم HTML و accesskey السمة لتحديد مفتاح الاختصار لتنشيط أو إحضار التركيز إلى عنصر. هذا يمكن أن يجعل التنقل أكثر كفاءة لمستخدمي لوحة المفاتيح فقط. تسمح HTML5 باستخدام هذه السمة على أي عنصر ، ولكنها مفيدة بشكل خاص عند استخدامها مع تلك التفاعلية. ويشمل ذلك الروابط والأزرار وعناصر التحكم في النموذج. إليك مثالاً: <button accesskey="b">Important Button</button>
## Instructions
يريد Camper Cat أن تحتوي الروابط الموجودة حول عنوان مقالتي المدونة على اختصارات لوحة المفاتيح حتى يتمكن مستخدمو موقعه من الانتقال سريعًا إلى القصة الكاملة. إضافة سمة accesskey إلى كلا الارتباطين وتعيين أول واحد إلى "g" (لـ Garfield) والثاني إلى "c" (لـ Chuck Norris).
## Tests
```yml tests: - text: التعليمات البرمجية يجب إضافة و accesskey السمة إلى a العلامة مع id من "لأول مرة". testString: 'assert($("#first").attr("accesskey"), "Your code should add an accesskey attribute to the a tag with the id of "first".");' - text: التعليمات البرمجية يجب إضافة و accesskey السمة إلى a العلامة مع id من "الثاني". testString: 'assert($("#second").attr("accesskey"), "Your code should add an accesskey attribute to the a tag with the id of "second".");' - text: التعليمات البرمجية يجب تعيين accesskey السمة على a العلامة مع id من "الأولى" إلى "ز". لاحظ أن القضية مهمة. testString: 'assert($("#first").attr("accesskey") == "g", "Your code should set the accesskey attribute on the a tag with the id of "first" to "g". Note that case matters.");' - text: التعليمات البرمجية يجب تعيين accesskey السمة على a العلامة مع id من ل"ج" "ثانية". لاحظ أن القضية مهمة. testString: 'assert($("#second").attr("accesskey") == "c", "Your code should set the accesskey attribute on the a tag with the id of "second" to "c". Note that case matters.");' ```
## Challenge Seed
```html

Deep Thoughts with Master Camper Cat

The Garfield Files: Lasagna as Training Fuel?

The internet is littered with varying opinions on nutritional paradigms, from catnip paleo to hairball cleanses. But let's turn our attention to an often overlooked fitness fuel, and examine the protein-carb-NOM trifecta that is lasagna...

Is Chuck Norris a Cat Person?

Chuck Norris is widely regarded as the premier martial artist on the planet, and it's a complete coincidence anyone who disagrees with this fact mysteriously disappears soon after. But the real question is, is he a cat person?...

```
## Solution
```js // solution required ```