-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
51 lines (40 loc) · 1.44 KB
/
index.php
File metadata and controls
51 lines (40 loc) · 1.44 KB
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
<!DOCTYPE HTML>
<!--[if lt IE 7]><html class="lt-ie9 lt-ie8 lt-ie7"><![endif]-->
<!--[if IE 7]><html class="lt-ie9 lt-ie8"><![endif]-->
<!--[if IE 8]><html class="lt-ie9"><![endif]-->
<!--[if gt IE 8]><!--><html class=""><!--<![endif]-->
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- could combine the bootstrap CSS files, if we're always going to use both -->
<link rel="stylesheet" href="_css/bootstrap.min.css" />
<link rel="stylesheet" href="_css/bootstrap-responsive.min.css" />
<link rel="stylesheet" href="_css/style.css" />
<title>A Piano Example</title>
</head>
<body>
<div class="container">
<div class="row-fluid">
<div id="keyboard">
<div class="keys"></div>
</div>
</div>
<div class="row-fluid">
<h5>Play Log</h5>
<div id="log"><pre>[ Click the keys above ]</pre></div>
<div class="controls">
<a class="btn btn-success replay" data-fn="play">Play</a>
<a class="btn btn-warning reset" data-fn="reset">Reset</a>
</div>
</div>
</div>
<div id="buttons"></div>
<script src="_js/riff.js"></script>
<script src="_js/audio.js"></script>
<!-- could pull from a CDN like google's to make it load faster -->
<script src="_js/jquery.js"></script>
<script src="_js/modernizr.min"></script>
<script src="_js/script.js"></script>
</body>
</html>