Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
i stuck on step 12 please help me
Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

      <p>See more <a href="http://catphotos.com" ></a>in our gallery</p>
      <a href="https://freecatphotoapp.com">link to cat pictures</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/116.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 12

Link to the challenge:

Hello and welcome to the community :smiley:!

You did well, you have a link. Only issue is that for the link to show up on the webpage you need to add the text you want appearing as the link in between your a tags.
Ex:

<a href="">This will appear as a link</a>

Looks like this on the page:

This will appear as a link

Now add the text ‘cat photos’ between both your a tags so that your link shows up on the page.

Welcome!

Here is a great article on how to turn images and text into links. It has good examples.