This commit adds the pre-existing challenge guide topics in the forum to the forntmatter of their challenge markdown files.
78 lines
2.7 KiB
Markdown
78 lines
2.7 KiB
Markdown
---
|
|
id: bad87fee1348bd9aedf08820
|
|
title: Turn an Image into a Link
|
|
challengeType: 0
|
|
videoUrl: 'https://scrimba.com/p/pVMPUv/cRdBnUr'
|
|
forumTopicId: 18327
|
|
---
|
|
|
|
## Description
|
|
<section id='description'>
|
|
You can make elements into links by nesting them within an <code>a</code> element.
|
|
Nest your image within an <code>a</code> element. Here's an example:
|
|
<code><a href="#"><img src="https://bit.ly/fcc-running-cats" alt="Three kittens running towards the camera."></a></code>
|
|
Remember to use <code>#</code> as your <code>a</code> element's <code>href</code> property in order to turn it into a dead link.
|
|
</section>
|
|
|
|
## Instructions
|
|
<section id='instructions'>
|
|
Place the existing image element within an <code>a</code> (<i>anchor</i>) element.
|
|
Once you've done this, hover over your image with your cursor. Your cursor's normal pointer should become the link clicking pointer. The photo is now a link.
|
|
</section>
|
|
|
|
## Tests
|
|
<section id='tests'>
|
|
|
|
```yml
|
|
tests:
|
|
- text: Nest the existing <code>img</code> element within an <code>a</code> element.
|
|
testString: assert($("a").children("img").length > 0);
|
|
- text: Your <code>a</code> element should be a dead link with a <code>href</code> attribute set to <code>#</code>.
|
|
testString: assert(new RegExp("#").test($("a").children("img").parent().attr("href")));
|
|
- text: Make sure each of your <code>a</code> elements has a closing tag.
|
|
testString: assert(code.match(/<\/a>/g) && code.match(/<a/g) && code.match(/<\/a>/g).length === code.match(/<a/g).length);
|
|
|
|
```
|
|
|
|
</section>
|
|
|
|
## Challenge Seed
|
|
<section id='challengeSeed'>
|
|
|
|
<div id='html-seed'>
|
|
|
|
```html
|
|
<h2>CatPhotoApp</h2>
|
|
<main>
|
|
<p>Click here to view more <a href="#">cat photos</a>.</p>
|
|
|
|
<img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">
|
|
|
|
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
|
|
<p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
|
|
</main>
|
|
```
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
## Solution
|
|
<section id='solution'>
|
|
|
|
```html
|
|
<h2>CatPhotoApp</h2>
|
|
<main>
|
|
<p>Click here to view more <a href="#">cat photos</a>.</p>
|
|
|
|
<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
|
|
|
|
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
|
|
<p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
|
|
</main>
|
|
```
|
|
|
|
</section>
|