-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 1.26 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>X:O:X</title>
</head>
<body>
<style>
.grid {
width: 600px;
}
.section {
display: flex;
}
.square {
border: 1px solid;
height: 4em;
width: 4em;
text-align: center;
font-size: 1.5em;
display: flex;
align-items: center;
justify-content: center;
text-transform: uppercase;
}
.top > .square {
border-top:none;
}
.bottom > .square {
border-bottom:none;
}
.section > .square:first-child{
border-left:none;
}
.section > .square:last-child {
border-right:none;
}
</style>
<h1>X:O:X</h1>
<div class="grid">
<div class="top section">
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
</div>
<div class="mid section">
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
</div>
<div class="bottom section">
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
</div>
</div>
<script src="assets/bundle.js"></script>
</body>
</html>