-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (53 loc) · 1.34 KB
/
Copy pathindex.html
File metadata and controls
56 lines (53 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<style>
.container {
background-color: #ddd;
width: 800px;
margin: 40px auto;
display: grid;
grid-template-columns: 150px 150px 150px 150px;
grid-template-rows: 150px 150px 150px;
grid-row-gap: 1rem;
}
.item {
padding: 30px;
font-size: 30px;
color: #fff;
}
.item-1 {
background-color: #f00;
}
.item-2 {
background-color: #0f0;
}
.item-3 {
background-color: #00f;
}
.item-4 {
background-color: #ff0;
}
.item-5 {
background-color: #0ff;
}
.item-6 {
background-color: #f0f;
}
</style>
<title>Document</title>
</head>
<body>
<div class="container">
<div class="item item-1">item 1</div>
<div class="item item-2">item 2</div>
<div class="item item-3">item 3</div>
<div class="item item-4">item 4</div>
<div class="item item-5">item 5</div>
<div class="item item-6">item 6</div>
</div>
</body>
</html>