-
Notifications
You must be signed in to change notification settings - Fork 0
/
piano.html
52 lines (46 loc) · 2.99 KB
/
piano.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<link rel="stylesheet" href="piano.css">
<script src="piano.js" defer></script>
<link rel="shortcut icon" href="./logo.jpg" type="image/jpg">
<title>BeatsBuzz-Play Your Own Piano</title>
</head>
<body>
<header><div >
<a href="./index.html" ><button type="button" style="background-color: black; padding: 10px; border-radius: 4px; color: white;">Back To
Home</button></a>
<div><h1 class="main-title"> <br> Play your own Piano</h1></div>
</div></header>
<div class="piano">
<div data-note="C" class="key white"></div>
<div data-note="Db" class="key black"></div>
<div data-note="D" class="key white"></div>
<div data-note="Eb" class="key black"></div>
<div data-note="E" class="key white"></div>
<div data-note="F" class="key white"></div>
<div data-note="Gb" class="key black"></div>
<div data-note="G" class="key white"></div>
<div data-note="Ab" class="key black"></div>
<div data-note="A" class="key white"></div>
<div data-note="Bb" class="key black"></div>
<div data-note="B" class="key white"></div>
</div>
<audio id="C" src="https://raw.githubusercontent.com/MadBones3/Things/master/paino/notes/C.mp3"></audio>
<audio id="Db" src="https://raw.githubusercontent.com/MadBones3/Things/master/paino/notes/Db.mp3"></audio>
<audio id="D" src="https://raw.githubusercontent.com/MadBones3/Things/master/paino/notes/D.mp3"></audio>
<audio id="Eb" src="https://raw.githubusercontent.com/MadBones3/Things/master/paino/notes/Eb.mp3"></audio>
<audio id="E" src="https://raw.githubusercontent.com/MadBones3/Things/master/paino/notes/E.mp3"></audio>
<audio id="F" src="https://raw.githubusercontent.com/MadBones3/Things/master/paino/notes/F.mp3"></audio>
<audio id="Gb" src="https://raw.githubusercontent.com/MadBones3/Things/master/paino/notes/Gb.mp3"></audio>
<audio id="G" src="https://raw.githubusercontent.com/MadBones3/Things/master/paino/notes/G.mp3"></audio>
<audio id="Ab" src="https://raw.githubusercontent.com/MadBones3/Things/master/paino/notes/Ab.mp3"></audio>
<audio id="A" src="https://raw.githubusercontent.com/MadBones3/Things/master/paino/notes/A.mp3"></audio>
<audio id="Bb" src="https://raw.githubusercontent.com/MadBones3/Things/master/paino/notes/Bb.mp3"></audio>
<audio id="B" src="https://raw.githubusercontent.com/MadBones3/Things/master/paino/notes/B.mp3"></audio>
</body>
</html>