-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
58 lines (58 loc) · 1.95 KB
/
form.html
File metadata and controls
58 lines (58 loc) · 1.95 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
56
57
58
<html>
<head>
<body>
<fieldset>
<legend>personal Information Form</legend>
<form>
<span>Name:</span>
<label for="one"></label>
<input id="one" type="text" placeholder="Enter your name">
<br/>
<br/>
<span>Father Name:</span>
<label for="one"></label>
<input id="one" type="text" placeholder="Enter your father name">
<br/>
<br/>
<span>Number:</span>
<label for="one"></label>
<input id="one" type="text" placeholder="Enter your number">
<br/>
<br/>
<span>DOB:</span>
<label for="one"></label>
<input id="one" type="DATE" placeholder="Enter your DoB">
<br/>
<br/>
<span>Time:</span>
<label for="one"></label>
<input id="one" type="time" placeholder="Enter your DoB">
<br/>
<br/>
<span>password:</span>
<label for="one"></label>
<input id="one" type="text" placeholder="Enter your password">
<br/>
<br/>
<span>email:</span>
<label for="one"></label>
<input id="one" type="text" placeholder="Enter your email">
<br/>
<br/>
<span>Male</span>
<input type="radio">
<span>FeMale</span>
<input type="radio">
<br/>
<br/>
<input type="file"/>
<select>
<option>M.P.</option>
<option>U.P.</option>
</select>
<input type="checkbox"/>
</form>
</fieldset>
</body>
</head>
</html>