HTML Attribute for <A ...>
ACCESSKEY =character

Like <INPUT ACCESSKEY="..."> and <BUTTON ACCESSKEY="...">, this attribute of <A ...> sets a shortcut key that "clicks" on the link. Currently Netscape 6 recognizes this attribute and MSIE does not. The value of ACCESSKEY should be a single letter. The shortcut is implemented (in Netscape, other browsers may vary) by holding the ALT key and pressing the letter given in this attribute.

<UL>
<LI><A HREF="/index.html" ACCESSKEY="H">Home</A>
<LI><A HREF="_A.html" ACCESSKEY="A">Anchor</A>
</UL>

gives us:

<BASE ...> >