diff options
| author | Brian Cully <bjc@spork.org> | 2025-03-10 11:27:00 -0400 |
|---|---|---|
| committer | Brian Cully <bjc@spork.org> | 2025-03-10 11:27:00 -0400 |
| commit | 7502379641ebb83c7abb317aaf13244e7ae23e08 (patch) | |
| tree | 53a965e6c3ea539d2c40815ca60c760c4993b2d6 | |
| parent | 8437be231fa56aebc8401888cd3d81c0b193a8d6 (diff) | |
| download | chords-7502379641ebb83c7abb317aaf13244e7ae23e08.tar.gz chords-7502379641ebb83c7abb317aaf13244e7ae23e08.zip | |
start tonics from C in key selector
| -rw-r--r-- | index.html | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -100,9 +100,6 @@ <legend>key</legend> <label for='tonic'>tonic:</label> <select id='tonic' name='tonic'> - <option value='A'>A</option> - <option value='A♯'>A♯</option> - <option value='B'>B</option> <option value='C' selected>C</option> <option value='C♯'>C♯</option> <option value='D'>D</option> @@ -112,6 +109,9 @@ <option value='F♯'>F♯</option> <option value='G'>G</option> <option value='G♯'>G♯</option> + <option value='A'>A</option> + <option value='A♯'>A♯</option> + <option value='B'>B</option> </select> <label for='scale'>scale:</label> <select id='scale' name='scale'> |
