Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

my

href link is not working when i try nesting it to need it just to read cat photos

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

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

<!-- User Editable Region -->

    <p>
        <a href="https://freecatphotoapp.com">cat photos</a>
      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
      </p>
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 Edg/109.0.1518.140

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Hi and welcome to the forum.

The objective of this step is to make the words:
cat photos

become a clickable link

To do that you have to place an anchor opening tag to the immediate left of the word cat and a closing anchor tag to the immediate right of the word photos.

Please reset and retry.

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