Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

I am confused on how I am supposed to have the words “See more” before the anchor element. But, when I put it there with “Cat photos” it says “Cat photos” can be the only thing inside the anchors.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Everyone loves cute cats online!</p>

<!-- User Editable Region -->

      <a href="https://freecatphotoapp.com">cat photos</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/131.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Welcome to the forum @Mikecodes1234

You should have the words See more before the anchor element. Make sure you include the space after the last word.

Before the anchor element, means before the start of the anchor element.

For example:

Some text <a href="">a link</a> then more text

Happy coding