I need to make a Web page form to input the name (First, Last, MI), address (full), home Phone, work Phone, department, position and base salary. This is what I have come up with:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html xmlns= "http//www.w3.org/1999/xhtml" xml:lang:="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Production Department</title>
<style type="text/css" title="text/css" media="all">
label {font-weight: bold;
color:300ACC;}
</style>
</head>
<body>
<!-- Script 1.1- form.html -->
<form action = "handle_form.php"
method= "post">
<fieldset><legend>Production Department:
Enter correct information in the form below:</legend>
<p><label>First name: <input type= "text" name="name" size="20"
maxlength="15"/> Last name: <input type= "text" name="name" size="20"
maxlength="25"/> Middle Initial(s): <input type= "text" name="name" size="7"
maxlength="5"/></label></p>
<p><label>Home address: <input type= "text" name="name" size="40"
maxlength="70"/></label></p>
<p><label>Mailing address (if different from home address):
<input type= "text" name="name" size="40"
maxlength="70"/></label></p>
<p><label>City: <input type= "text" name="name" size="40"
maxlength="60"/> State:<input type= "text" name="name" size="25"
maxlength="40"/> </label></p>
<p><label>Zip code: <input type= "text" name="name" size="15"
maxlength="11"/></label></p>
<p><label>Home phone# (area code first): <input type= "text" name="name"
size="20" maxlength="15"/> Work phone# (area code first):
<input type= "text" name="name" size="20" maxlength="15"/></label></p>
<p><label>Department: <input type= "text" name="name"
size="30" maxlength="40"/> Position: <input type= "text" name="name"
size="30" maxlength="60"/></label></p>
<p><label>Base Salary: <input type= "text" name="name"
size="20" maxlength="15"/></label></p>
</fieldset>
</form>
</body>
</html>