--- id: bad87fee1348bd9aedf08816 title: Link to External Pages with Anchor Elements challengeType: 0 videoUrl: 'https://scrimba.com/p/pVMPUv/c8EkncB' forumTopicId: 18226 --- ## Description
You can use a (anchor) elements to link to content outside of your web page. a elements need a destination web address called an href attribute. They also need anchor text. Here's an example: <a href="https://freecodecamp.org">this links to freecodecamp.org</a> Then your browser will display the text "this links to freecodecamp.org" as a link you can click. And that link will take you to the web address https://www.freecodecamp.org.
## Instructions
Create an a element that links to http://freecatphotoapp.com and has "cat photos" as its anchor text.
## Tests
```yml tests: - text: Your a element should have the anchor text of "cat photos". testString: assert((/cat photos/gi).test($("a").text())); - text: You need an a element that links to http://freecatphotoapp.com testString: assert(/http:\/\/(www\.)?freecatphotoapp\.com/gi.test($("a").attr("href"))); - text: Make sure your a element has a closing tag. testString: assert(code.match(/<\/a>/g) && code.match(/<\/a>/g).length === code.match(/ ## 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
```html

CatPhotoApp

A cute orange cat lying on its back. cat photos

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.

```