-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
48 lines (45 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400' rel='stylesheet' type='text/css'>
<link href='css/d2sc.css' rel='stylesheet' type='text/css'>
<title> Dota 2 ACQ </title>
</head>
<body>
<div class="banner">
Dota 2 Audio Cue Quiz
<div class="subtitle"> Can you recognize these abilities by their audio cues? </div>
</div>
<div class="ability">
<div>
<img id="ability-icon">
</div>
<div id="ability-text"></div>
<label id="cheat">Give me a hint!</label>
<audio autoplay id="ability-player">
<source id="ability-audio" type="audio/mp3">
</audio>
</div>
<div class="reset">
Game over! Try again?
</div>
<div class="score">
<div id="score-text"></div>
<div id="streak-text"></div>
<div id="misses-text"></div>
</div>
<div id="input-box">
<input class="typeahead" type="text" placeholder="Ability name">
</div>
</body>
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/typeahead.js/dist/typeahead.bundle.js"></script>
<script src="bower_components/js-sha256/src/sha256.js"></script>
<script src="js/globals.js"></script>
<script src="js/d2sc.js"></script>
<script src="js/audio-player.js"></script>
<footer>
Chudooder, 2018
<img src="img/GitHub-Mark-Light-32px.png">
</footer>
</html>