-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.html
62 lines (53 loc) · 1.96 KB
/
library.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
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Library | Shuffle</title>
<link rel="stylesheet" href="css/library-style.css">
<link rel="icon" type="image/x-icon" href="logo only.svg">
</head>
<body>
<div class="spotify-layout">
<!-- Sidebar -->
<aside class="sidebar">
<img src="icon-logo.svg" alt="Logo">
<nav>
<ul>
<li><a href="Shuffle.html"><i class='bx bxs-home'></i> Home</a></li>
<li><a href="library.html"><i class='bx bx-library'></i> Library</a></li>
<li><a href="muisc.html"><i class='bx bx-library'></i> Music </a></li>
</ul>
</nav>
</aside>
<!-- Main Content -->
<main class="main-content">
<h2>Your Library</h2>
<!-- Button to Open Modal -->
<a href="#create-playlist-modal" class="create-playlist">
<span>Create Playlist</span>
</a>
<!-- Playlists -->
<div class="playlist-grid">
<div class="playlist-card">
<img src="images/sad.jpg" alt="Playlist Cover">
<span>Sad</span>
</div>
<div class="playlist-card">
<img src="images/rock.jpg" alt="Playlist Cover">
<span>Rock</span>
</div>
</div>
</main>
<!-- Modal -->
<div id="create-playlist-modal" class="modal">
<div class="modal-content">
<label for="playlist-name">Name your playlist</label>
<input type="text" id="playlist-name" placeholder="Playlist Name">
<button>Add Playlist</button>
<a href="#" class="modal-close">Cancel</a>
</div>
</div>
</div>
</body>
</html>