Stuck On Step 23 of the HTML Cat Photo Project

So I’m stuck on step 23 of the html of the cat photo project and I wrote my code and even checked on YouTube and it checked out and my code was the exact same so I was wondering if I could get some help on why is my code wrong

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <section>
        <h2>Cat Photos</h2>
        <!-- TODO: Add link to cat photos -->
        <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</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>

<!-- User Editable Region -->

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

<!-- User Editable Region -->

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

You have scr instead of src

Also step 23 says
“Nest the image you just added within a figure element.”

I dont see where you have done that unless you are on a different step. Please post the link to the step

Omg Ty I made a mistake while typing and didn’t notice

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