-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (33 loc) · 1.47 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="You've met with a terrible fate, haven't you?">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ocarina App</title>
<link rel="stylesheet" href="css/style.css">
<link rel="author" href="humans.txt">
</head>
<body>
<div class="writing">
<div class="symbol"></div>
</div>
<div id="keys" class="keys">
<a href="#top" class="key key-top"></a>
<a href="#left" class="key key-left"></a>
<a href="#right" class="key key-right"></a>
<a href="#btm" class="key key-btm"></a>
<a href="#a" class="key key-a"></a>
</div>
<!-- Sounds -->
<div class="audio"></div>
<div id="instrumental" class="instrumental">
<a href="#" class="active" data-instrument="" data-length="short"><img src="img/ocarina.png" alt=""></a>
<a href="#" data-instrument="pipes_" data-length="med"><img src="img/deku-mask.png" alt=""></a>
<a href="#" data-instrument="drums_" data-length="med"><img src="img/goron-mask.png" alt=""></a>
<a href="#" data-instrument="guitar_" data-length="med"><img src="img/zora-mask.png" alt=""></a>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>