-
Notifications
You must be signed in to change notification settings - Fork 83
/
Form
35 lines (32 loc) · 815 Bytes
/
Form
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<html>
<head>
<title>html</title>
</head>
<body bgcolor="cyan">
<form>
<center>
<br><br><br><br>
username<input type="text" name="text"><br><br><br>
password <input type="password" name="password"> <br><br>
gender<input type="radio" name="gender" value="male">male<br><br>
               <input type="radio" name="gender"
value="female"> female<br><br>
<p>state</p>
<select name="states">
<option>up</option>
<option>mp</option>
<option>ap</option>
<option>hp</option>
<option>jk</option>
<option>karnataka</option>
<option>kerala</option>
<option>maharashtra</option>
<option>gujarat</option>
<option>rajasthan</option>
<option>punjab</option>
</select><br><br><br>
<input type="submit" value="submit">
<input type="reset" value="reset">
</form>
</body>
</html>