Learn HTML by Building a Cat Photo App - Step 12

what should i write here

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>
   <p> <a href="https://freecatphotoapp.com">link to cat photos</a></p>

<!-- 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 (Linux; Android 8.1.0; SAMSUNG SM-G610F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/22.0 Chrome/111.0.5563.116 Mobile Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

You are required to turn a text into a link, this text

You do this by wrapping the text in an anchor element. This is the anchor element.

<a href="link">Text goes here</a>

Now turn the text into a link.

1 Like

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