forked from rubin0/ThisTaxOfMine
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (44 loc) · 2.38 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>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>This Tax of Mine</title>
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<pre id="header" class="ascii-art">
$$$$$$$$\ $$\ $$\ $$$$$$$$\ $$$$$$\ $$$$$$\ $$\ $$\ $$\
\__$$ __|$$ | \__| \__$$ __| $$ __$$\ $$ __$$\ $$$\ $$$ |\__|
$$ | $$$$$$$\ $$\ $$$$$$$\ $$ | $$$$$$\ $$\ $$\ $$ / $$ |$$ / \__| $$$$\ $$$$ |$$\ $$$$$$$\ $$$$$$\
$$ | $$ __$$\ $$ |$$ _____| $$ | \____$$\ \$$\ $$ | $$ | $$ |$$$$\ $$\$$\$$ $$ |$$ |$$ __$$\ $$ __$$\
$$ | $$ | $$ |$$ |\$$$$$$\ $$ | $$$$$$$ | \$$$$ / $$ | $$ |$$ _| $$ \$$$ $$ |$$ |$$ | $$ |$$$$$$$$ |
$$ | $$ | $$ |$$ | \____$$\ $$ |$$ __$$ | $$ $$< $$ | $$ |$$ | $$ |\$ /$$ |$$ |$$ | $$ |$$ ____|
$$ | $$ | $$ |$$ |$$$$$$$ | $$ |\$$$$$$$ |$$ /\$$\ $$$$$$ |$$ | $$ | \_/ $$ |$$ |$$ | $$ |\$$$$$$$\
\__| \__| \__|\__|\_______/ \__| \_______|\__/ \__| \______/ \__| \__| \__|\__|\__| \__| \_______|
</pre>
<div class="wrapper">
<hr>
<div id="text" class="notifications">
<p id="start">You have to pay taxes.</p>
</div>
<div class="content bold">
<div class="column left">
<p> STATUS</p>
<p id="money"></p>
<input type="button" onclick="onWork()" value="Work" />
<input id="bnRestart" type="button" onclick="onRestart()" value="Restart" style="display: none" />
</div>
<div class="column right">
<p> DAYS TO PAY</p>
<p id="time"></p>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous">
</script>
<script src="./js/world.js"></script>
<script src="./js/notifications.js"></script>
<script src="./js/renderer.js"></script>
</body>
</html>