The challenge keeps asking me for an "src" attribute to point to the kitty image but from what I can see i already have it correctly, so please tell me what I'm doing wrong

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>
<main>
<img src="https://bit.ly/fcc-relaxing-cat/yourimage.jpg" alt="Relaxing 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>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

Your url does not exactly match the given one. You don’t need the extra stuff at the end.

What extra stuff? Sorry can you be more specific?

In the example, https://www.freecatphotoapp.com/your-image.jpg is just a fake url.
The whole content should be replaced by https://bit.ly/fcc-relaxing-cat like this:

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

Src attribute should point to a correct img url. ‘https://bit.ly/fcc-relaxing-cat/yourimage.jpg’ is wrong, you can check it on browser.

It worked. @liangxiaowei18 @JeremyLT, thanks for both of your help.