Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

Cat photos href = "https://freecatphotoapp.com".

Code not passing because href value is “incorrect” but I copied and pasted/ have tried copying it exactly as shown. Any ideas?

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>Cat photos</a> href = "https://freecatphotoapp.com". </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/125.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

The a tag here is called an opening tag.
This tag is the one that holds the href attribute.

Please click reset and try this step again.

You can get more guidance from this post as well

Hello and welcome to the forum @marilashawn !

Here is a link to an article that includes both great guidance and great examples on how to turn both text and images into links.

Wishing you good progress on your coding path! :slightly_smiling_face: