Need help with this question

Tell us what’s happening:

Can any one help me with this question l have tried doing it in the video like the way it is but l just can’t get to see where the problem is

Your code so far


<img src=''https://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 couc sleep in the sink fluffy fur catnip scratched.</p>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 13_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Mobile/15E148 Safari/604.1.

Challenge: Add Images to Your Website

Link to the challenge:

it seems you are using two single quotes in please of one double quote

you can use " double quotes, ' single quotes, but you can’t use '' two single quotes near each other.
So you can write attribute="value" or attribute='value' but not attribute=''value''