-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
27 lines (27 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<title>Crater Space</title>
<link rel="stylesheet" href="main.css">
<script type="text/javascript" src="sprites.js"></script>
<script type="text/javascript" src="spritelib.js"></script>
<script type="text/javascript" src="wichmann-hill_rng.js"></script>
<script type="text/javascript" src="text.js"></script>
<script type="text/javascript" src="timeline.js"></script>
<script type="text/javascript" src="threedee.js"></script>
<script type="text/javascript" src="main.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="mobile-web-app-capable" content="yes"/>
</head>
<body>
<div id="wrapper">
<canvas id="threedee" width="400" height="711"></canvas>
<canvas id="board" width="400" height="711"></canvas>
<canvas id="fx" width="400" height="711"></canvas>
<canvas id="ui" width="400" height="711"></canvas>
</div>
</body>
</html>