-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.html
79 lines (74 loc) · 1.49 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Lists</title>
<style>
ol{
background-color: #8d8d8d;
}
ol li{
color: #50eab5;
font-family: "Cantarell",serif;
font-size: 200%;
}
ul{
background-color: #a8911f;
}
ul li{
color: #1877f2;
font-family: monospace;
font-size: 225%;
}
h2{
background-color: lightcoral;
}
ol li:hover{
Background-color: red;
}
ul li:hover{
color: yellow;
}
img{
-webkit-filter: blur(4px);
}
img:hover{
-webkit-filter: blur(0px);
}
</style>
</head>
<body>
<h2>ORDERED LISTS</h2>
<h2>Type of Cars</h2>
<ol>
<li>Toyota</li>
<br>
<li>Mercedes</li>
<br>
<li>Bentley</li>
<br>
<li>Nissan</li>
<br>
<li>Aston Martin</li>
<br>
<li>Honda</li>
<br>
<li>Subaru</li>
<br>
</ol>
<h2>Unordered List</h2>
<h2>Type Of Fruits</h2>
<ul>
<li>Mango</li>
<li>Peach</li>
<li>Berry</li>
<li>Zucchini</li>
<li>Avocado</li>
<li>Apple</li>
</ul>
<img src="static/images/test%205.jpeg" alt="">
</body>
</html>