-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (35 loc) · 744 Bytes
/
index.html
File metadata and controls
36 lines (35 loc) · 744 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>
BPM finder
</title>
<link rel='stylesheet' type='text/css' href='bpm.css'>
<script type='text/javascript' src='bpm.js'></script>
</head>
<body>
<div id='ui-container' style='display:inline-block;'>
<div id='info-container' style='display:inline-block;'>
<div id='bpmcontainer'>
<div id='bpm'>
0
</div>
<div id='bpmtitle'>
BPM
</div>
</div>
<div class='otherinfo'>
Tap any key to the beat of
</div>
<div class='otherinfo'>
the music to find its BPM.
</div>
<div class='otherinfo'>
</div>
</div>
<canvas id='graph'>
What're you doing running a browser without canvas support? Get a better browser!
</canvas>
</div>
</body>
</html>