Create an a element that links to https://freecatphotoapp.com and has "cat photos" as its anchor text

how do i solve this problem
Create an a element that links to https://freecatphotoapp.com and has “cat photos” as its anchor text.

Your code so far


<h2>CatPhotoApp</h2>
<main>



<img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">

<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>
</main>
<a href="https://freecatphotoapp.com">"cat photo"<a/>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:80.0) Gecko/20100101 Firefox/80.0.

Challenge: Link to External Pages with Anchor Elements

Link to the challenge:

There are just 2 small errors in your code.

  1. Your closing A tag must look like this </a>

  1. The challenge wants you to write "cat photos"</a> instead of "cat photo"</a>

Try this in your editor, it passed successfully for mine.

thanks Guys
just got it right