-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 706 Bytes
/
index.html
File metadata and controls
31 lines (31 loc) · 706 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>t - tetromino engine demo</title>
<meta charset="utf-8" />
<style>
#foreground {
position: absolute;
z-index: 1;
top:0px;
left:0px;
}
#background {
position: absolute;
z-index: 0;
top: 0px;
left: 0px;
}
</style>
</head>
<body>
<canvas id="foreground" width="120" height="230" z-index="1" ></canvas>
<canvas id="background" width="120" height="230" z-index="0" ></canvas>
</body>
<script src="./tetrinode.js"></script>
<script src="./bin/tetrinode.js"></script>
<!--
<script src="./lib/keyboard.js"></script>
<script src="./webClient2.js"></script>
-->
</html>