Difficulty with uploading an image

I’ve been stuck at this part for almost 12 hours and at this moment I feel like giving up.

Your code so far

Your browser information:

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

Challenge: Add Images to Your Website

Link to the challenge:

We need to see your code in order to help you with it.

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

Hi there Abbey11. Can you post your code so that we can take a look at your code and help you. We can’t see the problem without the code. :slightly_smiling_face:

Pummarin :smile:

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>
<main>
<img scr=https://bit.ly/fcc-relaxing-catalt="A relaxingcat."

<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 (Linux; Android 7.1.2; LM-X210APM) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.81 Mobile Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

  • You have “scr” instead of “src”.
  • You are missing quotes around your url. When adding an attribute to an html element, you want quotes around the value.
  • You also don’t have a space after the quote so the value of https://bit.ly/fcc-relaxing-catalt="A relaxingcat."
  • Your image tag isn’t closed.

Thank you for the clarification and the help

H. Melbourne