-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathexercise1.html
executable file
·59 lines (48 loc) · 1.09 KB
/
exercise1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Exercise #1: 960gs</title>
<link rel="stylesheet" href="960.css"/>
<style>
.blue {
background-color: blue;
height: 60px;
}
.yellow, .green, .lightgreen, .orange {
height: 100px;
}
.yellow {
background-color: yellow;
}
.green {
background-color: green;
}
.lightgreen {
background-color: lightgreen;
}
.orange {
background-color: orange;
}
.grey {
background-color: grey;
height: 30px;
}
/* add space around the clear div */
.clear {
margin-top: 10px;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="container_12">
<!-- this is a single colored box; replace XXs -->
<div class="grid_XX">
<div class="XX"></div>
</div>
<!-- this is the separator between rows -->
<div class="clear"></div>
</div>
</body>
</html>