-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (42 loc) · 869 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tetris</title>
<style>
table {
margin: 0 auto;
}
td {
vertical-align: top;
}
</style>
</head>
<body>
<table>
<tr>
<td>
<ul id="status1">
<li>Score: <span data-role="scope">0</span></li>
<li>Level: <span data-role="level">1</span></li>
<li>Tetriss: <span data-role="tetris">0</span></li>
</ul>
</td>
<td>
<canvas id="canvas1">Your browser does not support canvas.</canvas>
</td>
<td>
<canvas id="canvas2">Your browser does not support canvas.</canvas>
</td>
<td>
<ul id="status2">
<li>Score: <span data-role="scope">0</span></li>
<li>Level: <span data-role="level">1</span></li>
<li>Tetriss: <span data-role="tetris">0</span></li>
</ul>
</td>
</tr>
</table>
<script src="js/main.js"></script>
</body>
</html>