Learn HTML by Building a Cat Photo App - Step 12

am so tired in this step, and i can’t get the correct code. what should i do?

Your code so far

Hi there!
Welcome to the FCC forum. Post a link to the challenge step, also copy and paste your code here.

Or try to use the Help button that appears below the challenge editor, when you attempting the wrong code more than three times.

<p><a href=https://freecatphotoapp.com"></a>cat photos.</p>

You have modified your paragraph text. The text was See more cat photos in the gallery.
And you need to wrap the text cat photos within the opening and closing anchor tags

<p>see more<a href=https://freecatphotoapp.com">cat photos</a>in the gallery</p>

You need to add exactly the same text given in the challenge instructions.
And also you need to add space before anchor opening tag, and after anchor closing tag.

<p>see more<a href=https://freecatphotoapp.com">cat photos</a>in the gallery</p>

Remember, if you created the challenge step code correctly, and your other code have a problem. Then your code will not pass