Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
I’m very new to coding and am having fun learning these new things but this has me stumped as to whats going on, It told me to make a link in the words cat photos, I completed this and it all looks fine to me but it still says the same thing.

The link’s text should be cat photos . You have either omitted the text or have a typo.

I cant tell what the problem is because to me it looks like I did what it told me to do. If anyone could assist that would be very helpful, thanks!

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhoto App</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>
      Click here to view more<a href="https://freecatphotoapp.com"> cat photos</a>
      </p>
      <a href="https://freecatphotoapp.com">link to cat pictures</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 (X11; CrOS x86_64 14816.131.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

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

Link to the challenge:

Welcome to our community!
The full sentence is: “Click here to view more cat photos.” The dot is not hyperlinked and is missing in your code. Put it between the closing ‘a’ and ‘p’ tags.

I just solved the issue by removing a hyperlinked space between more and cat that I did not see. Thank you for the reply though, it was faster than I expected.