--- id: bad87fee1348bd9aedf08816 title: Link to External Pages with Anchor Elements challengeType: 0 videoUrl: '' localeTitle: وصلة إلى الصفحات الخارجية مع عناصر مرساة --- ## Description
يمكنك استخدام عناصر anchor للربط بمحتوى خارج صفحة الويب الخاصة بك. تحتاج عناصر anchor إلى عنوان ويب مقصود يسمى سمة href . هم أيضا بحاجة إلى مرساة النص. في ما يلي مثال: <a href="https://freecodecamp.org">this links to freecodecamp.org</a> ثم يعرض المتصفح النص "روابط إلى freecodecamp.org" كحلقة يمكنك النقر عليها. وسيأخذك هذا الرابط إلى عنوان الويب https://www.freecodecamp.org .
## Instructions
إنشاء a العنصر الذي يربط http://freecatphotoapp.com ولديه "صور القط"، كما لها anchor text .
## Tests
```yml tests: - text: الخاص بك a يجب أن يكون العنصر في anchor text من "صور القط". testString: 'assert((/cat photos/gi).test($("a").text()), "Your a element should have the anchor text of "cat photos".");' - text: 'تحتاج إلى a العنصر الذي يربط http://freecatphotoapp .com' testString: 'assert(/http:\/\/(www\.)?freecatphotoapp\.com/gi.test($("a").attr("href")), "You need an a element that links to http://freecatphotoapp.com");' - text: تأكد من a عنصر يحتوي على علامة إغلاق. testString: 'assert(code.match(/<\/a>/g) && code.match(/<\/a>/g).length === code.match(/a element has a closing tag.");' ```
## Challenge Seed
```html

CatPhotoApp

A cute orange cat lying on its back.

Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.

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