Debug a Pet Adoption Page - Debug a Pet Adoption Page

Tell us what’s happening:

its saying my a element for dogs is correct but the a element for cats is not. Unless I’m crazy it appears they are written the exact same way, I don’t know if I’m wrong or if the questionnaire is.

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</href>

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

Your browser information:

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

Challenge Information:

Debug a Pet Adoption Page - Debug a Pet Adoption Page

Can you double check you closed your HTML elements correctly?

The solution was the closing the element with a instead of href. I had no clue the closing was wrong until doing more assignments further in the module. Having it tell me the closing element for dogs was correct when it was not is what threw me off. Thanks for the reply!