Learn HTML by Building a Cat Photo App - Step 22

Hi, please could someone show me where I am going wrong? I have searched similar posts on the forum but this code looks right and the image loads. Thanks

After the unordered list, add a new image with an src attribute value set to:
https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg

And its alt attribute value to:
A slice of lasagna on a plate.

Error hint is:
There should be an img element right after the closing </ul> tag.

Your code so far

    <ul>
      <li>cat nip</li>
      <li>laser pointers</li>
      <li>lasagna</li>
    </ul> 
    <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg" alt="A slice of lasagna on a plate.">

Challenge: Learn HTML by Building a Cat Photo App - Step 22

Link to the challenge:

This is correct. Chances are you accidentally changed something else that you weren’t supposed to and that is why the tests are failing. Always post all of the HTML so we can help you find unintended mistakes.

Thanks @bbsmooth , and sorry - I’m new here. Went back through and found a missing </h3>, so all working now.

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