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>
<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>
Okay no problem.
Do you see how that line starts? <a>
There is a problem with this because before you close the tag with the > you need all the other attributes the anchor is defining like href in this case.
So let’s put the anchor tag back the way it was before.
When you do that. Show me the code again and I will help you.
<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>
<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>