-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
47 lines (40 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
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Note detector</title>
</head>
<body>
<h4>A Music note detector</h4>
<main>
<div class="note-wrapper">
<h3 id="a-note">-</h3>
<button class="start-button">Start</button>
<div class="controls">
<button id="control-pause">
<i class="gg-icon gg-play-pause"></i>
</button>
<button id="control-play">
<i class="gg-icon gg-play-button"></i>
</button>
</div>
</div>
<aside>
<div class="card--info">
<header>frequency (hz)</header>
<p id="a-frequency">-</p>
</div>
<div class="card--info">
<header>cents</header>
<p id="a-cents">-</p>
</div>
</aside>
</main>
<footer>
Made by <a href="https://github.com/kyunwang">kyunwang</a> using the
<a href="https://github.com/kyunwang/pitch-analyser">Pitch Analyser </a>
package. Repo <a href="https://github.com/kyunwang/note-detector">here</a>
</footer>
</body>
</html>