-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (55 loc) · 1.78 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
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
<!doctype html>
<html>
<head>
<title>Birdcabulary</title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<!-- <script src="js/playSound.js"></script> -->
<link rel="stylesheet" href="css/styles-2-0.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h1>Birdcabulary</h1>
<div id="selector_page">
<div id="selector_wrapper">
<p id="prompt">Test your Ontario bird sound knowledge.</p>
<p>This is currently a work in progress. <a href="about.html">About project.</a></p>
<div id="checkboxes">
<h3>Select sound type:</h3>
<div id="sound_types_response">
<input id = "songs" class="sound_type_box" type="checkbox" name="Songs" checked="checked">
<label for="songs">Songs</label>
<input id= "calls" class="sound_type_box" type="checkbox" name="Calls">
<label for="calls">Calls</label>
<p>If a sound type is not available for the species, the other type will be played instead.</p>
</div>
<h3>Select bird families or packs:</h3>
<div id="family_response">
<!-- This div will be automatically filled with bird families -->
</div>
</div>
</div>
</div>
<div id="main_page">
<audio id="audio"></audio>
<div id="top_wrapper">
<div id="top_content">
<div id="response">Good luck!</div>
<div id="prevCorrect">Starting now...</div>
</div>
</div>
<div id="citation_wrapper">
<div id="citation_content">
<div id="citation"></div>
</div>
</div>
<div id="button_wrapper">
<div id="mcButtons" class="btn-group">
<button id="start-button">Play</button>
</div>
</div>
</div>
</body>
<script src="js/sound-manager-2-0.js"></script>
<footer id="footer">
</footer>
</html>