-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathindex.new.html
More file actions
61 lines (61 loc) · 2.37 KB
/
index.new.html
File metadata and controls
61 lines (61 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Awesome MP3 Player</title>
<link rel="shortcut icon" type="image/x-icon" href="./images/icon.png" />
<link rel="stylesheet" href="./style.css">
<script src="./scripts/player.js"></script>
<script src="./scripts/index.new.js" defer></script>
</head>
<body>
<h1>Awesome Player!!!</h1>
<div id="add-section">
<h2>Add a new song</h2>
<div id="inputs">
<input name="title" placeholder="Title">
<input name="album" placeholder="Album">
<input name="artist" placeholder="Artist">
<input name="duration" placeholder="Duration (mm:ss)">
<input name="cover-art" placeholder="Cover art link">
</div>
<button id="add-button">Add</button>
</div>
<div id="songs">
<h2>Songs</h2>
<div class="list">
<!-- <div class="song">
<div class="left">
<img class="cover-art" src="./images/cover_art/jinjer_vortex.jpg">
<div class="song-details">
<span class="title">Vortex</span>
<span class="album">Wallflowers</span>
<span class="artist">Jinjer</span>
</div>
</div>
<div class="right">
<div class="song-duration">04:02</div>
<div class="song-actions">
<button class="play-button">Play</button>
<button class="remove-button">Remove</button>
</div>
</div>
</div> -->
</div>
</div>
<div id="playlists">
<h2>Playlists</h2>
<div class="list">
<!-- <div class="playlist">
<div class="left">
<span class="name">Metal</span>
</div>
<div class="right">
<span class="playlist-length">4 songs</span>
<span class="playlist-duration">25:36</span>
</div>
</div> -->
</div>
</div>
</body>
</html>