-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path20.lists_code.html
More file actions
65 lines (61 loc) · 1.04 KB
/
20.lists_code.html
File metadata and controls
65 lines (61 loc) · 1.04 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
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta charset ="utf-8">
<title>
lists
</title>
<style>
ul.list1{
/* list-style: square;
*/
/* list-style: lower-roman;
*/
/* list-style: upper-roman;
*/
list-style-image: url(images/bluesquare.gif)
}
ul.list2{
list-style: none;
padding: 0;
margin: 0;
}
ul.list2 li{
background-image: url(images/bluesquare.gif);
background-repeat: no-repeat;
background-position: 0px center;
padding-left: 22px;
}
</style>
</head>
<body>
<p>
A list of European capitals:
</p>
<ul class="list1">
<li>
Paris
</li>
<li>
London
</li>
<li>
Madrid
</li>
</ul>
<p>
A list of European capitals:
</p>
<ul class="list2">
<li>
Paris
</li>
<li>
London
</li>
<li>
Madrid
</li>
</ul>
</body>
</html>