HTML Forms |
<FORM METHOD="POST" ACTION="http://mysite.tripod.com/cgi-bin/blogwrite.pl". > Computer Experience:<BR> <INPUT TYPE="checkbox" NAME="choice" VALUE="Less than 1" >Less than 1 year.<BR> <INPUT TYPE="checkbox" NAME="choice" VALUE="1 to 5">1-5 years.<BR> <INPUT TYPE="checkbox" NAME="choice" VALUE="More than 5">More than 5 years. <BR><INPUT TYPE="reset" VALUE="Clear Form"> <INPUT TYPE="submit" VALUE="Submit"> </FORM> |
Checkbox
|
<FORM METHOD="POST" ACTION="http://mysite.tripod.com/cgi-bin/blogwrite.pl"> Name?<INPUT TYPE="text" NAME="name" VALUE="" SIZE="20" MAXLENGTH="150"> <BR> <BR> Password? <INPUT TYPE="password" NAME="password" VALUE="" SIZE="25" MAXLENGTH="150"> <INPUT TYPE="reset" VALUE="Clear Form"> <INPUT TYPE="submit" VALUE="Submit"> </FORM> |
Password
|
<FORM METHOD="POST" ACTION="http://mysite.tripod.com/cgi-bin/blogwrite.pl"> Computer Experience:<BR> <INPUT TYPE="radio" NAME="choice" VALUE="Less than 1">Less than 1 year.<BR> <INPUT TYPE="radio" NAME="choice" VALUE="1 to 5">1-5 years.<BR> <INPUT TYPE="radio" NAME="choice" VALUE="More than 5">More than 5 years. <BR><INPUT TYPE="reset" VALUE="Clear"> <INPUT TYPE="submit" VALUE="submit"> </FORM> |
Radio Buttons
|
<FORM METHOD="POST" ACTION="http://mysite.tripod.com/cgi-bin/blogwrite.pl"> Name? <INPUT TYPE="text" NAME="name" VALUE="" SIZE="20" MAXLENGTH="150"> Organization? <INPUT TYPE="text" NAME="organization" VALUE="" SIZE="25" MAXLENGTH="150"> Email Address? <INPUT TYPE="text" NAME="email" VALUE="" SIZE="25" MAXLENGth="150"> <INPUT TYPE="reset"> <INPUT TYPE="submit" NAME="submit" VALUE="Submit"> </FORM> |
Text Boxes
|
<FORM METHOD="POST" ACTION="http://mysite.tripod.com/cgi-bin/blogwrite.pl"> Computer Experience: <BR> <SELECT NAME="choice" > <OPTION VALUE="Less than 1 year.">Less than 1 year. <OPTION VALUE="1-5 years.">1-5 years. <OPTION VALUE="More than 5 years.">More than 5 years. </SELECT> <BR> <INPUT TYPE="submit" NAME="submit" VALUE="Submit"> </FORM> |
Select
|
<FORM METHOD="POST" ACTION="http://mysite.tripod.com/cgi-bin/blogwrite.pl"> Tell us about your computer experience:<BR> <TEXTAREA NAME="choice" ROWS=5 COLS=25 WRAP=PHYSICAL> </TEXTAREA> <BR> <INPUT TYPE="reset"> <INPUT TYPE="submit" NAME="submit" VALUE="Submit"> </FORM> |
Textarea
Links Reference Page |