forked from sarahgreisdorf/CodeDay-DC-November
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<title>Note.js</title>
<link rel="stylesheet" href="styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<h1 class="text-center">Note.js</h1>
<p class="text-center">Our project takes text and uses the frequently used words to randomly generate music. Enter your text below to hear your song!</p>
<textarea rows="4" cols="50" id="text-area" placeholder="Please copy and paste your text here"></textarea>
<div class="text-center">
<select id="instrument">
<option disabled selected>Select an Instument</option>
<option value="guitar">Guitar (single notes)</option>
<option value="chord">Guitar (chords)</option>
<option value="piano">Piano</option>
</select>
<button id="submit-button">Submit</button>
<form id='timeInterval'>
Time Interval:<br>
<input id='timeInterval' type="number" time="Time Interval">
<br>
</form>
</div>
</body>
</html>