-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (31 loc) · 1 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
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>Fruit Stand</title>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<link rel="stylesheet" href="style.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" src="javascript.js"></script>
</head>
<body>
<div id="gameArea">
<canvas id="gameCanvas"></canvas>
<div id="topNav"></div>
<div id="topLeft"></div>
<div id="topRight"></div>
<div id="bottomLeft"></div>
<div id="bottomRight"></div>
<div id="contentScreen"></div>
<div id="button1"></div>
<div id="button2"></div>
<div id="button3"></div>
<div id="button4"></div>
<div id="button5"></div>
<div id="statsPanel"></div>
<!-- TODO:
top bar: profile/time/settings
bottom bar: buttonlayout
-->
</div>
</body>
</html>