-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (52 loc) · 1.33 KB
/
index.html
File metadata and controls
59 lines (52 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.grid-container {
display: grid;
grid-template-columns: repeat(5, 128px);
grid-gap: 10px;
justify-content: center;
margin-top: 20px;
}
.square {
width: 128px;
height: 128px;
text-align: center;
line-height: 128px;
font-size: 24px;
font-weight: bold;
}
.red {
background-color: red;
}
.green {
background-color: green;
}
</style>
</head>
<body>
<div class="grid-container">
<div id="olá mundo" role="presentation" class="square red">
1
</div>
<div class="square green">
2
</div>
<div class="square red">
3
</div>
<div class="square green">4
</div>
<div data-myfield="test" class="square red">5</div>
<div class="square green">6</div>
<div class="square red">7</div>
<div class="square green">8</div>
<div class="square red">9</div>
<div class="square green">10</div>
</div>
</body>
</html>