Help Request for Building a Cat Photo App in HTML, Step 25

The directions for the step are as follows: After the figure element, add another h3 element with the text: Top 3 things cats hate:

Here is the code that I wrote:

      <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>

    <ul>
      <li>Water</li>
      <li>Flies</li>
      <li>Grass</li>
      </ul>

Top 3 things cats hate:

I am not sure what I have done incorrectly. I have also played around with placing the h3 element before and after the list.

What I see is that you added an unordered list with three list elements after the figure element. This isn’t what the instructions asked you to do:

After the figure element, add another h3 element with the text:

Top 3 things cats hate:

So you need to add an h3 element with that text. This is exactly like what you did above when you added and h3 element with the text “Things cats love:”.

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