Challenge: Turn an Image into a Link

Tell us what’s happening: i opened an anchor around the img:
(<a href="#") and closed it with the istructions say: Each of your a elements should have a closing tag., but i already have a closing tab

code so far


<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."><a/>
<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>
**Challenge:** Turn an Image into a Link

You have a typo. The ending tag is written wrong: ><a/>

Suppose to be: </a>

thanks! …