-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlec5_html.html
81 lines (60 loc) · 1.89 KB
/
lec5_html.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
<!doctype html>
<html>
<head> <title>Lecture 5 </title> </head>
<body >
<form>
<fieldset>
<legend> <strong>:Register your information: </strong> </legend>
<label for ="fname">First Name: </label>
<input type="text" id="fname" name="fname" >
<br> <br>
<label for ="lname">Last Name: </label>
<input type="text" id="lname" name="lname" >
<br><br>
<label for ="dob">Date of Birth: </label>
<input type="date" id="dob" name="dob" >
<br><br>
<label for ="email2">Email: </label>
<input type="email" id="email2" name="email2" >
<br><br>
<label for ="f1">Select your file: </label>
<input type="file" id="f1" name="f1" >
<br><br>
<label for ="age">Enter your age: </label>
<input type="number" id="age" name="age" min="1" max="100">
<br><br>
<label for ="age">Enter your age: </label>
<input type="range" id="age" name="age" min="1" max="100">
<br><br>
<label for ="web">Enter your web site address: </label>
<input type="url" id="web" name="web">
<br><br>
<p>Select your gender: </p>
<input type="radio" id="male" name="gender1" value="male">
<label for="male"> Male </label>
<input type="radio" id="female" name="gender1" value="female">
<label for="female"> Female </label>
<p>Select your Qualification: </p>
<input type="checkbox" id="matric" name="chk1" value="matric">
<label for="matric"> Matric </label>
<input type="checkbox" id="fa" name="chk1" value="fa">
<label for="fa"> F.A </label>
<p>Select your city </p>
<select name="cities">
<option value="lahore"> Lahore</option>
<option value="karachi"> Karachi</option>
<option value="islamabad"> Islamabad</option>
</select>
<br><br>
<label for ="pwd">Enter your password: </label>
<input type="password" id="pwd" name="pwd">
<br><br>
<label for ="clr">select color: </label>
<input type="color" id="clr" name="clr">
<br><br>
<input type="submit" value="Save">
<input type="reset" value="Reset">
</fieldset>
</form>
</body>
</html>