-
Notifications
You must be signed in to change notification settings - Fork 0
/
lists.html
96 lines (77 loc) · 1.3 KB
/
lists.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
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
padding: 20px;
}
</style>
<body>
<table>
<tr>
<td>
<h2>Colours</h2>
<ul style="list-style-type:disc">
<li>Red</li>
<li>Green</li>
<li>Blue</li>
<li>Yellow</li>
</ul>
<h2>Countries</h2>
<ul style="list-style-type:circle">
<li>Russia</li>
<li>Greece</li>
<li>Germany</li>
<li>Japan</li>
</ul>
<h2>Companies</h2>
<ul style="list-style-type:square;">
<li>Google</li>
<li>Facebook</li>
<li>Microsoft</li>
<li>Apple</li>
</ul>
<h2>Classes</h2>
<ul style="list-style-type:none;">
<li>Maths</li>
<li>Physics</li>
<li>Engineering</li>
<li>Economics</li>
</ul>
</td>
<td>
<h2>Animals</h2>
<ol type="1">
<li>Panda</li>
<li>Pangolin</li>
<li>Panthera</li>
<li>Pony</li>
</ol>
<h2>Drinks</h2>
<ol type="I">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
<li>Juice</li>
</ol>
<h2>Fruit</h2>
<ol type="A">
<li>Apple</li>
<li>Pear</li>
<li>Kiwi</li>
<li>Banana</li>
</ol>
<h2>Religions</h2>
<ol type="a">
<li>Christianity</li>
<li>Islam</li>
<li>Buddhism</li>
<li>Hinduism</li>
</ol>
</td>
</tr>
</table>
</body>
</html>