accessKey.aspx font size:
<html>
<head>
<title>Abakada HTML Demo: accessKey Attribute</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</head>

<body>
<!-- #include virtual="~/shared/top.inc" -->

<div class="header"><h2>Abakada HTML Demo: <span class="hilite">accessKey</span> Attribute</h2></div>
<hr size=1 width=92%>

<div align="center">

<p>The <b>accessKey</b> attribute assigns a single character access key to an element.

<p>Pressing the <b>ALT</b> key plus the access key assigned to an element sets the focus to that element.

<form action="" method="get">
   <table bgcolor="aliceblue" cellpadding=10>
   <col align=right>
   <tr>
      <td><label for="tb1" accessKey="n">First <u>n</u>ame</label></td>
      <td><input type="text" name="" value="first name here" size="20" tabindex="1" id="tb1"></td></tr>
   <tr>
      <td><label for="tb2" accessKey="l"><u>L</u>ast name</label></td>
      <td><input type="text" name="" value="last name here" size="20" tabindex="2" id="tb2"></td></tr>
   <tr>
      <td><label for="tb3" accessKey="m">e<u>m</u>ail address</label></td>
      <td><input type="text" name="" value="email address here" size="20" tabindex="3" id="tb3"></td></tr>
   <tr>
      <td><input type="Radio" name=order id="rb1"> <label for="rb1" accessKey="a"><u>A</u>dd to order</label></td>
      <td><input type="Radio" name=order id="rb2"> <label for="rb2" accessKey="r"><u>R</u>emove from order</label></td></tr>
   </table>
</form>
</div>

<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->

</body>
</html>