--- id: 5ef9b03c81a63668521804d3 title: Part 27 challengeType: 0 --- ## Description
After the ordered list, add another `figure` element.
## Tests
```yml tests: - text: 'Your `figure` element should have an opening tag. Opening tags have this syntax: ``.' testString: assert( document.querySelectorAll('figure').length === 2 ); - text: Your `figure` element should have a closing tag. Closing tags have a `/` just after the `<` character. testString: assert( code.match(/<\/figure>/g).length === 2 ); - text: There should be a `figure` element right above the second `section` element's closing tag. testString: assert( $('main > section')[1].lastElementChild.nodeName === 'FIGURE' ); ```
## Challenge Seed
```html

CatPhotoApp

Cat Photos

Click here to view more cat photos.

A cute orange cat lying on its back.

Cat Lists

Things cats love:

  • cat nip
  • laser pointers
  • lasagna
A slice of lasagna on a plate.
Cats love lasagna.

Top 3 things cats hate:

--fcc-editable-region--
  1. flea treatment
  2. thunder
  3. other cats
--fcc-editable-region--
```