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>