Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
Hi Team. I can’t go beyond step 12. Please help.

Your code so far
Learn HTML by Building a Cat Photo App: Step 12 | freeCodeCamp.org

<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<a href="https://freecatphotoapp.com">cat photos</a></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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.188

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

Link to the challenge:

You didn’t put the anchor tag around the text cat photos here.

1 Like

Instead of providing a link to cat photos after your paragraph you want to turn the actual words ‘cat photos’ which are part of the paragraph into a link. Erase the extra link after the paragraph and place the a tags around the text ‘cat photos’ in the actual paragraph.

1 Like

@anon86258595 It worked. Thanks.

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