Im confused and frustrated

Tell us what’s happening:
im clueless and need help

Your code so far


<h2>CatPhotoApp</h2>
<main>

<image src= https://bit.ly/fcc-relaxing-cat>
<alt = relaxedcat.>
  
<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>
<alt=

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 13421.99.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

What problems are you having?
Here are a few things that jump out at me:

  • The name of your image element is wrong.
  • You don’t have property values in quotes.
    • You want <elementName propertyName="property value">
  • You have the alt property in its own tag instead of in the image tag.
  • You have a random <alt= at the end of your code.

so how would i do it then

Well, you need to fix the errors that I listed. Then you can share your new code and tell us what new problems you are having.

idk i just redid everything the same way and it went through

I am glad you were able to pass the challenge but do you understand why the code didn’t work in the first place.

Should be <img>

Alt attributes should be inside the img tag
<img alt="text">

Attributes need to have quotes.
src= "https://bit.ly/fcc-relaxing-cat"

Does that make sense?