--- id: 5ef9b03c81a63668521804d3 title: Part 27 challengeType: 0 dashedName: part-27 --- # --description-- After the ordered list, add another `figure` element. # --hints-- Your `figure` element should have an opening tag. Opening tags have this syntax: ``. ```js assert(document.querySelectorAll('figure').length === 2); ``` Your `figure` element should have a closing tag. Closing tags have a `/` just after the `<` character. ```js assert(code.match(/<\/figure>/g).length === 2); ``` There should be a `figure` element right above the second `section` element's closing tag. ```js assert($('main > section')[1].lastElementChild.nodeName === 'FIGURE'); ``` # --seed-- ## --seed-contents-- ```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--
```