freeCodeCamp/curriculum/challenges/english/01-responsive-web-design/basic-html-cat-photo-app/part-024.md

2.1 KiB

id title challengeType dashedName
5ef9b03c81a63668521804d0 Part 24 0 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: <elementName>.

assert(document.querySelector('em'));

Your emphasis (em) element should have a closing tag. Closing tags have a / just after the < character.

assert(code.match(/<\/em\>/));

You have either deleted the figcaption element or it is missing an opening or closing tag.

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.

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.

assert(
  document
    .querySelector('figcaption')
    .innerText.replace(/\s+/gi, ' ')
    .match(/cats love lasagna\.?/i)
);

--seed--

--seed-contents--

<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>
        <figure>
          <img src="https://bit.ly/fcc-lasagna" alt="A slice of lasagna on a plate.">
--fcc-editable-region--
          <figcaption>Cats love lasagna.</figcaption>
--fcc-editable-region--
        </figure>
      </section>
    </main>
  </body>
</html>