Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
In this step I did everything correctly and it does not work and it gives me The link’s text should be cat photos. You have either omitted the text or have a typo.

And I don’t understand what should I do
Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

      <p>See more<a href="https://freecatphotoapp.com"> cat photos</a>   in our gallery.</p>
      <a href="https://freecatphotoapp.com">link to cat pictures</a>

<!-- User Editable Region -->

      <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/114.0.0.0 Safari/537.36

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

Link to the challenge:

You have added the anchor tags with the correct syntax but you need to be mindful of where the whitespaces are positioned. You should enclose only the text ‘cat photos’, without any additional spaces. The space before the word ‘cat’ should be outside the opening anchor tag. You also seem to have additional unnecessary spaces after the closing anchor tag.

I’m sorry, can you explain more with a picture attached

I can’t show the solution but here’s an example:

<!-- the text 'my website' is turned into a link -->
<p>Please visit <a href="example.com">my website</a> for awesome content</p>

<!-- example with bad spacing -->
<p>Please visit<a href="example.com"> my website</a>     for awesome content</p>

You should only enclose the text ‘cat photos’ with the tags
…not ’ cat photos’ or 'cat photos '… do you see what I mean?