-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (30 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<title>Be like water</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="unicorn.css"/>
<script src="colors.js"></script>
<script src="feedback.js"></script>
<script src="game.js"></script>
<script src="levelgen.js"></script>
<script src="random.js"></script>
<script src="state.js"></script>
<script src="toolbar.js"></script>
<script src="water.js"></script>
</head>
<body>
<div id="messages" class="title"> </div>
<div id="level-no"></div>
<div id="toolbar">
<div id="undo-button">⤺</div>
<div id="reset-button">↺</div>
<a href="menu.html"><div id="menu-button">≡</div></a>
</div>
<div id="game-container">
<div id="game"></div>
</div>
<script>start_game()</script>
</body>
</html>