Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

I cant seem to properly place the ‘‘see more’’ and “in our gallery” texts.

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>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

reset the step, you placed the words inside an html tag. No, the words go before the opening tag, as in, before the <a> and after the closing tag, as in after the </a>

Welcome to the forum community @Alvin18 !

Good attempt!

Resetting the step will not affect any of the previous steps already completed.

Place the text, See more with a space after it, before the opening < of the anchor tag.
Place the text, in our gallery with a space before it, after the closing > of the closing anchor tag.

It should appear as:
Example:

Text <anchor>link text</anchor> text

Wishing you good progress on your coding journey. :slightly_smiling_face: