<html>
<head>
<title>Form 1</title>
<link rel="stylesheet" href="formstyle.css">
</head>
<body>
<form action="popupwindow.html" method="get" target="_parent" autocomplete="on" enctype="multipart/form-data" >
<div id="Name">
<label for="fname">First Name: </label>
<input type="text" id="fname" placeholder="First Name" autocomplete="on">
<br><br>
<label for="lname">Last Name: </label>
<input type="text" id="lname" placeholder="Last Name" >
</div>
<br><br>
<div id="Address">
<label for="Address">Address:</label>
<br>
<textarea rows="5" cols="31"></textarea>
</div>
<br>
<div id="Colour">
<label for="Color">Favourite Colour: </label>
<input type="color">
</div>
<br>
<div id="Age">
<Label for="DOB">Date Of Birth: </Label>
<input type="date" id="DOB" placeholder="Enter Date of Birth">
</div>
<br>
<div id="Communication">
<label for="ESP">English Speaking Proficiency: </label>
<input type="range">
</div>
<br><br>
<div id="Submit&reset">
<center>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</center>
</div>
</form>
</body>
</html>
Comments
Post a Comment