-
Notifications
You must be signed in to change notification settings - Fork 256
/
Copy pathindex.html
28 lines (26 loc) · 833 Bytes
/
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
<html>
<head>
<title>Tetris</title>
<link href="https://fonts.googleapis.com/css?family=Russo+One&display=swap" rel="stylesheet">
<style>
.parent {
display: flex;
justify-content: center;
align-items: center;
}
#score {
font-size:2em
}
#tetris {
height: 90vh;
max-height: 900px
}
</style>
</head>
<body class="parent" style="background: #202025; font-family: 'Russo One', sans-serif;" >
<div style="color:white; background: #111; padding: 1em; border-radius: 5px">
<canvas id="tetris" width="480" height="900" style="border-radius: 5px"></canvas>
<script src="tetris.js"></script>
</div>
</body>
</html>