* fix: remove isHidden key from tool template * fix: removed isHidden key from English challenges * fix: remove isHidden key from Chinese challenges
2.0 KiB
2.0 KiB
id, title, challengeType
| id | title | challengeType |
|---|---|---|
| 5dfb655eeacea3f48c6300b3 | Part 22 | 0 |
Description
The figure element represents self-contained content and will allow you to associate an image with a caption.
Nest the image you just added within a figure element.
Tests
tests:
- text: "Your `figure` element should have an opening tag. Opening tags have the following syntax: `<elementName>`."
testString: assert( document.querySelector('figure') );
- text: Your `figure` element should have a closing tag. Closing tags have a `/` just after the `<` character.
testString: assert( code.match(/<\/figure\>/) );
- text: There should be an `figure` element right above the second `section` element's closing tag.
testString: assert( $('section')[1].lastElementChild.nodeName === 'FIGURE' );
- text: The lasagna `img` element should be nested in the `figure` element.
testString: assert( document.querySelector('figure > img') && document.querySelector('figure > img').getAttribute('src').toLowerCase() === 'https://bit.ly/fcc-lasagna');
Challenge Seed
<html>
<body>
<h1>CatPhotoApp</h1>
<main>
<section>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section>
<section>
<h2>Cat Lists</h2>
<h3>Things cats love:</h3>
<ul>
<li>cat nip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
--fcc-editable-region--
<img src="https://bit.ly/fcc-lasagna" alt="A slice of lasagna on a plate.">
--fcc-editable-region--
</section>
</main>
</body>
</html>