-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
29 lines (29 loc) · 1.07 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
<html>
<head>
<title>Will I win?</title>
<script src="OmegaNum.js"></script>
<script src="main.js" defer></script>
<script src="ui.js" defer></script>
<link rel="stylesheet" href="style.css">
</head>
<body style="font-family: 'Times New Roman', Times, serif; background-color: #BBBBBB;">
<div class="help" tooltip="Probability must be bigger than target to earn money.">i</div>
<p id="time"></p>
<p id="upgrades"></p>
<p id="money"></p>
<p id="chance"></p>
<br>
<button onclick="add()" id="trymoney"></button>
<p id="wait"></p>
<br>
<button onclick="upgrade1()" id="upgrade1"></button>
<button onclick="upgrade2()" id="upgrade2"></button>
<button onclick="upgrade3()" id="upgrade3"></button>
<button onclick="upgrade4()" id="upgrade4"></button>
<button onclick="upgrade5()" id="upgrade5"></button>
<div id="tooltip"></div>
<br>
<br>
<button onclick="reset()">Reset Progress</button>
</body>
</html>