Learn HTML by Building a Cat Photo App - Step 15

Tell us what’s happening:
Describe your issue in detail here. Its saying to complete the step i need to close my anchor but i did and i cant pass it.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more.</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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 15

Link to the challenge:

this opening tag needs a ‘>’ at the end

if i do that then it says i need an opening tage and when i remove it it says " Your anchor (a ) element should have a closing tag. Closing tags have a / just after the < character." which i believe i have in my code.

First put the angled bracket into place for the opening tag.

Then move the closing tag to the right of the image to enclose it within the anchor element.

This will turn it into a link.

like i turned the photo into a link i clicked on it and it says that it will take me to the correct site it just keeps telling me i have too many anchor openings even though i only have one, <a href=“https://freecatphotoapp.com” and i have that closing anchor i just dont know

Try following my instructions then if you are still stuck then please share your newest code here inside a code block:
```
Code here
```

I have the same problem with you. it always said “Your anchor (a ) element should have an opening tag. Opening tags have this syntax: <elementName> .”
Did you debug this issue?

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