-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathindex.html
41 lines (34 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./styles.css">
<title>Virtual Guitar</title>
</head>
<body>
<div class="heading"> <h1>~ Virtual Instrument ~</h1></div>
<div class="settings">
<label for="instrument-selector">Selected instrument:</label>
<select name="instrument-selector" id="instrument-selector"></select>
<div class="accidental-selector">
<input type="radio" class="acc-select" id="flats" name="accidentals" value="flats" checked>
<label for="flats">♭</label>
<input type="radio" class="acc-select" id="sharps" name="accidentals" value="sharps">
<label for="flats">♯</label>
</div>
<label for="number-of-frets">Number of frets: </label>
<input type="number" id="number-of-frets" min="5" max="30" value="20">
<label for="show-all-notes">Show all notes: </label>
<input type="checkbox" id="show-all-notes">
<label for="show-multiple-notes">Show multiple notes: </label>
<input type="checkbox" id="show-multiple-notes">
</div>
<div class="fretboard">
</div>
<div class="note-name-section">
</div>
<script src="./app.js"></script>
</body>
</html>