forked from bychen9/vocal-range-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 913 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<title>Vocal Range Dector Homepage</title>
</head>
<h1>Vocal Range Detector</h1>
<body>
<p id="determine">Determine your vocal range.</p>
<button id="begin" onclick="location.href = 'first-step.html'">Begin!</button>
<br>
<br>
<br>
<div id="steps">
<p><u>Steps</u></p>
<ol>
<li>Base Note</li>
<ul>
<li>Sing a comfortable note near the middle of your voice range</li>
</ul>
<br>
<li>Sing Higher</li>
<ul>
<li>Sing from your base note to the top of your vocal range</li>
</ul>
<br>
<li>Sing Lower</li>
<ul>
<li>Sing from your base note to the bottom of your vocal range</li>
</ul>
</ol>
<br>
<br>
<br>
</div>
</body>
</html>