Can't pass, help!

Hi everyone! I’m new here :slight_smile:

Have a problem with this challenge:


Here is my code:

<h2>CatPhotoApp</h2>
<main>

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

Have no idea what I’m doing wrong :frowning: Will appreciate help!

Your alt attribute doesn’t have a value.

1 Like

Thank you!
What is value?

It should be like

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

You are missing the = and the text following = . It can be any text not necessarily relaxing cat. That text is the value of alt attribute.

1 Like

Oh, thank you! So stupid :see_no_evil: :see_no_evil: :see_no_evil:
Thank you so much!