-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (98 loc) · 3.03 KB
/
index.html
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration Form</title>
</head>
<body>
<h1 style="text-align: center;">Registration Form Using HTML</h1>
<form action="">
<table>
<tr>
<td>
<b>Name:</b>
</td>
<td> <input type="text" placeholder="Write Your Name" name="">
</td>
</tr>
<tr>
<td>
<b>Phone Number:</b>
</td>
<td><input type="phone" placeholder="7738******" ></td>
</tr>
<tr>
<td>
<b>Gmail Id:</b>
</td>
<td>
<input type="email" placeholder="[email protected]">
</td>
</tr>
<tr>
<td>
<b>Password:</b>
</td>
<td>
<input type="password" placeholder="*****" >
</td>
</tr>
<tr>
<td>
<b>Gender:</b>
</td>
<td>
<input type="radio" name="Gender">Male
<input type="radio" name="Gender">Female
<input type="radio" name="Gender">Other
</td>
</tr>
<tr>
<td>
<b>Date of birth:</b>
</td>
<td>
<input type="date">
</td>
</tr>
<tr>
<td>
<b>Hobbies:</b>
</td>
<td>
<input type="checkbox"writing>writing
<input type="checkbox"reading>reading
<input type="checkbox"playing>playing
<input type="checkbox"swimming>swimming
</td>
</tr>
<tr>
<td>
<b>Education Qualification:</b>
</td>
<td>
<select name="Education" id="Education">
<option value="">Select Option</option>
<option>10+2</option>
<option>under Graducation</option>
<option>post Graductaion</option>
</select>
</td>
</tr>
<td>
<b>Address:</b>
</td>
<td>
<textarea name="Address" id="" cols="30" rows="8" placeholder="Address"></textarea>
</td>
<tr>
<td>
<input type="submit" value="submit">
<input type="reset" value="reset">
</td>
</tr>
</table>
</form>
</body>
</html>