-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
154 lines (131 loc) · 5.72 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Welcome to a shark. I hope you enjoy this aquatic organism.
It might be very bad-->
<title>Idle Shark | ChangJosh</title>
<meta charset="utf-8">
<meta itemprop="description" name="description" property="og:description"
content="A web game about resources, discovery and sharks. Lots of sharks">
<meta property="og:url" content="changjosh.github.io"/>
<meta itemprop="image" property="og:image" content="img/sharkgame.png"/>
<meta property="og:image:type" content="image/png"/>
<meta property="og:image:width" content="200"/>
<meta property="og:image:height" content="200"/>
<meta itemprop="name" property="og:title" content="Shark Game"/>
<link rel="shortcut icon" href="favicon.png" type="image/x-icon"/>
<link rel="image_src" href="img/sharkgame.png"/>
<link rel="apple-touch-icon" href="img/sharkgame.png">
<link href="css/style.css" rel="stylesheet" type="text/css" title="default">
<!-- custom stylesheets for each world-->
<link href="css/abandoned.css" rel="alternate stylesheet" type="text/css" title="abandoned">
<link href="css/chaotic.css" rel="alternate stylesheet" type="text/css" title="chaotic">
<link href="css/frigid.css" rel="alternate stylesheet" type="text/css" title="frigid">
<link href="css/haven.css" rel="alternate stylesheet" type="text/css" title="haven">
<link href="css/shrouded.css" rel="alternate stylesheet" type="text/css" title="shrouded">
<link href="css/tempestuous.css" rel="alternate stylesheet" type="text/css" title="tempestuous">
<link href="css/violent.css" rel="alternate stylesheet" type="text/css" title="violent">
<!--[if lt IE 9]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]-->
<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', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-53819232-1', 'auto');
ga('send', 'pageview');
</script>
<!-- load frameworks -->
<!-- jQuery -->
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- underscore -->
<script type="text/javascript"
src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>
<script type="text/javascript" src="js/lib/base64-ascii85.js"></script>
<script type="text/javascript" src="js/lib/pako.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/util.js"></script>
<script type="text/javascript" src="js/data/resourcetable.js"></script>
<script type="text/javascript" src="js/data/homeactions.js"></script>
<script type="text/javascript" src="js/data/worldtypes.js"></script>
<script type="text/javascript" src="js/data/upgrades.js"></script>
<script type="text/javascript" src="js/data/artifacts.js"></script>
<script type="text/javascript" src="js/data/sprites.js"></script>
<script type="text/javascript" src="js/resources.js"></script>
<script type="text/javascript" src="js/world.js"></script>
<script type="text/javascript" src="js/log.js"></script>
<script type="text/javascript" src="js/save.js"></script>
<script type="text/javascript" src="js/settings.js"></script>
<script type="text/javascript" src="js/gateway.js"></script>
<script type="text/javascript" src="js/tabs/home.js"></script>
<script type="text/javascript" src="js/tabs/lab.js"></script>
<script type="text/javascript" src="js/tabs/stats.js"></script>
<script type="text/javascript" src="js/tabs/recycler.js"></script>
<script type="text/javascript" src="js/tabs/gate.js"></script>
<script type="text/javascript" src="js/tabs/reflection.js"></script>
</head>
<body>
<div id="wrapper">
<noscript>
<div class="section">
<h1>Idle shark??</h1>
<p>Oh dear! It seems you have Javascript disabled, or that your current browser does not support
scripts.</p>
<p>Shark Game requires scripts to work. Otherwise it's just a static webpage that doesn't do much.</p>
<div style="margin: auto; width: 20em">
<pre>
,
.';
.-'` .'
,`.-'-.`\
; / '-'
| \ ,-,
\ '-.__ )_`'._
'. ``` ``'--._
.-' , `'-.
'-'`-._ (( o ) - scripts plz.
jgs `'--....(`- ,__..--' some shark 2021
'-'`
</pre>
</div>
</div>
</noscript>
<div id="game">
<div id="title">
<h1 id="gameName">- Idle Shark -</h1>
<div id="titlebar">
<ul id="titlemenu">
</ul>
<ul id="subtitlemenu">
</ul>
</div>
</div>
<div id="sidebar">
<div id="status">
</div>
<div id="log">
</div>
</div>
<div id="content">
</div>
<div class="clear-fix"></div>
<div id="overlay"></div>
<div id="copyright" class="copyrightNotice">The above variably-named idle shark © <a
href="/">ChangJosh</a>, 2025 to beyond. All rights reserved.
</div>
<div id="preloadedImages"></div>
</div>
</body>
<!--
Made by ChangJosh
<3
-->
</html>