-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
31 lines (30 loc) · 1.27 KB
/
popup.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
<!DOCTYPE html>
<html lang=en style="min-width: 440px;">
<head>
<meta charset=utf-8>
<link rel="stylesheet" href="button.css">
</head>
<body>
<div>
<h1 class="title">Simple Violin Tuner</h1>
<div class="tuner-button-box">
<button class="tuner-button stopped" id="tuner-1"><img src="images/btn-play.png" alt="▶"></button>
<p>G3 <small>196 Hz</small></p>
</div>
<div class="tuner-button-box">
<button class="tuner-button stopped" id="tuner-2"><img src="images/btn-play.png" alt="▶"></button>
<p>D4 <small>293.66 Hz</small></p>
</div>
<div class="tuner-button-box">
<button class="tuner-button stopped" id="tuner-3"><img src="images/btn-play.png" alt="▶"></button>
<p>A4 <small>440 Hz</small></p>
</div>
<div class="tuner-button-box">
<button class="tuner-button stopped" id="tuner-4"><img src="images/btn-play.png" alt="▶"></button>
<p>E5 <small>659.25 Hz</small></p>
</div>
<p><a href="info/info.html" target="_blank">About..</a></p>
</div>
<script src="popup.js"></script>
</body>
</html>