Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
I am unable to understand what im doing wrong here? Some help with direction to some resourcess would be helpful!

Your code so far

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

<!-- User Editable Region -->

      <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>

<!-- 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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36

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

Link to the challenge:

take a look at the preview pane for a second.
Do all the words have one space in between?

I belive so but since this is my first time coding im unsure.

Based on your code you have a space problem. So pls take a look at the preview pane again. Look for two words that are not separated by a single space between. This is the mistake.

I just noticed that you are using an old version of this code.
Please click the reset button (it looks like an arrow turning) and this will reset the step. After that click CTRL-F5 at the same time to force the browser to refresh the page.

The code should change and look like this:
<p>See more cat photos in our gallery.</p>

Then add the anchor tag around the words cat photos.
Do not change the spacing in -any- way. (one space between each word, no more, no less)