-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (50 loc) · 1.31 KB
/
index.html
File metadata and controls
53 lines (50 loc) · 1.31 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
<html>
<head>
<title>Tetris</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="manifest" href="manifest.webmanifest">
<style>
body {
background: #202028;
color: #fff;
font-family: sans-serif;
font-size: 2em;
text-align: center;
}
canvas {
border: solid .2em #fff;
height: 75vh;
}
h4 {
font-family: sans-serif;
font-size: 1em;
text-align: center;
}
.scoreTable {
width: 100%;
max-width: 75vw;
margin: 0 auto 0 auto;
}
</style>
</head>
<body>
<table class="scoreTable">
<tbody>
<tr>
<td>
<h4>Score
<span id="score"></span>
</h4>
</td>
<td>
<h4>Highscore
<span id="highscore"></span>
</h4>
</td>
</tr>
</tbody>
</table>
<canvas id="tetris" width="240" height="400"></canvas>
<script src="tetris.js"></script>
</body>
</html>