-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMusicPlayerHomePage.html
829 lines (815 loc) · 29.7 KB
/
MusicPlayerHomePage.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
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
<!--DOCTYPE html tells the browser that the document is an html page-->
<!DOCTYPE html>
<!--Begining of html code-->
<html>
<!--Begining of head section-->
<head>
<title>Music Player</title>
<!--Linking the CSS stylesheet using extrenal CSS-->
<link rel="stylesheet" type="text/css" href="MusicPlayerStyle.css">
<!--Font Awesome script for using icons from font awesome-->
<script src="https://kit.fontawesome.com/6f0f83005a.js" crossorigin="anonymous"></script>
<!--Adds responsiveness to the website-->
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1"/>
</head>
<!--End of head section-->
<!--Begining of the body section-->
<body>
<!--Begining of navigation bar section-->
<nav>
<!--Music Player Logo div-->
<div id="music-player-tag">
<div id="music-player-logo">
<img src="Images/music-player-logo.png">
</div>
<!--Music Player Logo div end-->
<!--Music Player Title-->
<div id="music-player-name">
Music<br/><b>Player</b>
</div>
</div>
<!--Music Player Title div end-->
<!--Search Bar div-->
<div id="search-bar-utility">
<div id="search-bar">
<form>
<input type="text" placeholder="Search...">
<!--Search Icon-->
<i class="fas fa-search"></i>
</form>
</div>
<!--Search Bar div end-->
<!--Notification Bell div-->
<div id="notifications">
<i class="fas fa-bell"></i>
</div>
<!--Notification Bell div end-->
<!--User Image div-->
<div id="user">
<img src="Images/user-image.jpg">
</div>
</div>
<!--User Image div end-->
</nav>
<!--End of navigation bar section-->
<!--Main body of the Music Player Home Page-->
<main>
<!--Home Screen Carousel which is slideshown with class slideshow-->
<div id="new-releases">
<img src="Images/new-music-2.jpg">
<img src="Images/new-music-1.jpg">
<img src="Images/new-music-3.jpg">
</div>
<!--End of home screen carousel-->
<!--Begining of latest release section-->
<div id="latest-release">
<!--Heading-->
<h1>Latest Release</h1>
<!--Latest Release Item div which contains the latest songs displayed-->
<div id="latest-release-items">
<!--Item 1-->
<div id="latest-release-item">
<!--Song Image-->
<div id="latest-release-img">
<!--Play Button div which is hidden and appears on hover-->
<div id="latest-release-img-button" class="hide">
<a href="#music-bar" class="font-color"><i class="fas fa-play"></i></a>
</div>
<!--End of Play Button Div-->
</div>
<!--End of Song Image-->
<!--Div containing song details-->
<div id="latest-item-title" class="hide">
<b>willow</b>
<p style="color:lightgrey">December, 2020    3:34</p>
</div>
<!--End of div containing song details-->
<!--Dropdown menu icon-->
<div id="dropdown">
<i class="fas fa-chevron-circle-down">
<div id="dropdown-menu" class="hide">
<div id="dropdown-list">
<i class="fas fa-play"></i>
<a href="#music-bar">Play Now</a>
</div>
<hr/>
<div id="dropdown-list">
<i class="fas fa-plus"></i>
<a href="#latest-release">Add to Queue</a>
</div>
<hr/>
<div id="dropdown-list">
<i class="fas fa-plus"></i>
<a href="#latest-release">Add to Favourites</a>
</div>
<hr/>
<div id="dropdown-list">
<i class="fas fa-exclamation-circle"></i>
<a href="#latest-release">Get Info</a>
</div>
</div>
</i>
</div>
<!--End of dropdown menu-->
</div>
<!--End of Item 1-->
<!--Item 2-->
<div id="latest-release-item">
<!--Song Image-->
<div id="latest-release-img">
<!--Play Button div which is hidden and appears on hover-->
<div id="latest-release-img-button" class="hide">
<a href="#music-bar" class="font-color"><i class="fas fa-play"></i></a>
</div>
<!--End of Play Button Div-->
</div>
<!--End of Song Image-->
<!--Div containing song details-->
<div id="latest-item-title">
<b>evermore (feat. Bon Iver)</b>
<p style="color:lightgrey">December, 2020    5:04</p>
</div>
<!--End of div containing song details-->
<!--Dropdown menu icon-->
<div id="dropdown">
<i class="fas fa-chevron-circle-down">
<div id="dropdown-menu" class="hide">
<div id="dropdown-list">
<i class="fas fa-play"></i>
<a href="#music-bar">Play Now</a>
</div>
<hr/>
<div id="dropdown-list">
<i class="fas fa-plus"></i>
<a href="#latest-release">Add to Queue</a>
</div>
<hr/>
<div id="dropdown-list">
<i class="fas fa-plus"></i>
<a href="#latest-release">Add to Favourites</a>
</div>
<hr/>
<div id="dropdown-list">
<i class="fas fa-exclamation-circle"></i>
<a href="#latest-release">Get Info</a>
</div>
</div>
</i>
</div>
<!--End of dropdown menu-->
</div>
<!--End of Item 2-->
<!--Item 3-->
<div id="latest-release-item">
<!--Song Image-->
<div id="latest-release-img">
<!--Play Button div which is hidden and appears on hover-->
<div id="latest-release-img-button" class="hide">
<a href="#music-bar" class="font-color"><i class="fas fa-play"></i></a>
</div>
<!--End of Play Button Div-->
</div>
<!--End of Song Image-->
<!--Div containing song details-->
<div id="latest-item-title">
<b>ivy</b>
<p style="color:lightgrey">December, 2020    4:20</p>
</div>
<!--End of div containing song details-->
<!--Dropdown menu icon-->
<div id="dropdown">
<i class="fas fa-chevron-circle-down">
<div id="dropdown-menu" class="hide">
<div id="dropdown-list">
<i class="fas fa-play"></i>
<a href="#music-bar">Play Now</a>
</div>
<hr/>
<div id="dropdown-list">
<i class="fas fa-plus"></i>
<a href="#latest-release">Add to Queue</a>
</div>
<hr/>
<div id="dropdown-list">
<i class="fas fa-plus"></i>
<a href="#latest-release">Add to Favourites</a>
</div>
<hr/>
<div id="dropdown-list">
<i class="fas fa-exclamation-circle"></i>
<a href="#latest-release">Get Info</a>
</div>
</div>
</i>
</div>
<!--End of dropdown menu-->
</div>
<!--End of Item 3-->
<!--Item 4-->
<div id="latest-release-item">
<!--Song Image-->
<div id="latest-release-img">
<!--Play Button div which is hidden and appears on hover-->
<div id="latest-release-img-button" class="hide">
<a href="#music-bar" class="font-color"><i class="fas fa-play"></i></a>
</div>
<!--End of Play Button Div-->
</div>
<!--End of Song Image-->
<!--Div containing song details-->
<div id="latest-item-title">
<b>happiness</b>
<p style="color:lightgrey">December, 2020    5:15</p>
</div>
<!--End of div containing song details-->
<!--Dropdown menu icon-->
<div id="dropdown">
<i class="fas fa-chevron-circle-down">
<div id="dropdown-menu" class="hide">
<div id="dropdown-list">
<i class="fas fa-play"></i>
<a href="#music-bar">Play Now</a>
</div>
<hr/>
<div id="dropdown-list">
<i class="fas fa-plus"></i>
<a href="#latest-release">Add to Queue</a>
</div>
<hr/>
<div id="dropdown-list">
<i class="fas fa-plus"></i>
<a hrf="#latest-release">Add to Favourites</a>
</div>
<hr/>
<div id="dropdown-list">
<i class="fas fa-exclamation-circle"></i>
<a href="#latest-release">Get Info</a>
</div>
</div>
</i>
</div>
<!--End of dropdown menu-->
</div>
<!--End of Item 4-->
</div>
<!--End of latest release item div-->
</div>
<!--End of latest release section-->
<!--Begining of Popular Artists section-->
<div id="popular-artists">
<!--Popular Artist Section Title-->
<h1>Popular Artists</h1>
<!--Begining of the popular artist list section-->
<div id="popular-artist-list">
<!--Artist 1-->
<div id="popular-artists-image">
<div id="popular-artists-text" class="hide">
<a href="MusicPlayerSinglePlaylistScreen.html">
Prateek Kuhad
</a>
</div>
</div>
<!--End of Artist 1-->
<!--Artist 2-->
<div id="popular-artists-image-2">
<div id="popular-artists-text" class="hide">
<a href="MusicPlayerSinglePlaylistScreen.html">
Tove Styrke
</a>
</div>
</div>
<!--End of Artist 2-->
<!--Artist 3-->
<div id="popular-artists-image-3">
<div id="popular-artists-text" class="hide">
<a href="MusicPlayerSinglePlaylistScreen.html">
Ritviz
</a>
</div>
</div>
<!--End of Artist 3-->
<!--Artist 4-->
<div id="popular-artists-image-4">
<div id="popular-artists-text" class="hide">
<a href="MusicPlayerSinglePlaylistScreen.html">
Martin Garrix
</a>
</div>
</div>
<!--End of Artist 4-->
<!--Artist 5-->
<div id="popular-artists-image-5">
<div id="popular-artists-text" class="hide">
<a href="MusicPlayerSinglePlaylistScreen.html">
Taylor Swift
</a>
</div>
</div>
<!--End of Artist 5-->
<!--Begining of Artist 6-->
<div id="popular-artists-image-6">
<div id="popular-artists-text" class="hide">
<a href="MusicPlayerSinglePlaylistScreen.html">
Green Day
</a>
</div>
</div>
<!--End of Artist 6-->
</div>
<!--End of popular artists list div-->
</div>
<!--End of popluar artist section-->
<!--Begining of playlist section-->
<div id="playlist">
<!--Playlist item 1-->
<div id="playlist-item-1">
<div id="popular-artists-text">
Love
</div>
</div>
<!--End of playlist item 1-->
<!--Playlist item 2-->
<div id="playlist-item-2">
<div id="popular-artists-text">
Retro
</div>
</div>
<!--End of playlist item 2-->
<!--Playlist item 3-->
<div id="playlist-item-3">
<div id="popular-artists-text">
Chill
</div>
</div>
<!--End of playlist item 3-->
<!--Playlist item 4-->
<div id="playlist-item-4">
<div id="popular-artists-text">
Pop
</div>
</div>
<!--End of playlist item 4-->
<!--Playlist item 5-->
<div id="playlist-item-5">
<div id="popular-artists-text">
Workout
</div>
</div>
<!--End of playlist item 5-->
<!--Playlist item 6-->
<div id="playlist-item-6">
<div id="popular-artists-text">
Rock
</div>
</div>
<!--End of playlist item 6-->
</div>
<!--End of playlist section-->
<!--Begining of genre section-->
<div id="genre">
<!--Genre Item 1-->
<div id="genre-item">
<div id="genre-item-background-1">Party</div>
</div>
<!--End of genre item 1-->
<!--genre item 2-->
<div id="genre-item">
<div id="genre-item-background-2">Electronic</div>
</div>
<!--End of genre item 2-->
<!--Genre Item 3-->
<div id="genre-item">
<div id="genre-item-background-3">Road Trip</div>
</div>
<!--End of genre item 3-->
</div>
<!--End of genre section-->
<!--Begining of latest english songs section-->
<div id="latest-songs">
<!--Latest English Songs title-->
<h1>Latest English</h1>
<!--Songs List Div-->
<div id="latest-songs-list">
<!--Song 1-->
<div id="latest-songs-item">
<!--Song Image-->
<div id="latest-songs-item-img-1">
<!--Play button which is hidden and appears on hover-->
<div id="latest-songs-item-button" class="hide">
<i class="fas fa-play"></i>
</div>
<!--End of play button-->
</div>
<!--End of song image-->
<!--Song title-->
<div id="latest-songs-item-title">
<b>Anyone</b><br/><date style="color:lightgrey">January, 2021</date>
</div>
<!--End of song title-->
</div>
<!--End of song 1-->
<!--Song 2-->
<div id="latest-songs-item">
<!--Song Image-->
<div id="latest-songs-item-img-2">
<!--Play button which is hidden and appears on hover-->
<div id="latest-songs-item-button" class="hide">
<i class="fas fa-play"></i>
</div>
<!--End of play button-->
</div>
<!--End of song image-->
<!--Song title-->
<div id="latest-songs-item-title">
<b>Hey Boy</b><br/><date style="color:lightgrey">November, 2020</date>
</div>
<!--End of song title-->
</div>
<!--End of song 2-->
<!--Song 3-->
<div id="latest-songs-item">
<!--Song Image-->
<div id="latest-songs-item-img-3">
<!--Play button which is hidden and appears on hover-->
<div id="latest-songs-item-button" class="hide">
<i class="fas fa-play"></i>
</div>
<!--End of play button-->
</div>
<!--End of song image-->
<!--Song title-->
<div id="latest-songs-item-title">
<b>Afterglow</b><br/><date style="color:lightgrey">December, 2020</date>
</div>
<!--End of song title-->
</div>
<!--End of song 3-->
<!--Song 4-->
<div id="latest-songs-item">
<!--Song Image-->
<div id="latest-songs-item-img-4">
<!--Play button which is hidden and appears on hover-->
<div id="latest-songs-item-button" class="hide">
<i class="fas fa-play"></i>
</div>
<!--End of play button-->
</div>
<!--End of song image-->
<!--Song title-->
<div id="latest-songs-item-title">
<b>Vibez</b><br/><date style="color:lightgrey">January, 2021</date>
</div>
<!--End of song title-->
</div>
<!--End of song 4-->
<!--Song 4-->
<div id="latest-songs-item">
<!--Song Image-->
<div id="latest-songs-item-img-5">
<!--Play button which is hidden and appears on hover-->
<div id="latest-songs-item-button" class="hide">
<i class="fas fa-play"></i>
</div>
<!--End of play button-->
</div>
<!--End of song image-->
<!--Song title-->
<div id="latest-songs-item-title">
<b>Higher</b><br/><date style="color:lightgrey">January, 2021</date>
</div>
<!--End of song title-->
</div>
<!--End of song 5-->
</div>
<!--End of songs list div-->
</div>
<!--End of latest english songs section-->
<!--Begining of latest hindi songs section-->
<div id="latest-songs">
<!--Latest Hindi Songs title-->
<h1>Latest Hindi</h1>
<!--Latest songs list div-->
<div id="latest-songs-list">
<!--Song 1-->
<div id="latest-songs-item">
<!--Song image-->
<div id="latest-songs-item-img-6">
<!--Play button which is hidden and appears on hover-->
<div id="latest-songs-item-button" class="hide">
<i class="fas fa-play"></i>
</div>
<!--End of play button-->
</div>
<!--End of song image-->
<!--Song title-->
<div id="latest-songs-item-title">
<b>Kahaan Ho Tum</b><br/><date style="color:lightgrey">November, 2020</date>
</div>
<!--End of song title-->
</div>
<!--End of song 1-->
<!--Song 2-->
<div id="latest-songs-item">
<!--Song image-->
<div id="latest-songs-item-img-7">
<!--Play button which is hidden and appears on hover-->
<div id="latest-songs-item-button" class="hide">
<i class="fas fa-play"></i>
</div>
<!--End of play button-->
</div>
<!--End of song image-->
<!--Song title-->
<div id="latest-songs-item-title">
<b>Dil Bechara</b><br/><date style="color:lightgrey">July, 2020</date>
</div>
<!--End of song title-->
</div>
<!--End of song 2-->
<!--Song 3-->
<div id="latest-songs-item">
<!--Song image-->
<div id="latest-songs-item-img-8">
<!--Play button which is hidden and appears on hover-->
<div id="latest-songs-item-button" class="hide">
<i class="fas fa-play"></i>
</div>
<!--End of play button-->
<!--End of song image-->
</div>
<!--Song title-->
<div id="latest-songs-item-title">
<b>Sun Toh</b><br/><date style="color:lightgrey">November, 2020</date>
</div>
<!--End of song title-->
</div>
<!--End of song 3-->
<!--Song 4-->
<div id="latest-songs-item">
<!--Song image-->
<div id="latest-songs-item-img-9">
<!--Play button which is hidden and appears on hover-->
<div id="latest-songs-item-button" class="hide">
<i class="fas fa-play"></i>
</div>
<!--End of play button-->
</div>
<!--End of song image-->
<!--Song title-->
<div id="latest-songs-item-title">
<b>Oh Saiyaan</b><br/><date style="color:lightgrey">January, 2021</date>
</div>
<!--End of song title-->
</div>
<!--End of song 4-->
<!--Song 5-->
<div id="latest-songs-item">
<!--Song image-->
<div id="latest-songs-item-img-10">
<!--Play button which is hidden and appears on hover-->
<div id="latest-songs-item-button" class="hide">
<i class="fas fa-play"></i>
</div>
<!--End of play button-->
</div>
<!--End of song image-->
<!--Song title-->
<div id="latest-songs-item-title">
<b>Rabba Mehar Kari</b><br/><date style="color:lightgrey">February, 2021</date>
</div>
<!--End of song title-->
</div>
<!--End of song 5-->
</div>
<!--End of latest songs list div-->
</div>
<!--End of latest hindi song section-->
</main>
<!--End of main section-->
<!--Begining of aside section-->
<aside>
<!--Aside section header-->
<div id="aside-header">
<!--Aside section title-->
<div id="aside-title">
Queue
</div>
<!--End of aside section title-->
<!--Dropdown menu-->
<div id="aside-dropdown">
<form>
<select>
<option id="Queue" label="Queue">Queue</option>
<option id="Playlist" lable="Playlist"><a href="MusicPlayerHomePage2.html">Playlist</a></option>
</select>
</form>
</div>
<!--End of dropdown menu-->
</div>
<!--End of aside section header-->
<!--List of Songs-->
<!--Song 1-->
<div id="queue-item">
<!--Song Image-->
<div id="queue-item-img"></div>
<!--Song title-->
<div id="queue-item-title">
<b>willow</b>
<p style="color:lightgrey;">Taylor Swift</p>
</div>
<!--End of song title-->
<!--Favourite icon-->
<div id="queue-favourite">
<i class="far fa-heart"></i>
</div>
<!--End of favourite icon-->
</div>
<!--End of song 1-->
<!--Song 2-->
<div id="queue-item">
<!--Song Image-->
<div id="queue-item-img"></div>
<!--Song title-->
<div id="queue-item-title">
<b>willow</b>
<p style="color:lightgrey;">Taylor Swift</p>
</div>
<!--End of song title-->
<!--Favourite icon-->
<div id="queue-favourite">
<i class="far fa-heart"></i>
</div>
<!--End of favourite icon-->
</div>
<!--End of song 2-->
<!--Song 3-->
<div id="queue-item">
<!--Song Image-->
<div id="queue-item-img"></div>
<!--Song title-->
<div id="queue-item-title">
<b>willow</b>
<p style="color:lightgrey;">Taylor Swift</p>
</div>
<!--End of song title-->
<!--Favourite icon-->
<div id="queue-favourite">
<i class="far fa-heart"></i>
</div>
<!--End of favourite icon-->
</div>
<!--End of song 3-->
<!--Song 4-->
<div id="queue-item">
<!--Song Image-->
<div id="queue-item-img"></div>
<!--Song title-->
<div id="queue-item-title">
<b>willow</b>
<p style="color:lightgrey;">Taylor Swift</p>
</div>
<!--End of song title-->
<!--Favourite icon-->
<div id="queue-favourite">
<i class="far fa-heart"></i>
</div>
<!--End of favourite icon-->
</div>
<!--End of song 4-->
<!--Song 5-->
<div id="queue-item">
<!--Song Image-->
<div id="queue-item-img"></div>
<!--Song title-->
<div id="queue-item-title">
<b>willow</b>
<p style="color:lightgrey;">Taylor Swift</p>
</div>
<!--End of song title-->
<!--Favourite icon-->
<div id="queue-favourite">
<i class="far fa-heart"></i>
</div>
<!--End of favourite icon-->
</div>
<!--End of song 5-->
<!--Song 6-->
<div id="queue-item">
<!--Song Image-->
<div id="queue-item-img"></div>
<!--Song title-->
<div id="queue-item-title">
<b>willow</b>
<p style="color:lightgrey;">Taylor Swift</p>
</div>
<!--End of song title-->
<!--Favourite icon-->
<div id="queue-favourite">
<i class="far fa-heart"></i>
</div>
<!--End of favourite icon-->
</div>
<!--End of song 6-->
<!--Song 7-->
<div id="queue-item">
<!--Song Image-->
<div id="queue-item-img"></div>
<!--Song title-->
<div id="queue-item-title">
<b>willow</b>
<p style="color:lightgrey;">Taylor Swift</p>
</div>
<!--End of song title-->
<!--Favourite icon-->
<div id="queue-favourite">
<i class="far fa-heart"></i>
</div>
<!--End of favourite icon-->
</div>
<!--End of song 7-->
</aside>
<!--End of aside section-->
<footer>
<!--The bottom music bar which pops up when we play a music-->
<div id="music-bar" class="hide">
<!--Music Icon-->
<div id="music-icon">
<img src="Images/latest-release-2.png" alt="music-icon">
</div>
<!--End of music icon-->
<!--Music title-->
<div id="music-title">
<b>evermore (feat. Bon Iver)</b>
<div id="favourite">
<i class="far fa-heart"></i>
</div>
<div id="remove">
<i class="fas fa-ban"></i>
</div>
<br/>
<artist id="music-player-title-artist">Taylor Swift</artist>
</div>
<!--End of music title-->
<!--Play buttons-->
<div id="play-buttons">
<i class="fas fa-random"></i>
<i class="fas fa-backward"></i>
<i class="fas fa-pause-circle"></i>
<i class="fas fa-forward"></i>
<i class="fas fa-undo-alt"></i>
</div>
<!--End of play buttons-->
<!--Music start time-->
<div id="start-time">
0:00
</div>
<!--End of music start time-->
<!--Music end time-->
<div id="end-time">
5:04
</div>
<!--End of music end time-->
<!--Begining of the progress bar-->
<div id="progress-bar">
<div id="circle">
<i class="fas fa-circle"></i>
</div>
</div>
<!--End of progress bar-->
<!--Miscellaneous icons-->
<div id="queue">
<i class="fas fa-bars"></i>
</div>
<div id="volume">
<i class="fas fa-volume-up"></i>
</div>
<div id="progress-bar-volume">
<div id="circle-volume">
<i class="fas fa-circle"></i>
</div>
</div>
<!--End of miscellaneous icons-->
</div>
<!--End of music bar-->
</footer>
<!--End of footer section-->
</body>
<!--End of body section-->
</html>
<!--End of html code-->