Cat Photo App - Step 21

hello Sir, in step 21:

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

my answer-

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

is there anything wrong?

Hint

The new image does not have an src attribute. Check that there is a space after the opening tag’s name and/or there are spaces before all attribute names.

It is easiest for you to make a new forum topic for each separate step.

Check your spelling. scr and src are different.

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