Learn HTML by Building a Cat Photo App - Step 10

I am currently in step 10 on my web designing course were I am asked to add an (anchor) that links to a given link and this is the code I wrote :
I am told that it is wrong because my anchor dose not have a href attribute and to Check that there is a space after the opening tag’s name and/or there are spaces before all attribute names.
I’ve tried all the suggestions and its still wrong , can I get some help?
and thank you

the 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>
 <a herf="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>

I see a typo. You typed “herf” instead of “href”.

1 Like

omg that is so dump :sob:
thank you so much for the help

2 Likes