-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 1.39 KB
/
index.html
File metadata and controls
40 lines (37 loc) · 1.39 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
34
35
36
37
38
39
40
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="user-scalable=no" />
<title>Honeybee</title>
<link rel="stylesheet" href="honey.css">
<link rel="shortcut icon" href="./graphics/bee.png" type="image/x-icon" />
<script src="./scripts/honey_world.js"></script>
<script src="./scripts/honey_methods.js"></script>
<script src="./scripts/honey_player.js"></script>
<script src="./scripts/honey_score.js"></script>
</head>
<body>
<div class="header" id="header">
<img id="berry" src="./graphics/berry.png"></img>
<span id="points">0/0</span>
<img id="berry" src="./graphics/bee.png"></img>
<span id="health">3/3</span>
<!--<span id="timer" style="font-size:12px;">Timer</span>-->
</div>
<div class="body" id="body">
<div id="screen">
<canvas id="Shade" width="500" height="500"></canvas>
<canvas id="Canvas" width="500" height="500"></canvas>
<canvas id="Action" width="500" height="500"></canvas>
<canvas id="Overlay" width="500" height="500"></canvas>
<canvas id="Cloud" width="500" height="500"></canvas>
<canvas id="Game" width="500" height="500"></canvas>
</div>
</div>
<div class="footer" id="footer"></div>
<script src="./scripts/honey_globalVariables.js"></script>
<script src="./scripts/honey_cloud.js"></script>
<script id="gameloop"src="./scripts/honey_gameloop.js"></script>
</body>
</html>