-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 955 Bytes
/
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
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Terry Soundboard</title>
<style src="styles.css" type="text/css"></style>
</head>
<body>
<header>
<h1>Terry</h1>
<p>Info</p>
</header>
<section class="soundboard ">
<div class="soundboard-item" data-source="Leave-It-1.mp3" data-id="leave-it-1">
Leave it
</div>
<div class="soundboard-item" data-source="Jaeger-Bomb-1.mp3" data-id="jaeger-bomb-1">
Jaeger Bomb
</div>
</section>
<footer>
Made by...
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js" type="text/javascript" ></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/SoundJS/0.6.0/soundjs.min.js" type="text/javascript"></script>
<script src="main.js" type="text/javascript"></script>
<script type="text/javascript">
$(main);
</script>
</body>
</html>