Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

the link’s text should be cat photos, i have add into the p element, but it doesn’t work

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://freecatphotoapp.com">See more cat photos in our gallery.</a>
      </p>

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

Please delete these two words: cat photos

Then move the opening tag of the anchor element so it is on the immediate left of the word cat (after the word more)

After that, move the closing anchor tag to the immediate right of the word photos.

This will mark the phrase cat photos as a clickable link.