Learn HTML by Building a Cat Photo App - Step 10

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>See more cat photos in our gallery.</p>
      <ashref='https://freecatphotoapp.com'></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 mobile information:

22120RN86I - Android 13 - Android SDK 33

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

Link to the challenge:

Hello there. You have made a minor typo.

<ashref='https://freecatphotoapp.com'>

should be

<a href='https://freecatphotoapp.com'>

Happy learning. :slight_smile:

1 Like