Debug a Pet Adoption Page - Debug a Pet Adoption Page

Tell us what’s happening:

I am stuck on this one Your a element with the text Visit cats page needs to have an href attribute instead of a src attribute. And that is what I did. I put an href instead of the src and it’s not working. Can you help me

Your code so far

<h1>Welcome XYZ Pet Adoption!</h1>
<p>Consider adopting a pet today. We have cats, dogs, rabbits and more.</p>

<h2>See our cats!</h2>
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/cats.jpg" alt="Five cats looking around a field.

<h2>Adopt a cat!</h2>
<a href="/cats">Visit cats page</a>

<h2>Adopt a dog!</h2>
<a href="/dogs">Visit dogs page</a>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36

Challenge Information:

Debug a Pet Adoption Page - Debug a Pet Adoption Page
https://www.freecodecamp.org/learn/full-stack-developer/lab-debug-pet-adoption-page/lab-debug-pet-adoption-page

Check this line again:

<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/cats.jpg" alt="Five cats looking around a field.

Your img element doesn’t have a closing tag

what should it look like I am really stuck

you need to add the closing angular bracket >

img element is a void element so it doesn’t want a closing tag