-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnumbers.html
More file actions
49 lines (40 loc) · 756 Bytes
/
numbers.html
File metadata and controls
49 lines (40 loc) · 756 Bytes
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
<html>
<head>
<title>Numbers in colour</title>
<style>
ul { width: 700px;
margin: 0 auto;
border: 1px solid}
li { background-color: #AAAAAA;
display: inline-block;
width: 200px;
height: 175px;
margin: 10px;
padding-top: 25px;
text-align: center;
font-family: Arial;
font-weight: bold;
font-size: 150px;
}
.weiss {color: #FFFFFF}
.blau {color: #0000FF}
.gelb {color: #FFFF00}
.sorotbraun {color: #BB3300}
.gruen {color: #00AA00}
.braun {color: #772200}
</style>
</head>
<body>
<ul>
<li class="weiss">1</li>
<li class="weiss">2</li>
<li class="blau">3</li>
<li class="gelb">4</li>
<li class="sorotbraun">5</li>
<li class="sorotbraun">6</li>
<li class="gruen">7</li>
<li class="gelb">8</li>
<li class="braun">9</li>
</ul>
</body>
</html>