-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (45 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link rel="stylesheet" href="style.css" />
<title>Kurve</title>
</head>
<body>
<header>
<h1>Kurve</h1>
</header>
<main>
<div id="container-alerts">
</div>
<canvas id="canvas" width="1000" height="1000"></canvas>
</main>
<aside>
<div id="container-player-cards">
<!-- Cards are added dynamically -->
</div>
<div id="container-stats">
<!-- Stats are added dynamically -->
</div>
</aside>
<footer>
<p class="center truncate">
© Daniel Geiger, Lorenz Leitner, Peter Oberrauner, Sebastian Resch<br />
<a href="documentation/" target="_blank">Documentation</a>
</p>
</footer>
<script src="m-storage.js"></script>
<script src="c-logger.js"></script>
<script src="c-communicator.js"></script>
<script src="c-input-handler.js"></script>
<script src="c-player.js"></script>
<script src="c-collision-detector.js"></script>
<script src="c-power-up.js"></script>
<script src="v-audio-player.js"></script>
<script src="v-ui-handler.js"></script>
<script src="v-drawer.js"></script>
<script src="main.js"></script>
</body>
</html>