-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
44 lines (34 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hey! Listen!</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="shortcut icon" type="image/png" href="assets/img/ocarina.png"/>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header>
<h2 class="hidden">It's dangerous to go alone...</h2>
<h1 class="hidden">Take This!</h1>
</header>
<img class="hidden" id="ocarinaPic" src="assets/img/ocarina-of-time-png-6.png" alt="Link's ocarina">
<div id="keyIconContainer">
Y
X
A
L
R
<i class='fa fa-arrow-left'></>
<i class='fa fa-arrow-up'></>
<i class='fa fa-arrow-right'></>
<i class='fa fa-arrow-down'></>
S
</div>
<!--******** SONGS ************-->
<audio id="correctSeqSound" src="assets/audio/OOT_Song_Correct.wav" type="audio/wav"></audio>
<audio id="correctSeqSong" src="" type="audio/mp3"></audio>
<script src="js/jquery-2.2.4.js"></script>
<script src="js/script.js"></script>
</body>
</html>