Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

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

SM-A042F - Android 13 - Android SDK 33

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

Link to the challenge:

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!

Hello @Mutungi welcome to FreeCodeCamp forum. Please tell the problem you are facing[where you are getting the error], so others can assist you better. Thanks.

1 Like

Help me solve tep 12

Hi there!

You have missing the closing anchor a tag after the text photos within the paragraph element.

No Champ Here you need to describe your Coding Problem.

So that You just learn to describe problem by your own way.

Hope you understand.

I can give you the exact solution, but that is not how it works here.

So let me try to help you in a different way.

Step 12 simply asks you to
In the text of your p element, turn the words cat photos into a link by adding opening and closing anchor (a) tags around these words. Then set the href attribute to https://freecatphotoapp.com

and it has an example shown on challenge page too. So how to do it?

<a href="#"> some text </a>

I hope this will help you. Happy coding.