Emphasazing the word love

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**

<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://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" 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://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg" alt="A slice of lasagna on a plate.">
        <figcaption>Cats (em) love (em) lasagna.</figcaption>
        

      </figure>
    </section>
  </main>
</body>
</html>

Challenge: Step 24

Link to the challenge:

It is an element with a start tag <em> and an end tag </em>


I know the parentheses are a bit confusing.

still didnt get it
have retry it though

1 Like

Can you post your new code please?


Example code:

Here is some <em>text with emphasis</em> as an example.
<figcaption>Cats love lasagna.</figcaption>

          <em>love</em>

this is the code

That should be inside the figcaption element where the word love is.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.