Basic HTML and HTML5: Add Images to Your Website NOT WORKING

Tell us what’s happening:

Its telling me that I need to have a source attribute AND I DO. So why is IT BEING RETARDED?

Your code so far



<img scr="https://bit.ly/fcc-relaxing-cat" alt=" Meow"/> <h2>CatPhotoApp</h2>
<main>
 
  
  <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/67.0.3396.87 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/add-images-to-your-website

1 Like

Never mind I figured out the problem. I feel so stupid.

Programming process

1 Like

You wrote “scr”, expected: “src”.

<img src="https://bit.ly/fcc-relaxing-cat" alt=" Meow"/> 

I have a problem with this too, but my code is correct, I think:
relaxing-cat

CatPhotoApp

Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.

I get “Your image should have a src attribute that points to the kitten image.”

I don’t think you need the back slash after meow

If you surround your code with backticks we can see what you have written. In this way insteead the code is rendered…

There is a </> button you can press before pasting in the code. Press it, paste in the code, and we will see the code

Now I feel less worried about going through that cycle pretty much daily.