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 -->

<!-- User Editable Region -->

      <p>cat photos <a href="https://www.freecatphotoapp.com">cat photos</a> 
      cat photos.</p>
      <a href="https://freecatphotoapp.com">link to cat pictures</a>

<!-- 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 (iPhone; CPU iPhone OS 16_7_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

The sentence should be ‘See more cat photos in our gallery’ with the text ‘cat photos’ as a link.

1 Like

Hello @Areeba1 !

Here is the example from Step 12, which provides excellent guidance on how to turn the words cat photos into a link.

Example from Step 12

<p>I think <a href="https://www.freecodecamp.org">freeCodeCamp</a> is great.</p>

Happy coding!