how to make a from easily in html
<html<head>
<title>Untitled Document</title>
</head>
<body>
<form name="from1" method="get" action="">
<table border="1">
<tr>
<td>Name</td>
<td>:</td>
<td><input type="text" name="i1" id="i1" /></td>
</tr>
<tr>
<td>Address</td>
<td>:</td>
<td><textarea></textarea></td>
</tr>
<tr>
<td>phone no</td>
<td>:</td>
<td><input type="number" name="i2" id="t2" /></td>
</tr>
<tr>
<td>Country Name</td>
<td>:</td>
<td>
<select>
<option>India</option>
<option>Austrelia</option>
<option>Japan</option>
</select>
</tr>
<tr>
<td>Gender</td>
<td>:</td>
<td>
<select>
<option>Male</option>
<option>Female</option>
<option>Other</option>
</select>
</td>
</tr>
</table>
</form>
</body>
</html>
0 Comments