Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

I’m stuck on question 12. This is what its instructing me to do:

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

Though i’m completely lost on where to add the “cat photos” text and where to add the () into it too.

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 cat photos in our gallery.</p>I think <a href="https://freecatphotoapp.com"

<!-- User Editable Region -->

      <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 browser information:

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

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Hi there.

Please read the following guidance and retry this step by clicking the reset button first then making the words cat photos become clickable.

2 Likes

Hey Buddy , Here this step instruct you to wrap your word cat photos into a link.

And you can do so by put anchor tag around your cat photos.

<p>This world is <a href="link address">full</a> of excitement </p>

Hope You Understand !!

1 Like

Thank you so much!! I finally understand the actual context and meaning of the opening and closing anchor tags.

1 Like

Yes, this helps! Thank youu!