NU week1 part 1
Northeastern University ITC 22131- Create an HTML form with the following form fields
• First Name – Text Box
• Last Name – Text Box
• SSN – Text Box
• DOB – Text Box
• Phone – Text Box
• Gender – Radio Button
• Account Number – Text Box
• Account Type – Drop down list box values saving, checking, CD.
<form id="form1" name="form1" method="post" action="phpengine.php">
<p>Firstname
<input type="text" name="FirstName" id="FirstName" />
</p>
<p>LastName
<input type="text" name="LastName" id="LastName" />
</p>
<p>SSN
<input type="text" name="SSN" id="SSN" />
</p>
<p> DOB
<input type="text" name="DOB" id="DOB" />
</p>
<p>Phone
<input type="text" name="Phone" id="Phone" />
</p>
<p>Gender<br />
<input type="radio" name="radio" id="Gender" value="Male" />
Male
<input type="radio" name="radio" id="Gender" value="Female" />
Female </p>
<p>AccountNumber
<input type="text" name="AccountNumber" id="AccountNumber" />
</p>
<p>AccountType
<select name="AccountType" id="AccountType">
<option>Saving</option>
<option>Checking</option>
<option>CD</option>
</select>
</p>
<p>
<input type="submit" name="sumbit" id="sumbit" value="Submit" />
</p>
</form>