<!DOCTYPE html>
<html>
<head></head>
<title>Form</title>
<body>
<form name="input" acion="" method="POST" enctype="multipart/form-data" autocomplete="off">
<table border="1" cellspacing="2">
<tr align="center">
<th colspan="2">Fill the form below</th>
</tr>
<tr align="left">
<td>Name</td>
<td><input type="text"></td>
</tr>
<tr align="left">
<td>Password</td>
<td><input type="text"></td>
</tr>
<tr align="left">
<td>Feedback</td>
<td><textarea rows="4" cols="25" style="overflow:scroll"><textarea></td>
</tr>
<tr align="left">
<td>Gender</td>
<td><input type="radio" name="gender" value="male">Male
<input type="radio" name="gender" value="female">Female</td>
</tr>
<tr align="left">
<td>Subject</td>
<td><input type="checkbox" name="subject" value="web">Web
<input type="checkbox" name="subject" value="math">Math
<input type="checkbox" name="subject" value="graphics">Graphics
<input type="checkbox" name="subject"value="english">English</td>
</tr>
<tr >
<td></td>
<td align="center"><input type="submit" value="Reset All">
<input type="submit" value="Submit Above Details"></td>
</tr>
</table>
</form>
</body>
</html>
No comments :
Post a Comment