-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·61 lines (60 loc) · 2.03 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/estilo.css">
<title>Drum Metal</title>
</head>
<body>
<!--div id="loader"></div-->
<div id="main">
<header>
<h1>Drum Metal</h1>
</header>
<div class="abertura">
<h1>Abertura</h1>
</div>
<div class="bateria">
<!-- CAIXA -->
<span>C</span>
<span>V</span>
<!-- TOM1 -->
<span>A</span>
<span>S</span>
<!-- TOM2 -->
<span>D</span>
<span>F</span>
<!-- SURDO -->
<span>G</span>
<span>H</span>
<!-- CIMBAL ABERTO -->
<span>I</span>
<!-- CIMBAL FECHADO -->
<span>J</span>
<!-- PEDAL -->
<span>Z</span>
<span>X</span>
<!-- PRATO CONDUÇÃO -->
<span>R</span>
<!-- PRATO SPLASH -->
<span>T</span>
<!-- PRATO SHINE -->
<span>Y</span>
</div>
<div class="jukebox">
<!-- <input type="submit" value="Inicio"> -->
<img id='loader' src='img/loader.gif' style='display:none'/>
<button id="ini" onclick="loadMusicIni('Black Sabbath - Paranoid .mp3')">Black Sabbath - Paranoid </button>
<button id="ini" onclick="loadMusicIni('Bon Jovi - Living on a prayer.mp3')">Bon Jovi - Living on a prayer</button>
<button id="ini" onclick="loadMusicIni('Megadeth - Holy Wars.mp3')">Megadeth - Holy Wars</button>
<button id="ini" onclick="loadMusicIni('Metallica - Master of Puppets.mp3')">Metallica - Master of Puppets</button>
<!-- <img src="img/" alt=""> -->
</div>
<footer>
</footer>
</div>
<script src="js/jquery.js"></script>
<script src="js/howler.js"></script>
<script src="js/script.js"></script>
</body>
</html>