-
Notifications
You must be signed in to change notification settings - Fork 0
/
collection.html
141 lines (136 loc) · 3.41 KB
/
collection.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style/collection.css" />
<title>SpinIt! - Collection</title>
</head>
<body>
<header class="shadow">
<div class="shadow header-wrapper">
<img src="assets/icons/Burger.svg" class="menu-icon burger" />
<a href="index.html" aria-label="Accueil" class="logo"
><picture>
<source
srcset="assets/icons/SpinIn-Mobile.svg"
media="(max-width:600px)"
/>
<img src="assets/icons/SpintIt-lineson.svg" alt="Logo de SpinIt!" />
</picture>
</a>
<form>
<input
type="text"
placeholder="recherche..."
name="search"
aria-label="Barre de recherche"
/>
<div id="search-filters">
<ul>
<li>
<input
type="checkbox"
id="artists"
name="artists"
value="artists"
/><label for="artists">Artistes</label>
</li>
<li>
<input
type="checkbox"
id="albums"
name="albums"
value="albums"
/><label for="albums">Albums</label>
</li>
<li>
<input
type="checkbox"
id="songs"
name="songs"
value="songs"
/><label for="songs">Morceaux</label>
</li>
</ul>
</div>
</form>
<div class="menus">
<img
src="assets/icons/Magnifier.svg"
aria-label="Barre de recherche"
class="menu-icon search-icon"
/>
<a
href="#"
class="notification-menu"
aria-label="Menu des notifications"
><img src="assets/icons/Notification-bell.svg" class="menu-icon"
/></a>
<a href="login.html" class="account-menu" aria-label="Menu du compte"
><img src="assets/icons/User.svg" class="menu-icon"
/></a>
</div>
</div>
<nav>
<ul>
<li><a href="#">Populaires</a></li>
<li><a href="#">Récent</a></li>
<li><a href="#">Artistes</a></li>
<li><a href="#">Albums</a></li>
<li><a href="#">Communauté</a></li>
</ul>
</nav>
</header>
<main>
<h2>Collection</h2>
<section>
<div class="collection-filters">
<span>Artists</span>
<span>Album</span>
<span>Date</span>
<span>Date d'ajout</span>
<span>Note</span>
<div>
<img src="assets/icons/Grid.svg" />
<img src="assets/icons/List.svg" />
</div>
</div>
<div class="collection-wrapper">
<div class="element">
<img class="cover-art" src="assets/icons/Record.svg" alt="" />
<div class="info">
<span class="artist">Artist</span>
<span class="album">Album</span>
<span class="date">(Date)</span>
</div>
<div class="actions">
<div class="stars">
<img src="assets/icons/Star-fill.svg" />
<img src="assets/icons/Star-fill.svg" />
<img src="assets/icons/Star-fill.svg" />
<img src="assets/icons/Star-fill.svg" />
<img src="assets/icons/Star-outline.svg" />
</div>
<div>
<img
class="remove-collection"
src="assets/icons/Add.svg"
alt=""
/>
<img
class="add-wishlist"
src="assets/icons/Heart-outline.svg"
alt=""
/>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="lines"></div>
</footer>
</body>
</html>