-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (71 loc) · 1.98 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<style>
*{text-align:center;}
h1 {font-family: san-serif; font-size: 40px; text-align:center; margin-top:30px;}
.wrapper {display: grid;
grid-template-columns: 20px repeat(6,1fr) 20px;
grid-template-rows: 1fr 1fr 1fr;
border: 2px solid black;
width: 300px;
height: 400px;
grid-column-gap: 10px;
grid-row-gap: 10px;
margin-right: 0px;
box-sizing: border-box;
color: white;
font-family:verdana;
}
#a {grid-column:1/4;}
#b {grid-column:4/6;}
#c {grid-column:6/8;}
#d {grid-column:2/6;
grid-row:2/3;}
#e {grid-column:6/8;}
#f {grid-column:8/9;}
#g {grid-column:1/2;}
#h {grid-column:2/4;}
#i {grid-column:4/8;}
#sinchan {position:left;}
</style>
<body>
<h1> GRID <h2>
<div class="wrapper">
<div id=a style="background-color:#061B3A;">
1
</div>
<div id=b style="background-color:#63819D;">
2
</div>
<div id=c style="background-color:#98AEC2;">
3
</div>
<div id=d style="background-color:#D3DDE0;">
4
</div>
<div id=e style="background-color:#5A85A7;">
5
</div>
<div id=f style="background-color:#315A87">
6
</div>
<div id=g style="background-color:#465E96;">
7
</div>
<div id=h style="background-color:#02266D;">
8
</div>
<div id=i style="background-color: #0047AB;">
9
</div>
</div>
<div id=sinchan>
<img src=tenor.gif name=sinchan>
</body>
</html>