You are on page 1of 4

19.

Make a Registration Form


<html>

<head>

<title>Registration Form</title>

</head>

<body>

<center>

<h1>Registration Form</h1>

<form>

<table>

<tr>

<td>First Name :</td>

<td><input type="text"></td>

</tr>

<tr>

<td>Last Name :</td>

<td><input type="text"></td>

</tr>

<tr>

<td>Password :</td>

<td><input type="password"></td>

</tr>

<tr>

<td>Gender :</td>

<input type="radio" name="Gender"> Male


<input type="radio" name="Gender"> Female

</td>

</tr>

<tr>

<td>DOB:</td>

<td><input type="date"</td>

</tr>

<tr>

<td>Email :</td>

<td><input type="email"></td>

</tr>

<tr>

<td>Address:</td>

<td><input type="address"></td>

</tr>

<tr>

<td>State :</td>

<td>

<select>

<option>Andhra Pradesh</option>

<option>Bihar</option>

<option>Chattisgarh</option>

<option>Goa</option>

<option>Haryana</option>

<option>Punjab</option>
<option>Tamil Nadu</option>

<option>Uttar Pradesh</option>

<option>West Bengal</option>

</select>

<tr>

<td>Phone no :</td>

<td>

<select>

<option>+91</option>

</select>

<input type="phone">

</td>

</tr>

<tr>

<td><input type="submit" value="Submit"></td>

</tr>

</table>

</form>

</center>

</body>

</html>
Output:-

You might also like