Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

I am at step 12, The question saying that add the words SEE MORE before the anchor element and IN OUR GALLERY after the anchor element? I answered the first one which is SEE MORE and I stuck on the second one, somebody help me please?
THIS IS THE ANSWER FOR THE FIRST ONE
See morecat photos<img
AND I TRIED THE SECOND ONE LIKE THIS BUT IT IS WRONG …HELP?
See morecat photos<img

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

     
     See more<a in our gallery 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>

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Welcome to the forum @sihammohamedsaid1

Please place a single space after the word more, to separate the text from the anchor element.

You appear to have placed some of the text inside the anchor opening tag.

Happy coding

1 Like