-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (49 loc) · 1.72 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
43
44
45
46
47
48
49
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Click those bees">
<title>Bee Clicker</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/qtip2/3.0.3/basic/jquery.qtip.min.css">
<link rel="stylesheet" href="css/main.css" />
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/qtip2/3.0.3/basic/jquery.qtip.min.js"></script>
<script src="js/facts.js"></script>
<script src="js/main.js"></script>
<script src="js/autoplay.js"></script>
</head>
<body>
<div id="leftSide">
<div id="honeyDisplay"></div>
<img id="BerryBeeBenson" src="img/bee.gif"></img>
</div>
<div id="middleSide">
<div id="facts"></div>
<div id="icons"></div>
</div>
<div id="rightSide">
<div id="upgradesHeader">Upgrades</div>
<hr>
<table id="upgradesTable">
<!--<tr>
<td><div class="upgrade" onclick="Game.BuyUpgrade[0]" style="background-position: 0px -48px;"></div></td>
<td>HoneyComb</td>
<td class="currency">50</td>
</tr>-->
</table>
</div>
<div id="octocat">
<a href="https://github.com/noahzemlin/beeclick.org"><img src="img/GitHub-Mark-64px.png"></a>
</div>
<div id="resetButton">
<a href="#" onclick="resetProgress()">Reset</a>
</div>
<!-- <div id="cheatButton">
<a href="#" onclick="Game.addHoney(1000000);">Cheat</a>
</div> -->
<!-- <div id="autoplayButton">
<a href="#" onclick="autoplayPress()">Autoplay</a>
</div> -->
</body>
</html>