forked from ericcarraway/metric-modulation-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (62 loc) · 2.2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>metric modulation calculator</title>
<link href="../skeleton.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="one-half column">
<img src="../img/eighth-note.png" alt="eighth-note">
<input id="eighth-note" min="1" type="number" value="216">
<span class="bpm">BPM</span>
</div>
<div class="one-half column">
<img src="../img/dotted-eighth-note.png" alt="dotted-eighth-note">
<input id="dotted-eighth-note" min="1" type="number" value="144">
<span class="bpm">BPM</span>
</div>
</div><!--/.row -->
<div class="row">
<div class="one-half column">
<img src="../img/quarter-note.png" alt="quarter-note">
<input id="quarter-note" min="1" type="number" value="108">
<span class="bpm">BPM</span>
</div>
<div class="one-half column">
<img src="../img/dotted-quarter-note.png" alt="dotted-quarter-note">
<input id="dotted-quarter-note" min="1" type="number" value="72">
<span class="bpm">BPM</span>
</div>
</div><!--/.row -->
<div class="row">
<div class="one-half column">
<img src="../img/half-note.png" alt="half-note">
<input id="half-note" min="1" type="number" value="54">
<span class="bpm">BPM</span>
</div>
<div class="one-half column">
<img src="../img/dotted-half-note.png" alt="dotted-half-note">
<input id="dotted-half-note" min="1" type="number" value="36">
<span class="bpm">BPM</span>
</div>
</div><!--/.row -->
<div class="row logo">
<a href="https://www.facebook.com/percussiosoftware/">
<img src="../img/logo.svg" alt="percuss.io">
</a>
</div><!--/.row logo -->
<div class="row">
<a href="../subdivision">
see also: subdivision calculator (beta)
</a>
</div>
</div><!--/.container -->
<script src="script.js"></script>
</body>
</html>