Forms

Create a form by specifying the method and action
<form method="post" action="script.url">

Input Type Code Applied
Text box
<input type="text" name="mytxt" value="some value" />
Password box
<input type="password" name="pw" value="val" />
Radio buttons
<input type="radio" name="myrad" value="one" /> Uno 
<input type="radio" name="myrad" value="two" checked="checked" /> Dos
Uno
Dos
Checkboxes
<input type="checkbox" name="mycheck" value="r" /> Red
<input type="checkbox" name="mycheck" value="g" checked="checked" /> Green
<input type="checkbox" name="mycheck" value="b" /> Blue
Red
Green
Blue
Larger text areas
<textarea name="label" cols="25" rows="5">
Enter a paragraph here...
</textarea>
Menus
<select name="mymenu" size="6" multiple="multiple"> 
<option value="Bike">A Bicycle</option>
<optgroup label="Automobiles">
<option value="Car">My Car</option>
<option value="Bus" selected="selected">Ride the Bus</option>
</optgroup>
</select>
Reset
<input type="reset" value="Clear" />
Submit
<input type="submit" name="doit" value="Act Now" />