Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

I don’t understand what’s wrong here. It keeps telling me to put see more before the anchor element but its there. I can’t see my mistake. Some help would be appreciated.

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

It needs to be with a capital S

You are also missing spaces: add a space after more, and add a space before in

Hi there!

See s should be capitalized. Also you need to add a space before opening anchor tag and after closing anchor tag. Also the paragraph element was not asked to add.

Hello and welcome to the forum community @kerui.c17!

Good attempt!

There should be a s.
Leave a space before the opening anchor tag.
Leave a space after the closing anchor tag

If you use console.log(p)
this is the current result for the code see morecat photosin our gallery

If the above mentioned changes are made, the code should pass.

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