--- id: 5ef9b03c81a63668521804d0 title: Part 24 challengeType: 0 dashedName: part-24 --- # --description-- Emphasize the word `love` in the `figcaption` element by wrapping it in an emphasis (`em`) element. # --hints-- Your emphasis (`em`) element should have an opening tag. Opening tags have this syntax: ``. ```js assert(document.querySelector('em')); ``` Your emphasis (`em`) element should have a closing tag. Closing tags have a `/` just after the `<` character. ```js assert(code.match(/<\/em\>/)); ``` You have either deleted the `figcaption` element or it is missing an opening or closing tag. ```js assert(document.querySelector('figcaption') && code.match(/<\/figcaption\>/)); ``` Your emphasis (`em`) element should surround the text `love`. You have either omitted the text or have a typo. ```js assert( document.querySelector('figcaption > em').innerText.toLowerCase() === 'love' ); ``` The `figcaption`'s text should be `Cats love lasagna`. Check for typos and that the necessary spaces are present around the `em` element's opening and closing tags. ```js assert( document .querySelector('figcaption') .innerText.replace(/\s+/gi, ' ') .match(/cats love lasagna\.?/i) ); ``` # --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. --fcc-editable-region--
Cats love lasagna.
--fcc-editable-region--
```