-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (39 loc) · 1.37 KB
/
index.html
File metadata and controls
45 lines (39 loc) · 1.37 KB
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
<!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">
<title>Player App</title>
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body>
<div class="player__wrapper">
<div class="player__area">
<div class="player">
<div class="player__thumbnail-wrapper">
<div class="player__thumbnail" style="background-image: url(assets/image/album-cover.jpg)" thumbnail>
</div>
<div class="player__shadow"></div>
</div>
<div class="player__controls">
<div class="player__back" back></div>
<div class="player__play" play></div>
<div class="player__forward" forward></div>
</div>
</div>
<div class="player__outline" play-outline>
<audio id="audio" src="https://freesound.org/data/previews/410/410539_1900515-lq.mp3"></audio>
<div class="player__info__wrapper">
<div class="player__song">
<p class="player__song__name">Flume</p>
<span class="player__album__name">Say It</span>
</div>
<progress class="player__increment" id="progress" value="0" max="100"></progress>
</div>
</div>
</div>
</div>
<script src="assets/script/main.js"></script>
</body>
</html>