Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

step 12. html
trying to add “see more” before the anchor element and “in our gallery” after the anchor element I’ve tried a handful of different ways but I’m clearly missing something. I’ve looked this step up on YouTube but freecodecamp on YouTube keeps showing step 12 as something completely different, please help and explain so I can learn and understand what I’m missing

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

      <p>see more 
        <a href="https://freecatphotoapp.com">cat photos</a>
                in our gallery</p>

<!-- 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/605.1.15 (KHTML, like Gecko) Version/17.6 Safari/605.1.15

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Welcome to the forum @coder8217

For this step you are not asked to include the paragraph element.

Also, the first word needs capitalisation.
You need only one single space before the opening anchor tag.
Then only one single space after the closing anchor tag.

Happy coding

2 Likes

Thank you very much! I was way overthinking that one!

2 Likes