So the problem here is that everytime i try to close the my a element it tells me it dosen't count and i dont know why

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**

<h2>CatPhotoApp</h2>
<main>



<img src="https://www.bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">
<a href="https://www.freecatphotoapp.com">
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
<a href="https://www.freecatphotoapp.com">this has cat photos</a>
</main>
  **Your browser information:**

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

Challenge: Link to External Pages with Anchor Elements

Link to the challenge:

ok the issue is where i try to put the anchor text for my external link i try closing it but the website tells me that is wrong so i need help for this because i dont know what im doing wrong

you have two elements
remove this anclose one and the test will pass…
under your img

Hyy @sindicate, seems like you haven’t closed the anchor element in 2nd line of code (given below). Try again by closing it using </a> at the end.

1 <img src="https://www.bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">
2 <a href="https://www.freecatphotoapp.com"></a> <!--I'm talking here-->
3 <p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
4 <p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
5 <a href="https://www.freecatphotoapp.com">this has cat photos</a>

Have a great day! :rose:

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