-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
54 lines (48 loc) · 1.73 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css" />
<title>🐟 Aquarium 🐠 | aquarium.cheshire.gay</title>
</head>
<body>
<br />
<div id="tabs">
<a href="#game" id="game-link">Aquarium</a>
<a href="#journal" id="journal-link">Journal</a>
</div>
<div id="main">
<div id="game" class="tab">
<div id="sidebar-left" class="sidebar">
<p>
<span id="happy-percentage">0%</span> of your fish are in a good mood.
</p>
<p>Click anywhere to feed.</p>
<p>
<button id="music-button">music: off</button>
</p>
<h2>Selected Fish</h2>
<div id="selected-fish">
</div>
</div>
<div id="game-screen">
<span id="loading">Loading... 0%</span>
<main></main>
</div>
<div id="sidebar-right" class="sidebar">
<h2>Records</h2>
<div id="records">
</div>
</div>
</div>
<div id="journal" class="tab">
<div id="fish-list">
</div>
<div id="fish-details">
</div>
</div>
</div>
<script src="lib/p5.min.js"></script>
<script src="lib/p5.sound.js"></script>
<script src="src/utils.js"></script>
<script src="src/main.js" type="module"></script>
</body>
</html>