Stuck on this coding problem

**Tell us what’s happening:**Every time I try to hit the run tests button it won’t pass it and i don’t know what the problem is.

Your code so far


<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>
<img src="https://bit.ly/fcc-realaxing-cat"alt="Relaxing cat"/>

Your browser information:

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

Challenge: Add Images to Your Website

Link to the challenge:

What do the failing tests say?

Just looking at your code, I would guess that you were probably supposed to put your image in that big empty space between <main> and the first paragraph.

Hi.

Your image source is wrong. FCC is expecting https://bit.ly/fcc-relaxing-cat but your url spells realaxing instead of relaxing :slight_smile:

you have to write the <img src="photolink"alt=“Relaxing cat”> inside the “main” colum
example

main
img src="photolink"alt=“Relaxing cat”
/main

and don’t forget to press tab befor img src and no need to close img tag

<img src=“https://bit.ly/fcc-realaxing-cat"alt="Relaxing cat”> copy and paste this and its alright

CatPhotoApp

This code still show error but also think that all is correct.

Please make a separate thread for your topic using the Ask for Help button instead of posting in an old thread.