-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 1.05 KB
/
index.html
File metadata and controls
33 lines (31 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Outrun</title>
<style>
body {
text-align: center;
color: #777;
background-color: black;
font-family: sans-serif;
}
</style>
<script type="text/javascript" src="./assetmanager.js"></script>
<script type="text/javascript" src="./timer.js"></script>
<script type="text/javascript" src="./gameengine.js"></script>
<script type="text/javascript" src="./util.js"></script>
<script type="text/javascript" src="./animator.js"></script>
<script type="text/javascript" src="./car.js"></script>
<script type="text/javascript" src="./sun.js"></script>
<script type="text/javascript" src="./mountains.js"></script>
<script type="text/javascript" src="./backdrop.js"></script>
<script type="text/javascript" src="./main.js"></script>
</head>
<body>
<canvas tabindex="0" autofocus id="gameWorld" width="1000" height="600" style="background: white; border: 1px solid black"></canvas>
<br />
Use A and D to move
</body>
</html>