-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathform.html
More file actions
55 lines (50 loc) · 1.04 KB
/
form.html
File metadata and controls
55 lines (50 loc) · 1.04 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<form>
<table>
<tr>
<td>Name</td>
<td><input type="text" name="username"></td>
</tr>
<tr>
<td>Password</td>
<td><input type="Password" name="password"></td>
</tr>
<tr>
<td>Gender</td>
<td><input type="radio" name="gender">M
<input type="radio" name="gender">F
<input type="radio" name="gender">Other</td>
</tr>
<tr>
<td>Course</td>
<td><input type="checkbox" name="php">PHP
<input type="checkbox" name="mysql">MySQL
<input type="checkbox" name="javascript">JavaScript</td>
</tr>
<tr>
<td>State</td>
<td>
<select>
<option>DELHI</option>
<option>HARYANA</option>
<option>U.P</option>
<option>BIHAR</option>
<option>PUNJAB</option>
<option>GOA</option>
</select>
</td>
</tr>
<tr>
<td colspan="2"><input type="submit" >
<input type="reset" >
</td>
</tr>
</table>
</form>
</body>
</html>