-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (40 loc) · 1.04 KB
/
index.html
File metadata and controls
45 lines (40 loc) · 1.04 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
<html>
<head>
<title>Tetris</title>
<style>
body {
background: #000;
display: flex;
color: #fff;
font-family: sans-serif;
font-size: 2em;
text-align: center;
}
.player {
flex: 1 1 auto;
}
.player.local canvas {
border-color: #fff;
}
canvas {
border: solid .2em #707070;
height: 80vh;
}
</style>
</head>
<body>
<template id="player-template">
<div class="player">
<div class="score"></div>
<canvas class="tetris" width="240" height="400"></canvas>
</div>
</template>
<script src="client/connection-manager.js"></script>
<script src="client/tetris-manager.js"></script>
<script src="client/events.js"></script>
<script src="client/arena.js"></script>
<script src="client/player.js"></script>
<script src="client/tetris.js"></script>
<script src="client/main.js"></script>
</body>
</html>