What am I doing wrong? Adding images

I’ve been working on trying to add images to a code, and I keep getting told it’s incorrect. What am I doing wrong?

CatPhotoApp

fcc-relaxing-cat

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.



**Your browser information:**

User Agent is: <code>Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36</code>.

**Challenge:** Add Images to Your Website

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

Can you include the code you tried?

img src=“http://bit.ly/fcc-relaxing-cat” alt=“fcc-relaxing-cat”

Hey @maggieec87,

  • Next time you want to showcase a code, use the ``` backtick so it is easier for everyone to read.
    See this post to find the backtick on your keyboard.
    The “preformatted text” tool in the editor (</>) will also add backticks around text.

  • The challenge asks you to create an image tag with a source of this link:
    https://bit.ly/fcc-relaxing-cat, but your link looks like this:
    http://bit.ly/fcc-relaxing-cat, see a difference?

1 Like

you did not give any space between img and src ! so
add space between img src
like that
<img src=>

1 Like