Basic HTML and HTML5: Add Images to Your Website error

Tell us what’s happening:
I feel like I did it right but im getting the “Your image should have a src attribute that points to the kitten image.” error

Your code so far



<h2>CatPhotoApp</h2>



<main>

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

<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>

Within the FreeCodeCamp tests and general in web development, you should avoid spaces between an HTML attribute and its value.

Good:
attribute="value"

bad:
attribute = "value"

I eliminated all the spaces but it is still giving me the same error.

http and https are not the same thing. :slight_smile: