forked from ChromeGaming/GameSphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 910 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="CanvasContainer">
<canvas id="GameView">
</canvas>
<div id="GameMenu">
<div>
<div id="Scores" style="opacity: 0; ">
Score: <span id="Score">0</span>
<br>
High Score: <span id="Highscore">0</span>
<br>
<br>
</div>
<div class="button" id="btnNewGame">Start</div>
</div>
</div>
</div>
<script src="engine.js"></script>
<script src="vector.js"></script>
<script src="td.js"></script>
</body>
</html>