-
Notifications
You must be signed in to change notification settings - Fork 40
/
index.html
61 lines (55 loc) · 1.87 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
50
51
52
53
54
55
56
57
58
59
60
61
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>the founder</title>
<style>
#loading {
text-align: center;
font-size: 2em;
padding: 4em;
font-family: 'Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';
}
</style>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div id="loading">
Loading...<br />
<img src="assets/loading.gif">
</div>
<main>
<div class="ui-wrapper">
<div class="menu"></div>
<div class="popups"></div>
<div class="ui"></div>
<div class="hud"></div>
<div class="selection"></div>
</div>
<div class="alert-wrapper"></div>
<div class="email-wrapper"></div>
<div class="achievement-wrapper"></div>
<div class="market-wrapper">
<div class="market-ui"></div>
<div class="market-share-wrapper"></div>
</div>
<canvas id="office"></canvas>
<div class="tooltip"></div>
<div class="show-about-help">?</div>
</main>
<div id="version-notice"></div>
<audio loop autoplay muted id="music">
<source src="assets/music/menu_loop.ogg" type="audio/ogg" id="music-source">
</audio>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-87347142-2', 'auto');
ga('send', 'pageview');
</script>
<script src="bundle.js"></script>
</body>
</html>