<FORM ACTION="mailto:jcarey@asu.edu"
METHOD="POST"
NAME="frmRating">
<input TYPE="hidden" NAME="txtH"
VALUE="ISM 411 Rating Form">
<CENTER><TABLE WIDTH="80%">
Start
table centered &
<TR>
covering 80 % of the window
<TD>Your Name:
HTML
text labels the textbox
<TD><INPUT TYPE="text" NAME="txtName"
SIZE="30">
</TR>
<TR>
<TD>Email Address:
Another
textbox
<TD><INPUT TYPE="text" NAME="txtEmail"
SIZE="30">
</TR>
<TR>
// HTML label that spans 2 columns
<TD colspan="2">Rate ISM 411 so far...

</TR>
<TR>
// A set of radio buttons with button in left column
<TD ALIGN="right">
<INPUT TYPE="radio"
NAME="optRate" VALUE="1">
<TD>Excellent!
radio's
HTML label in the right column
</TR>
<TR>
// All radio buttons have the same name
<TD ALIGN="right">
<INPUT TYPE="radio" NAME="optRate"
VALUE="2">
<TD>Okay, I guess...
</TR>
<TR>
// All radio buttons have
different values
<TD ALIGN="right">
<INPUT TYPE="radio"
NAME="optRate" VALUE="3">
<TD>Keep your day job!
</TR>
<TR>
<TD>Describe yourself
<TD><SELECT NAME="lstDesc">
Size
not given so
<OPTION>Overachiever
Pull Down Box
<OPTION SELECTED>OK Student
<OPTION>Lazy Slug
</SELECT>
End
Pull Down Box
</TR>
<TR>
<TD colspan="2">Suggestions for improving
the class?
2
column label
</TR>
<TR>
<TD align="right">Shorter Lecture
<INPUT TYPE="checkbox" NAME="chk1">
<TD>More Tutorials
<INPUT TYPE="checkbox" NAME="chk2">
</TR>
// checkboxes have different names
<tr>
<TD align="right">Easy Assignments
<INPUT TYPE="checkbox" NAME="chk3">
<TD>Longer Break
<INPUT TYPE="checkbox" NAME="chk4">
</TR>
// checkboxes have no value
<TR>
<TD colspan="2">Comments:
</TR>
<TR>
<TD colspan="2"><TEXTAREA
NAME="suggest"
ROWS="5" COLS="60">
</TEXTAREA>
Text
Area spans 2 cols & 60 char wide
</TR>
<TR>
<TD ALIGN="center" colspan="2">
<INPUT TYPE="Submit"> <INPUT TYPE="Reset">
<TR>
// Submit
& Reset buttons 
</TABLE></CENTER>
End Table and centering
</FORM>
End
Form (MUST include this end tag!)