Shortcut keys for Accessibility

R

Ray

I'm developing a web site for a blind user (my father)
and want to assign shortcut keys to hyperlinks, so that
he can use ALT + letter to navigate the site. For
example, if he wanted to go to "Add Category" I would
assign ALT + "C" to that hyperlink. I've seen a site
use "Accesskeys" but don't see how to use these in FP2003.
Anybody know how?
 
K

Kathleen Anderson [MVP - FrontPage]

FrontPage 2003 doesn't have a wizard to do this - you have to do it
manually.

1. Switch to Code view.
2. Inside the A HREF tag, type accesskey="", adding a letter between
the quotation marks.

The resulting code will look something like this:
<a href="http://www.wingtiptoys.com/contact_us.htm" accesskey="C">Contact
Us</a>
 
Top