I need help with HTML adding a photo

Tell us what’s happening:
Okay, so I am working on the introduction of HTML, where it has you to add the cat photo to the website. When I add the code which is <img src= and the link the site says I don’t have the src in the code so I just wondering why it’s doing that.

Your code so far


<h2>CatPhotoApp</h2>
<main>

<img src="https://bit.ly/fcc-relaxing-cat." alt="Kitten rolled over on it back">
<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/80.0.3987.106 Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:
https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/add-images-to-your-website

The test seems to check not only for the src but also for the whole link. Your link is
https://bit.ly/fcc-relaxing-cat. with a . at the end. The link the tests seems to check for does not have the dot – https://bit.ly/fcc-relaxing-cat

I moved your question to its own topic because you were asking a question related to your own code for a challenge and were not answering the OP of the other thread. It is always best to create your own thread for you specific question(s). Also, it is advisable to use the Ask for Help button on the challenge, so it auto-populates with your current code and the challenge url.

Thank you.

If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.