Challenge 14 - Not understanding the error

Hello everyone, I’m hoping that I can get a little bit of guidance. Below is my code so far and I keep getting the error message that I can only have one anchor (a)
and to remove any additionals this is confusing to me because I do only have one, It’s my understanding that I do need to close it so I did add the closing anchor but even when I remove it I get the same error. any guidance would be greatly appreciated, Thank you

   **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 target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://freecatphotoapp.com"</a>  
  <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">

   </main>
 </body>
</html>
   **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15

Challenge: Step 14

Link to the challenge:

Hello, you almost have it!

Hint: You closing a tag is in the wrong position. Remember the challenge wants the image surrounded. “Nested” would also fit.
And remember to close the opening a tag after you moved the closing tag.

Thank you so much! I passed it lol

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.