-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththu vien.html
78 lines (75 loc) · 2.95 KB
/
thu vien.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thư viện nhạc</title>
<link rel="stylesheet" href="thu vien.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<!-- Sidebar -->
<div class="sidebar">
<div class="logo">
<h2>Zing <span>mp3</span></h2>
</div>
<ul class="menu">
<a> 🎵Thư Viện</a><br>
<a> 🔍Khám Phá</a><br>
<a> 📻Radio</a><br>
<a> 📋Chủ Đề & Thể Loại</a><br>
<a href="top 10.html">⭐Top 10</a><br>
</ul>
<button class="create-playlist">+ Tạo playlist mới</button>
</div>
<!-- Main Content -->
<div class="main-content">
<header>
<div class="search-bar">
<input type="text" placeholder="Tìm kiếm bài hát, nghệ sĩ, lời bài hát...">
</div>
<button class="upgrade">Nâng cấp tài khoản</button>
<button class="windows-app">Tải bản Windows</button>
<div class="user-profile">
<img src="https://via.placeholder.com/40" alt="User Avatar">
</div>
</header>
<section class="library">
<h2>Thư viện</h2>
<div class="tabs">
<button class="active">BÀI HÁT</button>
<button>ALBUM</button>
<button>MV</button>
</div>
<div class="filters">
<button class="active">YÊU THÍCH</button>
<button>ĐÃ TẢI LÊN</button>
</div>
<!-- Music List -->
<table class="music-table">
<thead>
<tr>
<th>BÀI HÁT</th>
<th>ALBUM</th>
<th>THỜI GIAN</th>
</tr>
</thead>
<tbody>
<tr>
<td>ANH ĐÃ LÀM GÌ ĐÂU (feat. Nhật Hoàng & Thùy Chi)</td>
<td>RAP VIỆT 2024, Tập 12 (EP)</td>
<td>04:57</td>
</tr>
<tr>
<td>CẦN YÊU (feat. Coldzy & VCC Left Hand)</td>
<td>RAP VIỆT 2024, Tập 10 (EP)</td>
<td>03:50</td>
</tr>
</tbody>
</table>
</section>
</div>
</div>
</body>
</html>