<!DOCTYPE html>
<html>
<head>
<title>Using the POST method + labels</title>
<style>
.input {background-color:"#f1f1f1"; color:"#000000"; font-family:helvetica}
</style>
</head>
<body bgcolor="lightyellow">
<h1><center>Customer Profile</center></h1>
<h3>Using POST method + labels</h3>
<form method="POST" action="/~sultans/util/form/formTest.cgi">
<fieldset style='width:500px; border-color:gold'>
<legend>Enter Information Below</legend>
<table>
<tr>
<br>
<td><label for="fullname"> <b>Full Name</b> </label>
<td><input type=text name=fullname id=fullname size=40 class=input>
<tr>
<td><label for="addr"> <b>Enter Address... </b> </label>
<td><textarea name=address id=addr rows=5 cols=42 class=input></textarea>
<tr>
<td><b>Enter Gender </b>
<td><input type=radio name=sex id=male value='M'><label for="male"> Male </label>
<input type=radio name=sex id=female value='F'><label for="female"> Female </label>
<tr>
<td><b>Enter Status </b>
<td><input type=checkbox name=status id=sgl value='S'><label for="sgl"> Single </label>
<input type=checkbox name=status id=mrd value='M'><label for="mrd"> Married </label>
<input type=checkbox name=status id=chd value='C'><label for="chd"> With Children </label>
<tr>
<td><label for="slctSingle"><b> Education... </label>
<td><select name=education id=slctSingle class=input style='width:160'>
<option id=none value='0'>--Choose from below--</option>
<option id=HS value='HS'>High School</option>
<option id=BS value='BS/BA'>Bachelor of Science/Art</option>
<option id=MS value='MS/MA'>Master of Science/Art</option>
<option id=PHD value='DR/PHD'>Doctor/PhD</option>
</select>
<tr>
<td><label for="slctMulti"><b> Hobbies... </label>
<td><select name=hobby id=slctMulti size=3 multiple class=input style='width:160'>
<option id=read value='read'>Reading</option>
<option id=tv value='tv'>Television and Movies</option>
<option id=art value='art'>Art and Theatre</option>
<option id=sprt value='sport'>Playing Sports</option>
<option id=trvl value='travel'>Traveling</option>
<option id=shop value='shop'>Shopping</option>
<option id=slp value='sleep'>Relaxing and Sleeping</option>
</select>
<tr height=20>
<tr>
<td><input type=submit value=' Go '>
<td><input type=reset value='Clear'>
<tr>
</table>
</fieldset>
</form>
</body>
</html>