Hint: Your anchor (a ) element should have an opening tag. Opening tags have this syntax: <elementName> .
So where does that go?
**Your code so far**
<html>
<body>
<h1>CatPhotoApp</h1>
<main>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>Click here to view more <a href="https://freecatphotoapp.com">cat photos<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>.</p>
</main>
</body>
</html>
**Your browser information:**
User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36
<p>Click here to view more <a href="https://freecatphotoapp.com">cat photos
<a><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>.</p>
I would restart the lesson to get a fresh start. Do not change/move any of the existing HTML. The only thing you want to do is wrap the existing <img> in a link.
Ok I will try to explain clearly. If you notice you have the words cat photos in between <a href="https://freecatphotoapp.com"> and where your image element begins.
<a href="https://freecatphotoapp.com"> Should be right in front of the <img...>.
Also at the end you have </a>.</p>. Here you don’t need the </p> and the </a> should be at the very end.
<p>Click here to view more <a><a target="_blank" href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>.
Thank you for trying to help but i obviously don’t get it. I’m going to have to stop here before i get frustrated.
Delete all those elements from img src and have it on next line. Let me show how I did it <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">catphotos</a>.</p> <a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back"></a>