<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="eng"> <head> <title>DevGuru XHTML accesskey attribute example</title> <script type="text/javascript" src="/scripts/dgscripts.js"></script> <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> </script> <script type="text/javascript"> _uacct = "UA-341596-3"; urchinTracker(); </script></head> <body> <form> Simultaneously press the <b>alt</b> and <b>1</b> buttons, and the cursor goes to the First Name input box. <br /> Simultaneously press the <b>alt</b> and <b>7</b> buttons, and the cursor goes to the Last Name input box. <br /> Simultaneously press the <b>alt</b> and <b>r</b> buttons, and the cursor goes to the Maiden Name input box. <br /> <hr /> <br /> First Name: (accesskey = 1) <br /> <input type="text" name="firstlname" size="30" accesskey="1" /> <br /> Last Name: (accesskey = 7) </br> <input type="text" name="lastname" size="30" accesskey="7" /> <br /> Maiden Name: (accesskey = r) <br /> <input type="text" name="maidenname" size="30" accesskey="r" /> </form> </body> </html>