-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiscover.html
336 lines (317 loc) · 10.8 KB
/
discover.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
<!DOCTYPE html>
<html lang="en">
<head>
<title>Discover Page</title>
<!--? META -->
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
<meta content="utf-8" http-equiv="encoding" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Discover new rock/metal artists by navigating our website."
/>
<link rel="shortcut icon" href="#" />
<!--? STYLES -->
<link rel="stylesheet" href="CSS/main.css" />
<link rel="stylesheet" href="CSS/discover.css" />
<link rel="stylesheet" href="CSS/music-player.css" />
<!--? FONTS -->
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&family=Teko:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<!--? ICONS -->
<script
src="https://kit.fontawesome.com/c0594c7b16.js"
crossorigin="anonymous"
></script>
</head>
<body>
<!--? NAVIGATION -->
<header>
<nav class="navigation" id="navigation">
<a aria-label="logo" href="index" class="logo">SoundCrash®</a>
<ul class="nav-links">
<li><a aria-label="homepage" href="index">home</a></li>
<li>
<a aria-label="discover page" class="current" href="discover"
>discover</a
>
</li>
<li>
<a aria-label="upcoming page" href="upcoming">upcoming</a>
</li>
<div class="menu-social-media">
<a
href="www.facebook.com/soundcrash"
aria-label="official facebook page"
><i class="fab fa-facebook-square"></i
></a>
<a
href="www.instagram.com/soundcrash"
aria-label="official instagram page"
><i class="fab fa-instagram"></i
></a>
<a
href="www.twitter.com/soundcrash"
aria-label="official twitter page"
><i class="fab fa-twitter"></i
></a>
</div>
</ul>
<div class="burger-menu">
<span class="menu-bar one"></span>
<span class="menu-bar two"></span>
</div>
</nav>
</header>
<!--? DISCOVER VIDEOS -->
<main>
<h1>discover</h1>
<!--? Elwood Stray - Decay -->
<div class="video-wrapper">
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/Soyu81e_3fY"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
<div class="video-info">
<div class="video-desc-wrap">
<h2>Stoneside</h2>
<p class="video-desc" id="video-desc">
<span>Track:</span> History of Violence<br />
<span>Record:</span> Self-titled<br />
<span>Label:</span> Independent
</p>
<div class="video-info-btn-wrapper">
<i class="fab fa-youtube"></i>
<a
href="https://www.youtube.com/@OutOfLineMusic"
target="_blank"
rel="noreferrer"
>Youtube</a
>
</div>
</div>
<span class="num-system">#01</span>
</div>
</div>
<!--? Thornhill - Where We Go When We Die -->
<div class="video-wrapper">
<iframe
loading="lazy"
title="Thornhill Where We Go When We Die video"
width="560"
height="315"
src="https://www.youtube.com/embed/Z3zUGj8LjrU"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
<div class="video-info">
<div class="video-desc-wrap">
<h2>THORNHILL</h2>
<p class="video-desc" id="video-desc">
<span>Track:</span> Where We Go When We Die <br />
<span>Record:</span> The Dark Pool<br />
<span>Label:</span> UNFD
</p>
<div class="video-info-btn-wrapper">
<i class="fab fa-youtube"></i>
<a
href="https://www.youtube.com/channel/UC200qebkD-H4BEaj71s-ijQ"
target="_blank"
rel="noreferrer"
>Youtube</a
>
</div>
</div>
<span class="num-system">#02</span>
</div>
</div>
<!--? DADAROMA「雨のワルツ」 -->
<div class="video-wrapper">
<iframe
loading="lazy"
title="dadaroma ame no warutsu video"
width="560"
height="315"
src="https://www.youtube.com/embed/wesjiS_LZww"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
<div class="video-info">
<div class="video-desc-wrap">
<h2>DADAROMA</h2>
<p class="video-desc" id="video-desc">
<span>Track:</span> Ame No Warutsu <br />
<span>Record:</span> SLEEPKILLERS<br />
<span>Label:</span> 雨のワルツ
</p>
<div class="video-info-btn-wrapper">
<i class="fab fa-youtube"></i>
<a
href="https://www.youtube.com/channel/UCt5J9-ldDExXf5PjhwWiLuQ"
target="_blank"
rel="noreferrer"
>Youtube</a
>
</div>
</div>
<span class="num-system">#03</span>
</div>
</div>
</main>
<!--? MUSIC PLAYER -->
<div class="player-area-wrapper">
<h3>music station</h3>
<div class="player-area">
<span>open player</span>
<i class="far fa-play-circle"></i>
<i class="far fa-times-circle"></i>
</div>
</div>
<div class="page-wrap">
<!--? OUTER WRAP -->
<div class="player-overall-wrapper">
<!--? IMG WRAPPER -->
<div class="artist-img-wrapper">
<img src="/Pics/mp_aic.jpg" alt="artist-pic" />
</div>
<!--? CONTROL PANNEL WRAPPER -->
<div class="outer-control-wrapper">
<!--? PROGRESS BAR -->
<div class="progress-bar-wrapper">
<div class="progress-bar"></div>
</div>
<i class="fas fa-arrows-alt-v"></i>
<!--? SONG TITLE -->
<span class="song-title">SONG TITLE</span>
<!--? CONTROLS -->
<div class="controls">
<!--? prev button -->
<button class="prev-btn">
<i class="fas fa-backward"></i>
</button>
<!--? play button -->
<button class="play-btn">
<i class="fas fa-play"></i>
</button>
<!--? forward button -->
<button class="next-btn">
<i class="fas fa-forward"></i>
</button>
</div>
</div>
<div class="song-menu-wrapper">
<span><i class="fas fa-bars"></i></span>
<div class="song-menu"></div>
</div>
<audio src="/Music/alice_in_chains.mp3"></audio>
</div>
</div>
<!--? MUSIC PLAYER //// -->
<!--? HONORABLE MENTIONS -->
<aside class="honorable-mentions" id="honorable-mentions">
<h1>honorable mentions</h1>
<!--? SIDE COLUMN -->
<div class="record-menu">
<div class="record-menu-open"><i class="fas fa-chevron-up"></i></div>
<div class="side-view">
<h3>top 4</h3>
<div class="side-view-img-wrap" aria-label="alice in chains band">
<img
src="./Pics/aic.jpg"
alt="alice in chains album cover"
data-value="one"
/>
</div>
<div class="side-view-img-wrap" aria-label="jinjer band">
<img
src="./Pics/jinjer.jpg"
alt="jinjer album cover"
data-value="two"
/>
</div>
<div class="side-view-img-wrap" aria-label="mushroomhead band">
<img
src="./Pics/mushroomhead.jpg"
alt="mushroomhead album cover"
data-value="three"
/>
</div>
<div class="side-view-img-wrap" aria-label="love and death band">
<img
src="./Pics/love-and-death.PNG"
alt="love and death album cover"
data-value="four"
/>
</div>
</div>
</div>
<!--? MAIN DISPLAY -->
<div class="inner-wrap">
<h2 class="record-title">black gives way to blue</h2>
<h3 class="artist-title">alice in chains</h3>
<div class="artist-slot" id="record-output">
<div class="img-wrap" aria-label="artist-album-cover">
<img src="" alt="band album cover" />
</div>
<div class="artist-record-container">
<div class="artist-info-wrap one">
<h3></h3>
<p class="artist-info">
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vitae
corporis laborum doloremque temporibus nihil non voluptate modi
qui odit consequuntur.
</p>
</div>
<div class="record-tracklist"></div>
</div>
</div>
</div>
</aside>
<div class="back-to-top-container">
<a aria-label="back to top of page" class="back-to-top" href="#navigation"
>back to top<i class="fas fa-angle-double-up"></i>
</a>
</div>
<!--? FOOTER -->
<footer class="footer">
<a aria-label="footer logo" href="index" class="logo">SoundCrash®</a>
<div class="footer-wrap">
<div class="bottom-links-wrap">
<div class="bottom-links">
<a
aria-label="terms and agreements"
href="#"
class="bottom-link terms"
>Terms & Agreements</a
>
<a
aria-label="subscribe to newsletter"
href="subscribe"
class="bottom-link subscribe"
id="subscribe"
>Subscribe</a
>
</div>
<p>SoundCrash™ all rights reserved 2021</p>
</div>
</div>
</footer>
<script src="./JS/app.js"></script>
<script src="./JS/discover.js"></script>
<script src="./JS/music-player.js"></script>
</body>
</html>
<!-- * designed and developed by Andre Ferreira @ www.andreferreiradev.com * -->