Simple Form

<form method="POST" action="contacts.asp">   <--Assigns an asp page to look for
<TABLE border=0 cellpadding=0 cellspacing=0>   <--Creates Table

<TR><TD align=right><font face=verdana, sans-serif size=1>Company:</TD>   <--Places title before Input Box
<TD align=left><INPUT NAME="company" size="14"></TD></TR>   <--Input Box

<Tr><Td align=left> What is the main focus of your message?<br>   <--Places a title before the checkbox
<INPUT NAME="email" TYPE="checkbox" > E-mail<BR></TR>   <--Creates a checkbox option

<input type="submit" value="Send Message"></td>   <--Creates a submit button
</form>   <--Ends the form action



Complex Form

<form method="POST" action="contacts.asp">   <--Assigns an asp page to look for
<TABLE border=0 cellpadding=0 cellspacing=0>   <--Sets up table

<TR><TD align=right width=100><font face=verdana, sans-serif size=1>*First Name:</TD>   <--Places title before the input box
<TD align=left width=111><input name="first" size="14"><font face=verdana, sans-serif size=1></TD>   <--Creates the input box
<TD align=right width=150><font face=verdana, sans-serif size=1>*Last Name:</TD>
<TD align=left width=111><INPUT NAME="last" size="14"><font face=verdana, sans-serif size=1></TD></TR>
<TR><TD align=right><font face=verdana, sans-serif size=1>Address:</TD>
<TD align=left><INPUT NAME="address" size="14"></TD>
<TD align=right><font face=verdana, sans-serif size=1>City:</TD>
<TD align=left><INPUT NAME="city" size="14"></TD></TR>
<TR><TD align=right><font face=verdana, sans-serif size=1>*E-mail:</TD>
<TD align=left><INPUT NAME="emails" size="14"></TD>
<TD align=right><font face=verdana, sans-serif size=1>Fax:</TD>
<TD align=left><INPUT NAME="faxs" size="14"></TD></TR>

<TR><TD colspan=4 align=center>
<font face=verdana, sans-serif size=1>* = required field</font></TD></TR><tr><td colspan=4><P><br><p><br></td></tr><tr><td valign=top colspan=2><font face=verdana, sans-serif size=2>
How would you like us to respond to your message?<br>   <--Title for question
<INPUT NAME="postalmail" TYPE="checkbox"> Postal Mail<BR>   <--Creates a checkbox
<INPUT NAME="email" TYPE="checkbox" > E-mail<BR>
<INPUT NAME="telephone" TYPE="checkbox" > Telephone<BR>
<INPUT NAME="fax" TYPE="checkbox"> Fax</td>

<td valign=top colspan=2><font face=verdana, sans-serif size=2>
What is the main focus of your message?<br>
<INPUT NAME="signupinfo" TYPE="checkbox"> Sign-up Information<BR>
<INPUT NAME="techsup" TYPE="checkbox" > Technical Support<BR>
<INPUT NAME="rates" TYPE="checkbox" > Rate Information<BR>
<INPUT NAME="other" TYPE="checkbox"> Other</td></tr><tr><td colspan=4><font size=1><font size=1 face=verdana, sans-serif>Please ensure you provide the required information above so that we are able to contact you via your prefered method.</table><p><br>

<center><TABLE><TR><TD colspan=2><font face=verdana, sans-serif size=2>Please send us a comment or request:<br><textarea name="comment" rows=4 cols=50></textarea></TD></TR>   <--Creates a area text box

<TR><td align=left><input type="submit" value="Send Message"></td>   <--Creates a submit button
<td align=right><input type="reset" value="Clear Form"><br></TD>   <--Creates a form reset button

</TR></TABLE>
</form>   <--End Form tag