Learn HTML by Building a Cat Photo App - Step 12

can help me please
It seems like I’ve followed the instructions, but I can’t proceed to the next step


<!-- User Editable Region -->

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <p>See more cat photos in our gallery.
        <a href="https://freecatphotoapp.com">cat photos</a>
      </p>
      <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>


<!-- User Editable Region -->

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

1 Like

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

1 Like

Hello! @smee.fod

The same has been answered here.

If you’re still stuck, We have to turn the existing “cat photos” text into a link and not add a new text called cat photos and make it as a link.

Eg:

<p> Hi I am a para, <a href = "the link" >but I am a link</a> </p>

In this example, the text “but I am a link” will become a link.

Happy Coding! :grinning:

1 Like

Great work! It isn’t the way the exercise wants the link displayed. I would copy your opening ‘a’ tag and paste it after 'See more ’ and before ‘cat photos’. After put a closing ‘a’ tag after ‘cat photos’ and before ‘in our gallery’. Then delete the bottom line as it repeating the link in the sentence above. Good luck!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.