Src attribute unchecked

It unchecks the src attribute. what is wrong with this?


<h2>CatPhotoApp</h2>
<main>
<img src="https://image.shutterstock.com/image-photo/british-shorthair-kitten-silver-color-600w-1510641710.jpg" alt="greeting 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 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

Hey @Dowlet!

You are using the wrong url for this challenge. It should be this.

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

Thank’s it works but I can’t understand what’s the matter if it is not that url but the result was true

For all of the challenges, FCC has created tests that must be passed in order to complete the challenge. So while your use of the src attribute was correct for another url it will still fail the tests that were set up by FCC.

For this challenge you have to use that specific url address or else the test will not pass.

Hope that helps!