[Back to Forms]
Text field - change type to "password" and input won't display
	<INPUT type="text" name="first_name" maxlength="35" value="first name">

Text box - Remove "wrap=virtual" to prevent text wrapping

	<TEXTAREA name="your_comments" cols="35" rows="5" wrap="virtual">Hi there!</TEXTAREA>
	
Check boxes
	
	<INPUT type="checkbox" name="central_air" value="checkbox">
	<INPUT type="checkbox" name="cable_TV" value="checkbox" checked>
	
Radio buttons 

	<INPUT type="radio" name="male" value="radiobutton">
	<INPUT type="radio" name="female" value="radiobutton" checked>

Menu (pull-down) (same basic code as list menu)

	<SELECT name="select"> 
	<OPTION>Click me! 
	<OPTION> 
	<OPTION>Thank you! </SELECT>
	
Menu List (allows multiple selections) (select menu with two attributes)

	<SELECT name="select2" size="5" multiple> 
	<OPTION>Pick me! 
	<OPTION> 
	<OPTION>No Me! 
	<OPTION> 
	<OPTION>Pick me! 
	<OPTION> 
	<OPTION>No Me! 
	<OPTION> 
	<OPTION>Pick me! 
	<OPTION> 
	<OPTION>No Me! 
	<OPTION> </SELECT>

List - I confess - I don't remember what this is for

	<INPUT type="image" name="imageField" src="choice1.gif" width="50" height="50">
	

Buttons - Don't forget to use plain English on the button values!

	<INPUT type="submit" name="submit" value="Send">
	<INPUT type="reset" name="submit2" value="Clear">