-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
35 lines (33 loc) · 1.42 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel='icon' href='favicon.ico' type='image/x-icon'>
<title>Incremental Revenue Service</title>
<link rel = "stylesheet" href = "style.css">
</head>
<body>
<h1><h class="money">(Illegally Earned) Money:</h> <span id="TotalMoney"></span></h1>
<button class ="printmoney" onclick="getrich()">Print Money</button>
<div id="buttons"></div>
<button class="options" onclick="tab('optionsMenu')">Options</button>
<button class="shop" onclick="tab('shopMenu')">Shop</button>
</div>
<div class = "optionsMenu" id="optionsMenu">
<button class="savegame" onclick="saveGame()">Save Game</button>
<button class="loadgame" onclick="loadGame()">Load Game</button>
<button class="savekill" onclick="saveKill()">Delete Save</button>
<button class="themetoggle" onclick="changeTheme()">Toggle Theme</button>
</div>
<div id="shopMenu">
<h2 class="autoprinters">Auto Printers: <span id="TotalAutoPrinters"></span></h2>
<button id="BuyAutoPrinterButton" class="buyautoprinter" onclick="BuyAutoPrinter()">Buy An Auto Printer For:
<span id=AutoPrinterCost></span>
</button>
</div>
</body>
<script src="script.js"></script>
<script src="themetoggle.js"></script>
<script src="saveload.js"></script>
<script src="auto.js"></script>
</html>