Getting SRC to Point to image?

Tell us what’s happening:

I’m unable to get the compiler to affirm that my src is pointing at the image, yet it seems to be pointing at the image from what I understand. What am I missing?
I already tried deleting all the spaces and the compiler still wont recognize! Help! TY!

Your code so far


<h2>CatPhotoApp</h2>
<main> 
<img src= "https://www.freecatphotoapp.com/your-image.jpg"  alt="A buisness cat wearing a necktie.">
<img src= "https://bit.ly/fcc-relaxing-cat" alt="a cat being goofy" 
<p>Kitty ipsum dolor sit amet, shed everywhere shed eve rywhere 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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

You’ve got two problems here…

First, you’ve added two images - you’re only supposed to add one.

Secondly, your second image lacks a closing angle bracket.

When I fix those problems, the code passes for me.