Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

Having a problem where I’m trying to do step 12 of the html cat photo app and it’s not excepting see more cat photos in our gallery

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">see more cat photos in our gallery </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 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Mobile Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

remember that an element starts with an opening tag <elementName> and ends with a closing tag </elementName>, you put the new words inside the a, not before and after

Ive tried to put the words before and after the a ,but it doesnt seem to work

show what you have tried please

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

this is invalid html < see more />
also you should add only text, not an html element

So just type see more before the a and then the in our gallery after the end tag and it should work?

Yes
If it doesn’t please show your code again

It still isn’t here’s the code.

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

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

How is the given text capitalized?

Im not sure how it ended up capitalised

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

no, the question is if there are upper case letters in the text given in the instructions

Including an image of the question

please paste your code, don’t do that, we can’t debug from a screenshot

Sorry thougth it would be easier
‘’’
Add the words See more before the anchor element and in our gallery after the anchor element.
‘’’

that is not your code tho, we can read the instructions on the step page

I know ,but you asked if the question contained capitals

because you were not using them, it was to bring your attention to that detail

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').