-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
39 lines (36 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
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chess Analyzer</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="tab">
<button class="tablinks" data-tab="analyzer">Analyzer</button>
<button class="tablinks" data-tab="matteric">Matteric</button>
<button class="tablinks" data-tab="antimatter">Antimatter</button>
</div>
<div id="analyzer" class="tabcontent">
<div class="analysis" id="analysis-count">You have 0 Analysis</div>
<div class="analysis" id="analysis-per-sec">You are making 0 Analysis per second</div>
<div class="analysis" id="computer">
<button id="buy-computer-button">Buy a computer</button>
</div>
<div class="analysis" id="ai">
<button id="buy-ai-button">Buy an AI</button>
</div>
<div class="analysis hidden" id="go-matteric"><button>Reset all Analysis progress to go Matter</button></div>
</div>
<div id="matteric" class="tabcontent">
Coming soon...
</div>
<div id="antimatter" class="tabcontent">
Antimatter content here...
</div>
<div id="endgame" class="tabcontent hidden">You reached the endgame!<br>You can still play, but the game might be so capped.</div>
<script src="js/src/main.js"></script>
<script src="js/src/tabs.js"></script>
<script src="js/src/endgame.js"></script>
</body>
</html>