Learn HTML by Building a Cat Photo App - Step 15

I am not sure whats wrong. I get a message saying “You have either omitted the URL or have a typo.” Please help!

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
    

<!-- User Editable Region -->

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

<!-- User Editable Region -->

    </main>
  </body>
</html>

You left out the first part of the hint you are getting:

“Your anchor (a) element should link to https://freecatphotoapp.com.”

2 Likes

Hi there and welcome to our community!

You need to include https:// in your url.

2 Likes

It is helpful to provide a link a the step you are stuck at.

1 Like