<!DOCTYPE html>
<html>
<head>
	<title>Full HTML entry from</title>
</head>

<body bgcolor="lightyellow">
<h1><center>The Ice Cream Shop</center></h1>


<form name="form1" method="GET" action="/~sultans/php/demo/3webDB/form2.php">

<fieldset style='width:580px; height:310px; border-color:gold'>
<legend>Enter Fields Below</legend>

<table bgcolor=lightgray width=570px>
<tr>
	<td><b>Enter First Name
	<td><input type="text" name="firstname" />
<tr>
	<td><b>Last Name
	<td><input type="text" name="lastname" />
<tr>
	<td><b>Enter Address
	<td><textarea name="address" rows="4" cols="45"></textarea>
<tr>
	<td><b>Choose a Brand
	<td><select name="brand">
    		<option value=''>- choose from below -</option>
    		<option>Basking-Robbins</option>
    		<option>Ben & Jerry's</option>
    		<option>Carvel</option>
    		<option>Cold Stone</option>
    		<option>Haagen-Dazs</option>
    		<option>Hershey's</option>
	</select>
<tr>
	<td><b>Ice Cream Flavor
	<td><select name="flavor[]" SIZE="4" multiple style='width:150px'>
    		<option>Vanilla</option>
    		<option>Chocolate</option>
    		<option>Strawberry</option>
    		<option>Butter Pecan</option>
    		<option>Rocky Road</option>
    		<option>French Vanilla</option>
    		<option>Pistachio</option>
	</select>
<tr>
	<td><b>Select Topping
	<td>
	<input type="checkbox" name="topping1" value="hotFudge" />     Hot Fudge
	<input type="checkbox" name="topping2" value="sprinkles" />    Sprinkles
	<input type="checkbox" name="topping3" value="nuts" />         Nuts
	<input type="checkbox" name="topping4" value="whippedCream" /> Whipped Cream
<tr>
	<td><b>Credit Card
	<td>
	<input type="radio" name="creditCard" value="MC" />   Master Card
	<input type="radio" name="creditCard" value="VISA" /> Visa
	<input type="radio" name="creditCard" value="AMEX" /> American Express
	<input type="radio" name="creditCard" value="DISC" /> Discover
<tr>
	<td colspan=2>
	<input type="submit" value="  Place Order  "  />
	<input type="reset"  value="Cancel"           />
</table>
</fieldset>
</form>

</body>
</html>