-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
42 lines (39 loc) · 1.12 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
<!DOCTYPE HTML>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-125813702-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-125813702-1');
</script>
<!-- For alerts -->
<link href="./css/lib/noty.css" rel="stylesheet" type="text/css">
<script src="./js/lib/noty.min.js" type="text/javascript"></script>
<link href="./css/voynich.css" rel="stylesheet" type="text/css">
<script src="./js/main.js" type="module"></script>
<title>Voynich</title>
</head>
<body>
<div class="tabs" id="topBar"></div>
<div id="achievement-container">
<div id="achievements"></div>
</div>
<div id="settings">
<button>"Mute"</button>
<button id="import">Load save!</button>
<button id="export">Export save!</button>
<button id="hardReset">HARD RESET</button>
</div>
<div id="stats">
</div>
<div id="prestige">
<div id="prestigeResources"></div>
<button id="anotherOne">Another one...</button>
</div>
<div id="game">
</div>
</body>
</html>