-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmultiple_note_inputs V2.html
More file actions
69 lines (62 loc) · 2.13 KB
/
multiple_note_inputs V2.html
File metadata and controls
69 lines (62 loc) · 2.13 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Multiple Note Inputs</title>
<!-- Include Bootstrap CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="bg-light">
<div class="container py-4">
<h1 class="mb-4">Multiple Note Inputs</h1>
<div class="card mb-4">
<div class="card-header">
<strong>Step 1: Perfect Octave</strong>
</div>
<div class="card-body">
<p class="card-text">What note is a perfect octave above B4?</p>
<div class="form-group mb-3">
<!-- The Notepicker -->
<div id="notepicker1"></div>
</div>
<div id="staff1" class="my-3"></div>
</div>
</div>
<div class="card mb-4">
<div class="card-header">
<strong>Step 2: Octave and a Fifth</strong>
</div>
<div class="card-body">
<p class="card-text">What note is an octave and a fifth above B4?</p>
<div class="form-group mb-3">
<!-- The Notepicker -->
<div id="notepicker2"></div>
</div>
</div>
</div>
<div class="card mb-4">
<div class="card-header">
<strong>Step 3: Identify the Note</strong>
</div>
<div class="card-body">
<p class="card-text">What is the note?</p>
<div class="form-group mb-3">
<!-- The Notepicker -->
<div id="notepicker3"></div>
</div>
</div>
</div>
</div>
<!-- Scripts -->
<script src="vexflow-min.js"></script>
<script src="tonal.min.js"></script>
<script src="multiple_note_inputs V2.js"></script>
<script>
n = new NotePicker("notepicker1", "staff1", 'B', '5')
</script>
<!-- Bootstrap JS and dependencies -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
>
</script>
</body>
</html>