-
Notifications
You must be signed in to change notification settings - Fork 6
/
index_en.html
41 lines (35 loc) · 997 Bytes
/
index_en.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Guitar Tuner</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/content.css">
</head>
<body>
<h1>Free Guitar Tuner</h1>
<div id="content">
<span id="select">Select a String:</span>
<ul>
<li id="corda1" class="cordas">1</li>
<li id="corda2" class="cordas">2</li>
<li id="corda3" class="cordas">3</li>
<li id="corda4" class="cordas">4</li>
<li id="corda5" class="cordas">5</li>
<li id="corda6" class="cordas">6</li>
</ul>
<button id="play">
Tap to play string
</button>
<div id="repeatdiv">
<button id="repeat">
Repeat
</button>
</div>
</div>
<script type="text/javascript" src="js/zepto.min.js"></script>
<script type="text/javascript" src="js/playsound.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>