Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Help me please idk how to pass this exercise

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>cat photos
      <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:

CPH2239 - Android 11 - Android SDK 30

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

Link to the challenge:

You should click the reset button to restore the code given for this step.

After that follow the guidance here:

Actually, I think you’re not getting the concept. Initially in the 4th step or so. You were to add a comment. This was to be a kind of reminder to what you’re now to do. You’ve also not included your p-element which should read

see more cat photos in our gallery.

In this step we’re trying to make it to be in such a way that someone using the site can link on this statement and be redirected. So to achieve this, we make "cat photos " ‘a link’ by putting it between the opening and closing tags of the anchor element. Hence:

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

Got it?

Thanks for helping I appreciate it. I figured it out.

2 Likes