Add Image to website

Tell us what’s happening:
Hi
Please can anyone assist with the ad image to your website.

Your code so far


<h2>CatPhotoApp</h2>
<main>
<a href=https://freecatphotoapp.com''> ''cat photos''</a>'
<img src=''https://bit.ly/fcc-relaxing cat''alt=''A cute orange cat lying on its back.''> 
<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.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

You have a whole bunch of extra single quotes (') all over the place. You also are missing quotes around the url.

You are using Apostrophe( ’ ) two times, instead, you have to use the double quote( " ).
You can still use a single Apostrophe but it is bad practice.
So hence your code should look like this :

<h2>CatPhotoApp</h2>
<main>
<a href="https://freecatphotoapp.com"> cat photos</a>
<img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."> 
<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>

Thank you for your input …