forked from seeseekey/Soundboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (33 loc) · 1.02 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<!-- prevent zoom on mobile devices -->
<title>Soundboard</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="libs/jquery-3.1.1.min.js"></script>
<script src="libs/howler.js"></script>
<script src="src/player.js"></script>
<script src="src/controller.js"></script>
</head>
<body>
<header>
<h2>Soundboard | VCP Kurhessen</h2>
</header>
<div id="pane">
</div>
<script>
$(document).ready(function () {
// Handler for .ready() called.
var controller = new Controller();
controller.setup();
});
</script>
<footer>
<a href="https://vcp-kurhessen.info/impressum-2/">Impressum & Datenschutzerklärung</a> |
<a href="https://github.com/seeseekey/Soundboards">A simple HTML5 soundboard (github.com/seeseekey)</a>
</footer>
</body>
</html>