Many browsers let users navigate through their links, image maps, and form elements with the Tab key. You can determine a custom tab order to emphasize certain elements.
To set the tab order type indextab=n in the
link's tag, where n is the number that sets the tab order. N can be any
number betwen 0 and 32767. For example:
<a href="http://wwwjehanzeb.tk"
tabindex=1>Home</A> <br> <a
href="http://server.scripthost.com/guestbook?jehanzebmanzoor"
tabindex=1>Guest Book</A> <br> <a href="http://www.geocities.com/jehanzeb_manzoor/Yahoo_Links.html"
tabindex=2>Yahoo Links</A>
This will create the following effect:
Home
Guest
Book
Yahoo
Links
Now all the user needs to do is tab to the desired link
and press Enter.
A few notes: Notice that in my code i have 2 links with the same value of 1
(Home and Forums). Elements with the same tab index value are accessed in the
order in which they appear on the HTML page. Any link can be taken out of the
tab sequence by assigning it a negative value, for example tabindex=-1.