-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (30 loc) · 1.16 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<title>Square</title>
<link rel="shortcut icon" type="image/png" href="images/square_icon.png">
</head>
<div class="body">
<img src="images/square_logo.png">
</div>
<body bgcolor="#E6E6FA">
<link rel="stylesheet" href="style.css">
<canvas id="gameCanvas" width="800" height="600"></canvas>
<script src="js/GraphicsCommon.js"></script>
<script src="js/ImageLoading.js"></script>
<script src="js/Input.js"></script>
<script src="js/Operation.js"></script>
<script src="js/Interaction.js"></script>
<script src="js/LevelLoading.js"></script>
<script src="js/Result.js"></script>
<script src="js/Square.js"></script>
<script src="js/Track.js"></script>
<script src="js/Button.js"></script>
<script src="js/Door.js"></script>
<script src="js/Teleportation.js"></script>
<script src="js/Stop.js"></script>
<script src="js/Main.js"></script>
</body>
</html>