<html>
<head>
<title>Abakada HTML Demo: accessKey Attribute</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</head>
<body>
<div class="header"><h2>Abakada HTML Demo: <b>accessKey</b> Attribute</h2></div>
<hr size=1 width=92%>
<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">
<br>
<table bgcolor="aliceblue" cellpadding=5 cellspacing=10 style="border:2px inset; border-radius: 12px">
<tr>
<td align="right"><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 align="right"><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 align="right"><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 align="center">
<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>
<br>
</form>
</center>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>