I should have it right this time

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>
<main>

<a                        href="http://freecodecamp.com">this links to freecodecamp.org</a

<img                            src "http://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its 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 (X11; CrOS armv7l 12739.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.162 Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

Careful there, you have two bugs!

Let’s try to add an image to our website:

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

You inserted an improperly formed a element that was not requested.

Now set the src attribute so that it points to this url:
https://bit.ly/fcc-relaxing-cat

Your url is off. Check it carefully!

Finally, don’t forget to give your img element an alt attribute with applicable text.

You have this.