-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathresults.html
More file actions
34 lines (34 loc) · 768 Bytes
/
Copy pathresults.html
File metadata and controls
34 lines (34 loc) · 768 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<title>Results</title>
<head>
<h2>Your Vocal Range Results</h2>
<body>
<table style="width:100%">
<tr>
<th>Female Voice Types</th>
<th>Male Voice Types</th>
</tr>
<tr>
<td>Soprano (C4-C6)</td>
<td>Countertenor (E3-E5)</td>
</tr>
<tr>
<td>Mezzo-soprano (A3-A5)</td>
<td>Tenor (C3-C5)</td>
</tr>
<tr>
<td>Contralto (F3-F5)</td>
<td>Baritone (A2-A4)</td>
</tr>
<tr>
<td></td>
<td>Bass (E2-E4)</td>
</tr>
</table>
<button onclick="location.href = 'index.html'">Restart</button>
</body>
<script src="results.js"></script>
</html>