-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (33 loc) · 1.41 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
<!DOCTYPE html>
<html>
<head>
<title>Binary Britain</title>
<link rel="stylesheet" href="/style/style.css" />
<script src="/js/keydrown.js"></script>
<script src="/js/jquery.min.js"></script>
</head>
<body>
<h1><span id="bordered">Binary Britain</span></h1></span>
<script src="/bin/pixi.dev.js"></script>
<script src="/js/FrameTimer.js"></script>
<script src="/js/Animation.js"></script>
<script src="/js/BoundingBox.js"></script>
<script src="/js/funcyFunctions.js"></script>
<script src="/js/OSGridConverter.js"></script>
<script src="/js/Npc.js"></script>
<script src="/js/Chunk.js"></script>
<script src="/js/Minimap.js"></script>
<script src="/js/main.js"></script>
<!-- <embed src="/sounds/sound.mp3" controller="true" autoplay="true" autostart="True" type="audio/mp3" /> (when we get round to adding sounds.-->
<!--The canvas' container div (to make it easier to style)-->
<div id="canvainer"></div>
<div id="stats">
<p>Binary Britain is a virtualisation of Britain built and based on statistics.</p>
<p id="wealth">0</p>
<canvas id="minimap" width="200" height="200"></canvas></br>
<p id="latlng">Latitude, Longitude: </p>
<p id="county">County: </p>
<p id="weather">Weather: </p>
</div>
</body>
</html>