What is the correct src to the kitten image

Tell us what’s happening:
Describe your issue in detail here.
The src that I am asked to use is this “https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg” Yet it is still giving me this error " Your image should have a src attribute that points to the kitten image."

  **Your code so far**

<h2>CatPhotoApp</h2>
<main>

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

<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36

Challenge: Add Images to Your Website

Link to the challenge:

you just have to copy and paste this url https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg
because sometime typing url in freecodecamp give error because after copy and pasting i am able to pass test

You need to use the correct attribute. scr is not equal to src

Hi @Great0ne1 and welcome to the forum!!!
You have misspelled src in img element, replace scr with src and you’ll pass the test. :wave:

Lol, thank you so much, I really didn’t notice that

1 Like

Thank you
I corrected the spelling

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