-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (57 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guitar Fretboard</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- SETTINGS SECTION -->
<div class="settings">
<!-- INSTRUMENT SELECTOR -->
<label for="instrument-selector">Selected Instrument:</label>
<select name="instrument-selector" id="instrument-selector"></select>
<!-- ACCIDENTALS -->
<div class="accidental-selector">
<div class="accidentalHeading">
<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>
</div>
<!-- NUMBER OF FRETS -->
<label for="number-of-frets">Number of frets</label>
<input type="number" id="number-of-frets" min="5" max="22" value="12">
<!-- SHOW ALL NOTES -->
<div class="showAllNotes">
<label for="show-all-notes">Show all notes: </label>
<input type="checkbox" id="show-all-notes">
</div>
<!-- MULTIPLE NOTES -->
<!-- CREATE FUNCTION TO BE ABLE TO SELECT MULTIPLE NOTES -->
<!-- Eventually be able to select notes and possible chord name will be shown -->
<!-- <label for="show-multiple-notes">Show multiple notes: </label>
<input type="checkbox" id="show-multiple-notes"> -->
</div>
<!-- NOTE SECTION -->
<div class="center-container">
<div class="note-section-container">
<div class="note-name-section"></div>
</div>
</div>
<!-- FRETBOARD SECTION -->
<div class="fretboard-container">
<div class="fretboard"></div>
</div>
<br>
<!-- CHORD NAME SECTION -->
<div class="center-container">
<div class="chord-section-container">
<div class="chord-name-section"></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>