-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (81 loc) · 3.06 KB
/
index.html
File metadata and controls
81 lines (81 loc) · 3.06 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Music Player - DevChallenges</title>
</head>
<body>
<main>
<div class="player-card">
<figure class="player-card__cover">
<img src="/cover-1.png" alt="Cover" />
</figure>
<header class="player-card__info">
<h2 class="player-card__title">Lost in the City Lights</h2>
<p class="player-card__author">Cosmo Sheldrake</p>
</header>
<section class="player-card__progress progress">
<span class="progress__marks">
<span class="player-card__current-time">00:00</span>
<span class="player-card__duration">01:12</span>
</span>
<input
aria-label="Play time progress"
id="progress-bar"
class="progress__bar"
type="range"
max="72"
/>
</section>
<section class="player-card__controls">
<button id="control-prev" class="player-card__control">
<svg width="32" height="32" fill="none">
<path
d="m17.814 14.252 5.881-3.268c1.333-.74 2.972.223 2.972 1.748v6.536c0 1.525-1.639 2.489-2.972 1.748l-5.881-3.268c-1.372-.762-1.372-2.734 0-3.496Z"
fill="currentColor"
/>
<path
d="M10.667 22.667V9.333M5.333 22.667V9.333"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
/>
</svg>
</button>
<button id="control-play-pause" class="player-card__control">
<svg id="play-icon" width="24" height="24" fill="none">
<path
d="M6 4v16a1 1 0 0 0 1.524.852l13-8a1 1 0 0 0 0-1.704l-13-8A1 1 0 0 0 6 4z"
fill="currentColor"
/>
</svg>
<svg id="pause-icon" width="24" height="24" fill="none">
<path
d="M9 4H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zM17 4h-2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z"
fill="currentColor"
/>
</svg>
</button>
<button id="control-next" class="player-card__control">
<svg width="32" height="32" fill="none">
<path
d="m14.186 14.252-5.881-3.268c-1.333-.74-2.972.223-2.972 1.748v6.536c0 1.525 1.639 2.489 2.972 1.748l5.881-3.268c1.372-.762 1.372-2.734 0-3.496Z"
fill="currentColor"
/>
<path
d="M21.333 22.667V9.333M26.667 22.667V9.333"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
/>
</svg>
</button>
</section>
</div>
</main>
<audio id="song"></audio>
<script type="module" src="/src/main.js"></script>
</body>
</html>