-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (34 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Audio player</title>
</head>
<body>
<main>
<img src="https://dl.dropboxusercontent.com/s/toqmleehd71hsnc/MVIMG_20180708_155604%20%281%29.jpg?dl=0"
alt="Black and white ocean waves">
<div class="left-container">
<div class="audio-info">
<h1 class="song-title words"></h1>
<h3 class="artist-name words">eddiepearson</h3>
</div>
<i class="material-icons rewind">replay_30</i>
<!-- <i class="material-icons play">play_circle_filled</i> -->
<i class="material-icons fast-forward">forward_30</i>
<div class="buttons">
<button data-key="81" class="key" id="key1">Q</button>
<button data-key="87" class="key" id="key2">W</button>
<button data-key="69" class="key" id="key3">E</button>
</div>
</div>
</main>
<audio data-key="81" class="songs" id="song1" src="songs\Automation city master.mp3"></audio>
<audio data-key="87" class="songs" id="song2" src="songs\Changing it master.mp3"></audio>
<audio data-key="69" class="songs" id="song3" src="songs\finding her soundtrack.mp3"></audio>
<script src="app.js"></script>
</body>
</html>