Alt attribute in in ingredients not working

Tell us what’s happening:
Tests couldn’t recognize the alt attribute in the image element. Not quite sure why it can’t work. Thanks in advance for your guidance.

Your code so far


<h2>CatPhotoApp</h2>
<img src=“http://bit.ly/fcc-relaxing-cat” alt=“A cute orange cute lying on its back. ”>

<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 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1.

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

The only odd thing I can find in your code is that you’re not using the right double-quote characters (). It should be this: "

something’s wrong with your double quote. so try this :
<img src="http://bit.ly/fcc-relaxing-cat" alt="A cute orange cute lying on its back.">

Yes, I found it either. It works! Thank you!

Try your code and it works!
Thanks!

1 Like