Learn HTML by Building a Cat Photo App - Step 8

Tell us what’s happening:

My answer is right, the code was written right but you said my answer is wrong, I don’t know where’s my problem

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Everyone loves cute cats online!</p>

<!-- User Editable Region -->

      <img scr="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg">

<!-- User Editable Region -->

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

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Mobile Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 8

src stands for “source” it should help you remember it

A more in depth answer of this question is when you type the code

<img src"">

Your having the browser produce an image, by a link that has an image and the ending of .png, .jpg, ect
It’s having your browser go to the link, find the image, and produce it onto your screen. Now say if I input the code

<img src"  https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg"

The browser will be unable to find the image in the link due to the space before the link inside of the src attribute

that’s not correct, the issue in the code you posted is the missing equal sign, the spaces don’t matter