-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandom_note.html
More file actions
31 lines (31 loc) · 1.06 KB
/
random_note.html
File metadata and controls
31 lines (31 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Notes</title>
<script src="random_note_script.js" defer></script>
<link rel="stylesheet" href="random_note_style.css">
</head>
<body>
<div id="control">
Duration (seconds): <input type="number" id="duration" value="5" min="1" max="60"><br>
<select id="note_set">
<option value="basic">Basic</option>
<option value="sharps">Sharps</option>
<option value="sharps_flats">Sharps and flats</option>
</select>
<br>
<!--<select id="string_set">
<option value="6">6</option>
<option value="5">5 and 6</option>
<option value="4">4 and above</option>
<option value="3">3 and above</option>
<option value="2">2 and above</option>
<option value="1">All</option>
</select>-->
</div>
<div id="content"></div>
<p><a href="index.html">Home</a></p>
</body>
</html>