-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS Lists.html
More file actions
44 lines (40 loc) · 1.15 KB
/
CSS Lists.html
File metadata and controls
44 lines (40 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>List</title>
<style>
/*css code here. Also in style the comment out block is different. Or use the link tags instead of style. Link is much better */
ul{
list-style-image: url("images/my_triangle.png");
}
</style>
<link rel="stylesheet" href="css/CSS Lists rules.css">
<link rel="stylesheet" href="css/CSS Lists spacing.css">
</head>
<body>
<h1>Books</h1>
<ul>
<li>A la Recherche de Temps Perdu</li>
<li>Middlemarch</li>
<li>Ulysses</li>
<li>Don Quixote</li>
<li>Moby Dick</li>
<li>Hamlet</li>
<li>War and Peace</li>
<li>The Odyssey</li>
<li>The Great Gatsby</li>
<li>The Divine Comedy</li>
<li>Madame Bovary</li>
<li>The Brothers Karamazov</li>
<li>One Hundred Years of Solitude</li>
<li>The Iliad</li>
<li>Lolita</li>
<li>Anna Karenina</li>
<li>Crime and Punishment</li>
<li>The Sound and the Fury</li>
<li>Wuthering Heights</li>
<li>Le Rouge et le Noir</li>
</ul>
</body>
</html>