I'm trying to make my site WCAG 2.0 AA compliant. I need to make all my links accessible by tabbing, however the first link on the page (a logo which leads back to the homepage) is not being picked up when the user presses tab on the keyboard. All the text links on the page are being picked up fine. My mark up is below:
<a href="#" title="homepage">
<img class="logo" src="images/clear.png" alt="Homepage" />
</a>
How I can I fix it?