Another cool form effect is to have the cursor start in a particular field when the page loads, it uses a JavaScript command in the body tag: This tells the browser to focus on a form named "myform" and a input tag named "start" when the page loads. Where the JavaScript says "myform" is where you will type the name of your form, like so:
Where the JavaScript says "start" is where you will type the name of the form element you want the cursor to be placed in, then add that name to your text input code. This tells the browser which element of the form the onload event should be placed in. You can name the form and input name anything you like, just so you keep the names you use in the script and form are the same.