-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (98 loc) · 3.17 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Guitar Tuner</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" charset="utf-8"></script>
</head>
<body>
<div class="site">
<section class="panel-left">
<!-- <div class="guitar">
<div class="guitar-body"></div>
<div class="guitar-hole"></div> -->
<div class="strings">
<div class="string" data-string="lowe">
<div class="string-line"></div>
<div class="string-button">
<div class="string-name">E</div>
</div>
</div>
<div class="string" data-string="a">
<div class="string-line"></div>
<div class="string-button">
<div class="string-name">A</div>
</div>
</div>
<div class="string" data-string="d">
<div class="string-line"></div>
<div class="string-button">
<div class="string-name">D</div>
</div>
</div>
<div class="string" data-string="g">
<div class="string-line"></div>
<div class="string-button">
<div class="string-name">G</div>
</div>
</div>
<div class="string" data-string="b">
<div class="string-line"></div>
<div class="string-button">
<div class="string-name">B</div>
</div>
</div>
<div class="string" data-string="highe">
<div class="string-line"></div>
<div class="string-button">
<div class="string-name">E</div>
</div>
</div>
</div>
<!-- </div> -->
</section>
<section class="panel-right">
<div class="panel-top">
<h1>Guitar Tuner</h1>
<p>Made by Raoul Simionas</p>
<select class="select-button" name="tuning">
<option value="standard">Standard</option>
<option value="standard">Drop D</option>
</select>
</div>
<div class="panel-bottom">
<div>
<p><svg class="inline-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M22 7v10h-20v-10h20zm2-2h-24v14h24v-14zm-18 3h-3v2h3v-2zm3 0h-2v2h2v-2zm3 0h-2v2h2v-2zm3 0h-2v2h2v-2zm3 0h-2v2h2v-2zm3 0h-2v2h2v-2zm-4 6h-10v2h10v-2zm4-3h-4v2h4v-2zm-14 0h-4v2h4v-2zm3 0h-2v2h2v-2zm3 0h-2v2h2v-2zm3 0h-2v2h2v-2z"/></svg> <!-- Press numbers <span class="key">1</span> through <span class="key">6</span> to play that string. -->Press <span class="key">space</span> to advance. Press <span class="key">enter</span> to stop.</p>
</div>
</div>
</section>
</div>
<section id="audio-files">
<audio id="lowe" loop>
<source src="audio/lowe.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<audio id="a" loop>
<source src="audio/a.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<audio id="d" loop>
<source src="audio/d.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<audio id="g" loop>
<source src="audio/g.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<audio id="b" loop>
<source src="audio/b.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<audio id="highe" loop>
<source src="audio/highe.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</section>
</body>
</html>