-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.html
83 lines (61 loc) · 1.43 KB
/
list.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>list</title>
</head>
<style>
#tt{color: red;
}
</style>
<body>
<!--ordered list-->
<!--ol represent the order list-->
<!--ul represent unordered list-->
<!--li tag contains the list items-->
<h3>Ordered list</h3>
<ol>
<li> orange</li>
<li> mango</li>
<li> lemon</li>
<li> dates</li>
</ol>
<!-- unordered list-->
<!-- this are bulleted-->
<h3> unordered list</h3>
<ul>
<li> samsung</li>
<li> nokia</li>
<li> apple</li>
<li> xieon</li>
</ul>
<p><b>Choose yor type of fruit</b></p>
<select name="colors" id=" color">
<option value=""> orange</option>
<option value="">mango</option>
<option value="">lemon</option>
<option value="dates">Dates</option>
</select>
<!--checkbox are introduced then replaced with the radio-->
<!--this are radio labeling-->
<p> This is a checkbox</p>
<lable>red</lable>
<input type="checkbox" name="red" >
<lable>green</lable>
<input type="checkbox" name="green" >
<lable>blue</lable>
<input type="checkbox" name="blue">
<lable>black</lable>
<input type="checkbox" name="black"><br><br><br>
<p>Gender</p>
<select name="Gender" id="tt">
<option value="" ></option>
<option value="">male</option>
<option value="">female</option>
</select>
<select name="" id="">
<option value="">age</option>
<input type="text" name= id="">
</select>
</body>
</html>