Problem with img

I have input the “img”, but its not taking me to the next page. What else should i do?

Relaxing cat

CatPhotoApp

Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.


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

<h2>CatPhotoApp</h2>
<main>
<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; rv:79.0) Gecko/20100101 Firefox/79.0.

Challenge: Add Images to Your Website

Link to the challenge:

Maybe if you delete the extra / at the end it would work, you have this:

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

Try changing it to:

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

Within the existing main element, insert an img element before the existing p elements.

Now set the src attribute so that it points to this url:

https://bit.ly/fcc-relaxing-cat

You didn’t do either of these things so go back and check your code to what the directions require.