-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
752 lines (704 loc) · 26.9 KB
/
index.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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Music player</title>
<link rel="shortcut icon" href="images/musicIcon.jpg">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Kanit:300|Maven+Pro&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Arvo|Inconsolata|Noto+Serif|Slabo+27px|Varela+Round&display=swap" rel="stylesheet">
</head>
<body class = "flex-col">
<!-- header for navigation bar -->
<header>
<nav>
<ul class = "navigation-bar flex-row align-items-center">
<!-- ninja sudio symbol -->
<li class="ninja-studio-symbol">
<i class="fas fa-drum"></i>
<span>Ninja Studio</span>
</li>
<!-- temporary search icon becomes visible in small screens -->
<i class="fas fa-search" id = "search-icon"></i>
<!-- search panel for rest of the screens -->
<li class="search-panel">
<form class="header-search-form">
<button type="submit" name="button"><i class="fas fa-search"></i></button>
<input type="search" name="header-search" id = "header-search" placeholder="Search">
<button type="search" name="voice-search-button"><i class="fas fa-microphone"></i></button>
</form>
</li>
<!-- notification bell icon -->
<li class="bell-icon">
<form class="notification-bell">
<button type="button" name="button"><i class="fas fa-bell"></i></button>
</form>
</li>
<!-- user profile image -->
<li class="user-profile">
<img src="images/rletter.jpg" alt="profile image">
</li>
<!-- icon to access aside section as it becomes hidden -->
<li class = "aside-access-icon">
<i class="fas fa-bars"></i>
</li>
</ul>
</nav>
</header>
<!-- main section for various section and aside section -->
<main class = "flex-row">
<section id = "main-content" class = "flex-col align-items-center">
<!-- displays section consists of three images-->
<section id = "display-section" class = "flex-row align-items-center">
<div class="display-image one" id = "first">
<img src="images/Mood-Boosters.jpg">
</div>
<div class="display-image" id = "second">
<img src="images/xyz.jpg">
</div>
<div class="display-image two" id = "third">
<img src="images/edm.jpg">
</div>
</section>
<!-- section heading for latest release section -->
<span class = "section-heading">Latest Release</span>
<!-- latest release section -->
<section id = "latest-release" class="flex-col">
<!-- first row of section -->
<div class="row1 flex-row">
<!-- song -->
<div class="songs">
<!-- song image with hoverable play button -->
<div class="song-image play-button">
<i class="fas fa-play"></i>
<img src="images/onism.jpg">
</div>
<!-- song detail -->
<span class="song-detail">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<!-- song options for and time -->
<div class="song-time-options">
<!-- options in the form of table -->
<i class="fas fa-ellipsis-h options-button">
<div class="options">
<table>
<tr>
<td><i class="fas fa-play"></i>Play Now</td>
</tr>
<tr>
<td><i class="fas fa-plus"></i>Add to queue</td>
</tr>
<tr>
<td><i class="fas fa-thumbs-up"></i>Add to favorites</td>
</tr>
<tr>
<td><i class="far fa-question-circle"></i>Get Info</td>
</tr>
</table>
</div>
</i>
<p>4:44</p>
</div>
</span>
</div>
<!-- song -->
<div class="songs">
<!-- song image with hoverable play button -->
<div class="song-image play-button">
<i class="fas fa-play"></i>
<img src="images/onism.jpg">
</div>
<!-- song detail -->
<span class="song-detail">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<!-- song options for and time -->
<div class="song-time-options">
<!-- options in the form of table -->
<i class="fas fa-ellipsis-h options-button">
<div class="options">
<table>
<tr>
<td><i class="fas fa-play"></i>Play Now</td>
</tr>
<tr>
<td><i class="fas fa-plus"></i>Add to queue</td>
</tr>
<tr>
<td><i class="fas fa-thumbs-up"></i>Add to favorites</td>
</tr>
<tr>
<td><i class="far fa-question-circle"></i>Get Info</td>
</tr>
</table>
</div>
</i>
<p>4:44</p>
</div>
</span>
</div>
</div>
<!-- second row of the section -->
<div class="row2 flex-row">
<!-- song -->
<div class="songs">
<!-- song image with hoverable play button -->
<div class="song-image play-button">
<i class="fas fa-play"></i>
<img src="images/onism.jpg">
</div>
<!-- song detail -->
<span class="song-detail">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<!-- song options for and time -->
<div class="song-time-options">
<!-- options in the form of table -->
<i class="fas fa-ellipsis-h options-button">
<div class="options">
<table>
<tr>
<td><i class="fas fa-play"></i>Play Now</td>
</tr>
<tr>
<td><i class="fas fa-plus"></i>Add to queue</td>
</tr>
<tr>
<td><i class="fas fa-thumbs-up"></i>Add to favorites</td>
</tr>
<tr>
<td><i class="far fa-question-circle"></i>Get Info</td>
</tr>
</table>
</div>
</i>
<p>4:44</p>
</div>
</span>
</div>
<!-- song -->
<div class="songs">
<!-- song image with hoverable play button -->
<div class="song-image play-button">
<i class="fas fa-play"></i>
<img src="images/onism.jpg">
</div>
<!-- song detail -->
<span class="song-detail">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<!-- song options for and time -->
<div class="song-time-options">
<i class="fas fa-ellipsis-h options-button">
<div class="options">
<table>
<tr>
<td><i class="fas fa-play"></i>Play Now</td>
</tr>
<tr>
<td><i class="fas fa-plus"></i>Add to queue</td>
</tr>
<tr>
<td><i class="fas fa-thumbs-up"></i>Add to favorites</td>
</tr>
<tr>
<td><i class="far fa-question-circle"></i>Get Info</td>
</tr>
</table>
</div>
</i>
<p>4:44</p>
</div>
</span>
</div>
</div>
</section>
<!-- section heading for popular artists section -->
<span class = "section-heading">Popular Artists</span>
<!-- popular artists section -->
<section id = "popular-artists" class="flex-row">
<!-- artist -->
<a target = "_blank" href="artist page/artist.html">
<!-- artist div for hoverable play button -->
<div class="artist play-button flex-col align-items-center">
<!-- artist image -->
<img src="images/Marshmello.jpg" alt="Marshmello singer">
<span>Marshmello</span>
<i class="fas fa-play"></i>
</div>
</a>
<!-- artist -->
<a target = "_blank" href="artist page/artist.html">
<!-- artist div for hoverable play button -->
<div class="artist play-button flex-col align-items-center">
<!-- artist image -->
<img src="images/Rihanna.jpg" alt="Rihanna singer">
<span>Rihanna</span>
<i class="fas fa-play"></i>
</div>
</a>
<!-- artist -->
<a target = "_blank" href="artist page/artist.html">
<!-- artist div for hoverable play button -->
<div class="artist play-button flex-col align-items-center">
<!-- artist image -->
<img src="images/Ed sheeran.jpg" alt="Ed sheeran singer">
<span>Ed Sheeran</span>
<i class="fas fa-play"></i>
</div>
</a>
<!-- artist -->
<a target = "_blank" href="artist page/artist.html">
<!-- artist div for hoverable play button -->
<div class="artist play-button flex-col align-items-center">
<!-- artist image -->
<img src="images/Lady_Gaga.jpg" alt="Lady gaga singer">
<span>Lady Gaga</span>
<i class="fas fa-play"></i>
</div>
</a>
<!-- artist -->
<a target = "_blank" href="artist page/artist.html">
<!-- artist div for hoverable play button -->
<div class="artist play-button flex-col align-items-center">
<!-- artist image -->
<img src="images/Nick-jonas.jpg" alt="Nick Jonas singer">
<span>Nick Jonas</span>
<i class="fas fa-play"></i>
</div>
</a>
<!-- artist -->
<a target = "_blank" href="artist page/artist.html" class="two">
<!-- artist div for hoverable play button -->
<div class="artist play-button flex-col align-items-center">
<!-- artist image -->
<img src="images/ariana-grande.jpg" alt="Ariana Grande singer">
<span>Ariana</span>
<i class="fas fa-play"></i>
</div>
</a>
</section>
<!-- music stations section -->
<section id = "music-stations" class = "flex-row align-items-center">
<!-- station heading -->
<div class="station-display">
<img src="images/music-station-icon.png">
<span>Stations</span>
</div>
<!-- station -->
<div class="station">
<!-- station image and its name -->
<img src="images/retro1.jpg" alt="Retro">
<span>Retro</span>
</div>
<!-- station -->
<div class="station">
<!-- station image and its name -->
<img src="images/love.jpg" alt="Love">
<span>Love</span>
</div>
<!-- station -->
<div class="station" id = "workout">
<!-- station image and its name -->
<img src="images/workout.jpg" alt="Workout">
<span>Workout</span>
</div>
<!-- station -->
<div class="station">
<!-- station image and its name -->
<img src="images/rock.jpg" alt="Rock">
<span>Rock</span>
</div>
<!-- station -->
<div class="station">
<!-- station image and its name -->
<img src="images/pop.jpg" alt="Pop">
<span>Pop</span>
</div>
<!-- station -->
<div class="station">
<!-- station image and its name -->
<img src="images/chill.jpg" alt="Chill">
<span>Chill</span>
</div>
</section>
<!-- music type section -->
<section id = "music-type" class="flex-row">
<!-- music -->
<div class="music party one flex-row align-items-center">
<span>Party</span>
</div>
<!-- music -->
<div class="music electronic flex-row align-items-center">
<span>Electronic</span>
</div>
<!-- music -->
<div class="music road-trip two flex-row align-items-center">
<span>Road Trip</span>
</div>
</section>
<!-- section heading for latest engilish section -->
<span class = "section-heading">Latest English</span>
<!-- latest English section -->
<section id = "latest-english" class = "flex-row">
<!-- song -->
<div class="holywood-song flex-col">
<!-- song image name and its release date -->
<img src="images/believer.jpg" alt="">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
</div>
<!-- song -->
<div class="holywood-song flex-col">
<!-- song image name and its release date -->
<img src="images/here with me.png" alt="">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
</div>
<!-- song -->
<div class="holywood-song flex-col">
<!-- song image name and its release date -->
<img src="images/I DONT CARE.jpg" alt="">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
</div>
<!-- song -->
<div class="holywood-song flex-col">
<!-- song image name and its release date -->
<img src="images/south side.jpg" alt="">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
</div>
<!-- song -->
<div class="holywood-song flex-col">
<!-- song image name and its release date -->
<img src="images/calma.jpg" alt="">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
</div>
</section>
<!-- section heading for latest hindi section -->
<span class = "section-heading">Latest Hindi</span>
<!-- latest hindi seciton -->
<section id = "latest-hindi" class="flex-row">
<!-- song -->
<div class="holywood-song flex-col">
<!-- song image name and its release date -->
<img src="images/believer.jpg" alt="">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
</div>
<!-- song -->
<div class="holywood-song flex-col">
<!-- song image name and its release date -->
<img src="images/here with me.png" alt="">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
</div>
<!-- song -->
<div class="holywood-song flex-col">
<!-- song image name and its release date -->
<img src="images/I DONT CARE.jpg" alt="">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
</div>
<!-- song -->
<div class="holywood-song flex-col">
<!-- song image name and its release date -->
<img src="images/south side.jpg" alt="">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
</div>
<!-- song -->
<div class="holywood-song flex-col">
<!-- song image name and its release date -->
<img src="images/calma.jpg" alt="">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
</div>
</section>
</section>
<!-- aside section -->
<aside class="flex-col">
<!-- queue text with hoverable option list -->
<span class = "queue-text">
<span>Queue</span>
<span>
<p>Queue</p>
<i class="fas fa-angle-down options-button">
<div class="options">
<table>
<tr>
<td><i class="fas fa-play"></i>Playlists</td>
</tr>
<tr>
<td><i class="fas fa-thumbs-up"></i>Favorite Songs</td>
</tr>
</table>
</div>
</i>
</span>
</span>
<!-- aside section with songs -->
<div class="aside-section flex-col">
<!-- song -->
<div class="queue-song align-items-center">
<p>01</p>
<!-- song image name and its release date -->
<img src="images/believer.jpg">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<i class="far fa-heart"></i>
</div>
<!-- song -->
<div class="queue-song align-items-center">
<p>02</p>
<!-- song image name and its release date -->
<img src="images/believer.jpg">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<i class="far fa-heart"></i>
</div>
<!-- song -->
<div class="queue-song align-items-center">
<p>03</p>
<!-- song image name and its release date -->
<img src="images/believer.jpg">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<i class="far fa-heart"></i>
</div>
<!-- song -->
<div class="queue-song align-items-center">
<p>04</p>
<!-- song image name and its release date -->
<img src="images/believer.jpg">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<i class="far fa-heart"></i>
</div>
<!-- song -->
<div class="queue-song align-items-center">
<p>05</p>
<!-- song image name and its release date -->
<img src="images/believer.jpg">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<i class="far fa-heart"></i>
</div>
<!-- song -->
<div class="queue-song align-items-center">
<p>06</p>
<!-- song image name and its release date -->
<img src="images/believer.jpg">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<i class="far fa-heart"></i>
</div>
<!-- song -->
<div class="queue-song align-items-center">
<p>07</p>
<!-- song image name and its release date -->
<img src="images/believer.jpg">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<i class="far fa-heart"></i>
</div>
<!-- song -->
<div class="queue-song align-items-center">
<p>08</p>
<!-- song image name and its release date -->
<img src="images/believer.jpg">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<i class="far fa-heart"></i>
</div>
<!-- song -->
<div class="queue-song align-items-center">
<p>09</p>
<!-- song image name and its release date -->
<img src="images/believer.jpg">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<i class="far fa-heart"></i>
</div>
<!-- song -->
<div class="queue-song align-items-center">
<p>10</p>
<!-- song image name and its release date -->
<img src="images/believer.jpg">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<i class="far fa-heart"></i>
</div>
<!-- song -->
<div class="queue-song align-items-center">
<p>11</p>
<!-- song image name and its release date -->
<img src="images/believer.jpg">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<i class="far fa-heart"></i>
</div>
<!-- song -->
<div class="queue-song align-items-center">
<p>12</p>
<!-- song image name and its release date -->
<img src="images/believer.jpg">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<i class="far fa-heart"></i>
</div>
<!-- song -->
<div class="queue-song align-items-center">
<p>13</p>
<!-- song image name and its release date -->
<img src="images/believer.jpg">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<i class="far fa-heart"></i>
</div>
<!-- song -->
<div class="queue-song align-items-center">
<p>14</p>
<!-- song image name and its release date -->
<img src="images/believer.jpg">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<i class="far fa-heart"></i>
</div>
<!-- song -->
<div class="queue-song align-items-center">
<p>15</p>
<!-- song image name and its release date -->
<img src="images/believer.jpg">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<i class="far fa-heart"></i>
</div>
<!-- song -->
<div class="queue-song align-items-center">
<p>16</p>
<!-- song image name and its release date -->
<img src="images/believer.jpg">
<div class="song-name-date">
<p>Onism</p>
<p>Aug 11,2017</p>
</div>
<i class="far fa-heart"></i>
</div>
</div>
</aside>
</main>
<!-- footer for song to be played -->
<footer class="flex-row">
<!-- div for image and options for music being played -->
<div class="music-picked align-items-center">
<!-- image of the song -->
<img src="images/south side.jpg">
<!-- song name and its release date -->
<div class="song-name-date">
<p>South side</p>
<p>aug 11,2017</p>
</div>
<!-- like and dislike icons -->
<div class="like-dislike">
<i class="far fa-heart"></i>
<i class="far fa-times-circle"></i>
</div>
</div>
<!-- div for play pause forward backward sync and slider for song are present -->
<div class="play-control align-items-center">
<div class="controls">
<i class="fas fa-random"></i>
<i class="fas fa-step-backward"></i>
<i class="far fa-pause-circle"></i>
<i class="fas fa-step-forward"></i>
<i class="fas fa-sync"></i>
</div>
<!-- slider for indicating part of song remaining -->
<div class="slider flex-row">
<form action="index.html" method="post" class="align-items-center">
<p>1:34</p>
<input id = "s" type="range" name="points" min = "0" max = "4">
<p>4:44</p>
</form>
</div>
</div>
<!-- div for volume controls,desktop icon,icons for increasing volume etc -->
<div class="volume-control align-items-center">
<i class="fas fa-bars"></i>
<i class="fas fa-desktop"></i>
<i class="fas fa-volume-up v"></i>
<!-- slider to indicate current volume for the song -->
<div class="volume-slider">
<form action="index.html" method="post" class="align-items-center">
<input id = "vs" type="range" name="points" min = "0" max = "4">
</form>
</div>
<i class="fas fa-expand"></i>
</div>
</footer>
</body>
</html>