-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2440 lines (1981 loc) · 105 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
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
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<script data-ad-client="ca-pub-4711646058100067" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Nanum+Gothic&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Parisienne&display=swap" rel="stylesheet">
<title>RU+Me</title>
<link href="https://fonts.googleapis.com/css?family=Arvo|Heebo|Quicksand|Slabo+27px&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style type="text/css">
*{
margin: 0;
padding: 0;
}
body{
font-family:Quicksand;
}
.clearfix::after {
display: table;
content: '';
clear: both;
}
a{
text-decoration: none;
}
section{
width: 100%;
height: 100vh;
background: linear-gradient(-45deg,#23a6d5, #d00cf4,#FF00FF,#FF1493,#ee7752,#e73c7e);
background-size: 400% 400%;
position: relative;
animation-name: asd;
animation-duration: 32s;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
}
@keyframes asd{
0%{
background-position: 0% 50%;
}
50%{
background-position: 100% 50%;
}
100%{
background-position: 0% 50%;
}
}
.h1{
font-weight: normal;
font-family: Quicksand;
font-size: 28px;
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%,-60%);
color: white;
border: 1.2px solid white;
padding: 28px;
transition: border-radius 0.7s,content 2s;
transition-timing-function: ease-out;
opacity: 0.7;
text-align: center;
}
div .h1:hover{
border: 1px solid white;
background: linear-gradient(-45deg,#23a6d5, #d00cf4,#FF00FF,#FF1493,#ee7752,#e73c7e);
background-size: 400% 400%;
animation-name: asd;
animation-duration: 8s;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
display: block;
opacity: 1;
}
a:hover h1::after
{
content: " >>";
}
a:active h1 {
box-shadow:0px 0px 20px pink;
border: none;
}
.span{
height: 30px;
padding: 20px;
font-family:"Nanum Gothic";
font-weight: bold;
font-size: 24px;
text-align: center;
color: white;
bottom: 0;
margin-bottom: 42px;
margin-right: 42px;
position: absolute;
opacity: 0.6;
display: block;
}
.span:hover{
opacity: 1.0;
}
.srch{
width: 5%;
height: 50px;
opacity: 0.6;
right: 0;
position: absolute;
margin: 20px;
}
.srch:hover{
display: inline-block;
opacity: 1;
}
.modal{
background: linear-gradient(-45deg,#23a6d5, #d00cf4,#FF00FF,#FF1493,#ee7752,#e73c7e);
background-size: 400% 400%;
animation-name: asd;
animation-duration: 10s;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
}
.img{
margin: 0px 0px 0px 0px;
opacity: 0.6;
margin-right: 5px;
}
.img:hover{
opacity: 1.0;
}
.head{
font-size: 25px;
font-family: Quicksand;
color: white;
}
.img2{
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%,-60%);
opacity: 0.6;
}
.img3{
top: 50%;
left: 55%;
position: absolute;
transform: translate(-50%,-60%);
opacity: 0.6;
}
.pagination{
width: 20%;
bottom: 0;
position: absolute;
margin-left: 70px;
}
.li{
opacity: 0.6;
}
.li:hover{
opacity: 1.0;
}
.li{
border: 2px solid white;
padding: 10px;
border-radius: 64px;
margin-right: 8px;
}
.uul{
position: absolute;
right: 0;
top: 0;
margin-right: 54px;
width: 15%;
height: 30%;
font-size: 20px;
margin-top: 24px;
font-family: Quicksand;
padding-top: 12px;
padding-right: 12px;
width: 13%;
}
.lli{
float: left;
list-style-type: none;
margin-right: 15px;
color: white;
opacity: 0.6;
}
.lli:hover{
opacity: 1.0;
border-bottom: 2px solid white;
}
audio{
opacity: 0.4;
width: 25%;
position: absolute;
right: 0;
bottom: 0;
margin: 14px;
}
.checked{
color: orange;
}
.fav2{
margin: 32px;
}
.fav3{
margin: 32px 32px 0px 32px;
}
.about{
width: 100%;
height: 50%;
margin-top: 0px;
margin: 10% 20% 10% 23%;
}
.rulogo{
background: linear-gradient(-45deg,#23a6d5, #d00cf4,#FF00FF,#FF1493,#ee7752,#e73c7e);
animation-name: asd;
animation-duration: 8s;
background-size: 400% 400%;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
}
.rulogo:hover{
box-shadow:inset 0px 0px 8px #000000;
}
.social{
padding-bottom: 4px;
}
.social.fb:hover{
border-bottom: 2px solid #235B9E;
}
.social.tw:hover{
border-bottom: 2px solid #00ABE3;
}
.social.yt:hover{
border-bottom: 2px solid #FF312E;
}
.social.bl:hover{
border-bottom: 2px solid #FF6600;
}
.social.in:hover{
border-bottom: 2px solid #2D80A6;
}
</style>
</head>
<body>
<section class="clearfix">
<div class="d-none d-md-block">
<div>
<div id="carouselExampleFade" class="carousel slide carousel-fade h1" data-ride="carousel" data-pause="false" data-interval=13000>
<div class="carousel-inner">
<div class="carousel-item active">
Ego is like your branded cloth... it is important that you have it... but not necessary that you show it...
</div>
<div class="carousel-item">
Music not only changes our mood.... but it also changes the way we think and our perception of the world.
</div>
<div class="carousel-item">
Life is Short.... Time is Fast.... No Replay.... No Rewind.... so enjoy every moment.... as it comes.
</div>
</div>
</div>
<!-- Ego is like your branded cloth... it is important that you have it... but not necessary that you show it... -->
</div>
</div>
<div class="img3 d-block d-md-none ">
<img src="https://drive.google.com/uc?id=1ZRoEAYaE9t34X0VRe4Jfc-mpWs5QsZ0b" width="60%">
</div>
<span class="span"> >>> </span>
<div data-toggle="modal" data-target=".bd-example-modal-lg" class="srch d-none d-md-block "><img src="https://drive.google.com/uc?id=1JokKzO5WdQqQcwo7T6iU8CkLRbCrlKAj" width="80%" style="cursor: pointer;" data-toggle="tooltip" data-placement="top" title="Search" id="qw"></div>
<div class="modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true"><img src="https://drive.google.com/uc?id=1ZRoEAYaE9t34X0VRe4Jfc-mpWs5QsZ0b" width="9%" class="img2">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<input class="form-control mr-sm-2" type="search" placeholder="Which Song you want ?" aria-label="Search">
<button class="btn my-2 my-sm-0" type="submit" >Search</button>
</div>
</div>
</div>
</div>
<!-- For Mobile Phones -->
<div class="head d-inline-block d-md-none" style="margin: 10px 16px;"> RU+Me</div>
<div class="head d-none d-md-block w-20 "><img src="https://drive.google.com/uc?id=1ZRoEAYaE9t34X0VRe4Jfc-mpWs5QsZ0b" width="7%" class="img ">RU+Me
<div>
<ul class="uul">
<li class="lli d-none d-md-block" style="cursor: help;" data-toggle="tooltip" data-placement="left" title="Currently Open" id="q3">Home</li>
<a href="" data-toggle="modal" data-target="#exampleModalScrollable"><li class="lli d-none d-md-block">About</li></a>
</ul>
</div></div>
<!-- <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalScrollable">
Launch demo modal
</button> -->
<div class="modal fade " id="exampleModalScrollable" tabindex="-1" role="dialog" aria-labelledby="exampleModalScrollableTitle" aria-hidden="true" >
<div class="modal-dialog modal-xl modal-dialog-scrollable" style="margin-top: 2%;"role="document">
<div class="modal-content" style="width: 65%;">
<div class="modal-header">
<h4 class="modal-title" id="myExtraLargeModalLabel"> About Us</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<!-- Starting Of Content -->
<div class="card-columns">
<div class="card">
<div class="card-body">
<h5 class="card-title">RU+Me</h5>
<p class="card-text">An ISO/IEC 27000:2018 certified 100% Subsidiary Comapny of A.S.C Pvt. Ltd., a digital music service site born for all. </p>
</div>
</div>
<div class="card">
<div class="card-body">
<img class="card-img-top" src="https://drive.google.com/uc?id=1MxClnOgJIcGl8g265ntTkw1JukIsXs20" alt="Card image cap">
<p class="card-text"><br>
This site is filled with all kinds of songs, song for all ages with all emotions. You can find our AI Assistant ASCa for whom you can reach to us to share your views. </p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="https://drive.google.com/uc?id=1JTdpqVt58_ssBrD_jQdDvasPtmGTvGh8" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">ASC <small>: Parent Co.</small></h5>
<p class="card-text">RU+Me was Est. in 2019 by A.S Company, one of the famous comapny known for its execellent and reputed works in various field for <a href="" data-toggle="tooltip" data-placement="right" title="About Parent Co." id="asc">more</a>.</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="https://drive.google.com/uc?id=1NJ_EQzRZ8CK9I352SuqywMogV-D7Ld_X">
</div>
<div class="card">
<div id="carouselExampleSlidesOnly" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="https://drive.google.com/uc?id=1l8-BtBtTL2RtGjHYq4Aq_-6vTb-o4P2e" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="https://drive.google.com/uc?id=1EFVLbe2AqCLm3w0aTWVljGyxNswVRUZ1" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="https://drive.google.com/uc?id=166VrA4oPTZs1EVWJTKsn-oZ8rAjGKna7" alt="Third slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="https://infocaptain.com/wp-content/uploads/2017/11/listening-music-.jpg" alt="Third slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="https://static.independent.co.uk/s3fs-public/thumbnails/image/2017/09/26/08/istock-502324324-1.jpg" alt="Third slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="https://drive.google.com/uc?id=1CF0Q1t88OJun1cB9aS_2FNNMylOYp2p0" alt="Fourth slide">
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">Music for all</h5>
<p class="card-text">We are born with moto of our founder who says:<br>
<cite title="Source Title"> "Music for all - for all ages and for all emotions"<br></cite>
</small> thanks to him from whom ideas we are in the race to accomplish our moto. RU+Me a place where the music beat in once heart faster than their thoughts.
</p>
</div>
</div>
</div>
<!-- Ending of the BOXES content -->
<!-- Starting of the questioneries -->
<div class="accordion" id="accordionExample">
<div class="card">
<div class="card-header" id="headingOne">
<h2 class="mb-0">
<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne" style="text-decoration: none;">
Who we are ?
</button>
</h2>
</div>
<div id="collapseOne" class="collapse" aria-labelledby="headingOne" data-parent="#accordionExample">
<div class="card-body">
RU+Me was Est. in 2019 by A.S Company, one of the famous comapny known for its execellent works in various field.
<p>We are born with moto of our founder who says:"Music for all - for all ages and for all emotions",thanks to him from whom ideas we are in the race to accomplish our moto.</p>
<p>This site is filled with all kinds of songs, song for all ages with all emotions. You can find our AI Assistant ASCa for whom you can reach to us to share your views.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h2 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo" style="text-decoration: none;">
What makes RU+Me different from others ?
</button>
</h2>
</div>
<div id="collapseTwo" class="collapse show" aria-labelledby="headingTwo" data-parent="#accordionExample">
<div class="card-body">
Our uniqueness makes us different from others :
<!-- Start -->
<br><br>
<div class="row">
<div class="col-4">
<div class="list-group" id="list-tab" role="tablist">
<a class="list-group-item list-group-item-action active" id="list-home-list" data-toggle="list" href="#list-home" role="tab" aria-controls="home">Music for All</a>
<a class="list-group-item list-group-item-action" id="list-profile-list" data-toggle="list" href="#list-profile" role="tab" aria-controls="profile">Assistant ASCa</a>
<a class="list-group-item list-group-item-action" id="list-messages-list" data-toggle="list" href="#list-messages" role="tab" aria-controls="messages">User's Own Library</a>
<a class="list-group-item list-group-item-action" id="list-settings-list" data-toggle="list" href="#list-settings" role="tab" aria-controls="settings">Auto Playing Mode</a>
</div>
</div>
<div class="col-8">
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show active" id="list-home" role="tabpanel" aria-labelledby="list-home-list">Music for All as earlier discuss it is for Every Age and For Every Emotions.
Whether user is a Child or an Old Man, its easiness and features makes everyone feels better.<p>When you create your id in RU+Me it prefer you disclose your real age and your interest as it makes easy to the system to distinguish the songs according to your interset or passion.</p><p>This site is fills with all kinds of traditional and trendy songs so it can fills the hunger of every age, every interest and every emotions.</p></div>
<div class="tab-pane fade" id="list-profile" role="tabpanel" aria-labelledby="list-profile-list">Ofcourse how we forget our friend ASCa, an AI Assistant that serves you better than others.<p>ASCa is a one of the uniqueness feature of this site as one can have a talk with her to find out the problems facing during using this site and definatey gets the satisfactory result within minutes.</p><p>We are still working to make it more useful for the users, more friendly and more faviourable. </p></div>
<div class="tab-pane fade" id="list-messages" role="tabpanel" aria-labelledby="list-messages-list">Ya RU+Me offers the users to create their own libraries which make both our site and user to serve better and get better respectively.
<p>When someone make account in RU+Me they use to select their favourite Singer or Artist to have future notification of their newly publications.</p><p>In this way they use to have those music that their ears and heart demands.</p></div>
<div class="tab-pane fade" id="list-settings" role="tabpanel" aria-labelledby="list-settings-list">Hey! as you are visited have your ear hear the background playing song. <p>Ofcourse your answer will be Yes! this is because of the auto play system of our site which makes the users to set their own background song which they want to hear when they entered to this beautiful environment where music beats faster than their thoughts.</p></div>
</div>
</div>
</div>
<!-- Ennnnnddddinnng -->
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h2 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree"style="text-decoration: none;">
How we serve the users with respect to their demand ?
</button>
</h2>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordionExample">
<div class="card-body">
This is a very important thing to ask that how we know what you want. But RU+Me offers the users to create their own libraries which make both our site and user to serve better and get better respectively.<p>When you create your id in RU+Me it prefer you disclose your real age and your interest as it makes easy to the system to distinguish the songs according to your age and interset or passion.</p><p>This site is fills with all kinds of traditional and trendy songs so it can fills the hunger of every age, every interest and every emotions.</p>
</div>
</div>
</div>
</div>
<!-- Ending of the questioneries -->
<br>
<div class="card text-center">
<div class="card-header">
Contact Us
</div>
<div class="card-body">
<h5 class="card-title">Help/Conatct/Suggestion/Feedback</h5>
<p class="card-text">Call at 159-357-2580 or E-mail : [email protected]</p>
</div>
<div class="card-footer text-muted">
For prompt & 24X7 Access prefer ASCa
</div>
</div>
<small class="form-text text-muted" style="text-align: center;margin-top: 13px; margin-bottom: 0px;">RU+Me an ISO/IEC 27000:2018 certified 100% Subsidiary Comapny of A.S.C Pvt. Ltd.</small>
</div>
<div class="modal-footer">
</div>
</div>
<div class="modal-content" style="margin-left: 30px; width: 35%;">
<div class="modal">
</div>
<div class="modal-body">
<div style=";margin:7% 0% 5% 3%;">
<img src="https://drive.google.com/uc?id=11n_dzEDqBHgHC-CZRUwcs26hgm2SbXgd" style="border-radius: 50%; width: 50%; border:1.5px solid magenta;margin-left: 23%;padding: 1%;" class="rulogo">
</div>
<div style="text-align: center;font-size: 38px;font-weight: bold;">
RU+Me </div>
<div style="text-align: center;font-size: 28px;letter-spacing: 4px; line-height: 32px;">Music for Everyone</div><br>
<div style="text-align: center;font-size: 35px;line-height: 40px;">
<div>
<small style="font-size: 15px;" class="text-muted">For Eve- </small>
<img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/whatsapp/238/baby_1f476.png" width=14% >
<img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/emojipedia/132/child_1f9d2.png" width=14%>
<img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/whatsapp/238/man_1f468.png" width=14%>
<img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/whatsapp/238/older-man_1f474.png" width=14%>
<small style="font-size: 15px;"class="text-muted"> -ry Age</small>
</div>
</div>
<div style="text-align: center;font-size: 35px;line-height: 68px;">
<div>
<small style="font-size: 14px;" class="text-muted">Every E- </small>
<img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/whatsapp/238/grinning-face_1f600.png" width=13%>
<img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/whatsapp/238/face-with-party-horn-and-party-hat_1f973.png" width=13%>
<img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/whatsapp/238/smiling-face-with-heart-shaped-eyes_1f60d.png" width=13%>
<img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/237/face-with-pleading-eyes_1f97a.png" width=13%> <small style="font-size: 15px;"class="text-muted"> -motion</small>
</div>
</div>
<div style="text-align: center;font-size: 15px;margin-top: 3%;" class="text-muted" >For more follow us on</div>
<div style="text-align: center;line-height: 48px;margin-top: 10px;">
<a href="https://www.facebook.com/ak.shah.963871">
<img src="https://cdn0.iconfinder.com/data/icons/social-media-2185/512/social__media__social_media__facebook_-512.png" width=13% class="social fb"></a>
<a href="#">
<img src="https://cdn0.iconfinder.com/data/icons/social-media-2185/512/social__media__social_media__twitter_-512.png" width=13% class="social tw"></a>
<a href="https://youtu.be/WcI-0KOmgK4?t=2">
<img src="https://cdn0.iconfinder.com/data/icons/social-media-2185/512/social__media__social_media__youtube_-512.png" width=13% class="social yt"></a>
<a href="https://asc159.blogspot.com/">
<img src="https://cdn0.iconfinder.com/data/icons/social-media-2185/512/social__media__social_media__blogger_-512.png" width=13% class="social bl"></a>
<a href="#">
<img src="https://cdn0.iconfinder.com/data/icons/social-media-2185/512/social__media__social_media__instagram_-512.png" width=13% class="social in">
</a>
</div>
</div>
<!-- <nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#" data-dismiss="modal">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">About</li>
</ol>
</nav> -->
<div class="modal" style="left: 0;">
</div>
</div>
</div>
</div>
<!-- Background Music -->
<iframe src="https://www.youtuberepeater.com/watch?v=BqFOhYrXR-w&list=RDBqFOhYrXR-w&start_radio=1#gsc.tab=0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" height="0" width="0" frameborder="0"></iframe>
<!-- Menu Consisting Bottom -->
<div class="list">
<nav aria-label="...">
<ul class="pagination">
<li class="li d-none d-md-block" data-toggle="tooltip" data-placement="top" title="Menu List" id="qw1"><!-- <img src="https://drive.google.com/uc?id=1ljr96eOIyGSYV7QASVUYMa_BfXOERYk6" width="90%"> -->
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
width=36
viewBox="0 0 172 172"
style=" fill:#000000;"><g fill="none" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0" font-family="none" font-weight="none" font-size="none" text-anchor="none" style="mix-blend-mode: normal"><path d="M0,172v-172h172v172z" fill="none"></path><g fill="#ffffff"><path d="M20.64,13.76c-3.76014,0 -6.88,3.11986 -6.88,6.88v27.52c0,3.76014 3.11986,6.88 6.88,6.88h27.52c3.76014,0 6.88,-3.11986 6.88,-6.88v-27.52c0,-3.76014 -3.11986,-6.88 -6.88,-6.88zM72.24,13.76c-3.76014,0 -6.88,3.11986 -6.88,6.88v27.52c0,3.76014 3.11986,6.88 6.88,6.88h27.52c3.76014,0 6.88,-3.11986 6.88,-6.88v-27.52c0,-3.76014 -3.11986,-6.88 -6.88,-6.88zM123.84,13.76c-3.76014,0 -6.88,3.11986 -6.88,6.88v27.52c0,3.76014 3.11986,6.88 6.88,6.88h27.52c3.76014,0 6.88,-3.11986 6.88,-6.88v-27.52c0,-3.76014 -3.11986,-6.88 -6.88,-6.88zM20.64,20.64h27.52v27.52h-27.52zM72.24,20.64h27.52v27.52h-27.52zM123.84,20.64h27.52v27.52h-27.52zM20.64,65.36c-3.76014,0 -6.88,3.11986 -6.88,6.88v27.52c0,3.76014 3.11986,6.88 6.88,6.88h27.52c3.76014,0 6.88,-3.11986 6.88,-6.88v-27.52c0,-3.76014 -3.11986,-6.88 -6.88,-6.88zM72.24,65.36c-3.76014,0 -6.88,3.11986 -6.88,6.88v27.52c0,3.76014 3.11986,6.88 6.88,6.88h27.52c3.76014,0 6.88,-3.11986 6.88,-6.88v-27.52c0,-3.76014 -3.11986,-6.88 -6.88,-6.88zM123.84,65.36c-3.76014,0 -6.88,3.11986 -6.88,6.88v27.52c0,3.76014 3.11986,6.88 6.88,6.88h27.52c3.76014,0 6.88,-3.11986 6.88,-6.88v-27.52c0,-3.76014 -3.11986,-6.88 -6.88,-6.88zM20.64,72.24h27.52v27.52h-27.52zM72.24,72.24h27.52v27.52h-27.52zM123.84,72.24h27.52v27.52h-27.52zM20.64,116.96c-3.76014,0 -6.88,3.11986 -6.88,6.88v27.52c0,3.76014 3.11986,6.88 6.88,6.88h27.52c3.76014,0 6.88,-3.11986 6.88,-6.88v-27.52c0,-3.76014 -3.11986,-6.88 -6.88,-6.88zM72.24,116.96c-3.76014,0 -6.88,3.11986 -6.88,6.88v27.52c0,3.76014 3.11986,6.88 6.88,6.88h27.52c3.76014,0 6.88,-3.11986 6.88,-6.88v-27.52c0,-3.76014 -3.11986,-6.88 -6.88,-6.88zM123.84,116.96c-3.76014,0 -6.88,3.11986 -6.88,6.88v27.52c0,3.76014 3.11986,6.88 6.88,6.88h27.52c3.76014,0 6.88,-3.11986 6.88,-6.88v-27.52c0,-3.76014 -3.11986,-6.88 -6.88,-6.88zM20.64,123.84h27.52v27.52h-27.52zM72.24,123.84h27.52v27.52h-27.52zM123.84,123.84h27.52v27.52h-27.52z"></path></g></g></svg>
</li>
<li data-toggle="modal" data-target="#exampleModalScrollable22" class="li d-none d-md-block" data-toggle="tooltip" data-placement="top" title="Most Liked Songs" id="qw2" style="cursor: pointer;"><!-- <img src="https://drive.google.com/uc?id=1dlnI4r-0JCQRxnykpS14syyDIMbBQnBq" width="90%"> -->
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
width=38
viewBox="0 0 172 172"
style=" fill:#000000;"><defs><linearGradient x1="86" y1="14.11475" x2="86" y2="157.00912" gradientUnits="userSpaceOnUse" id="color-1_48273_gr1"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="86" y1="65.17188" x2="86" y2="125.65675" gradientUnits="userSpaceOnUse" id="color-2_48273_gr2"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient></defs><g fill="none" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0" font-family="none" font-weight="none" font-size="none" text-anchor="none" style="mix-blend-mode: normal"><path d="M0,172v-172h172v172z" fill="none"></path><g><path d="M51.256,153.18212c-2.81919,0 -5.61956,-0.8815 -8.01144,-2.62031c-4.24625,-3.08256 -6.33175,-8.21031 -5.44756,-13.38375l4.68163,-27.31844c0.46225,-2.69556 -0.43,-5.44219 -2.3865,-7.35031l-19.82838,-19.35c-3.75444,-3.66306 -5.07938,-9.03806 -3.45613,-14.02875c1.62056,-4.98531 5.848,-8.54894 11.0295,-9.30413l27.40175,-3.98556c2.70094,-0.39238 5.03637,-2.09087 6.24575,-4.54188l12.255,-24.85669c2.322,-4.70312 7.01975,-7.62444 12.26037,-7.62444c5.24063,0 9.93838,2.92131 12.25769,7.62444l12.255,24.85669c1.20937,2.451 3.54212,4.1495 6.24306,4.54188l27.40444,3.98556c5.18419,0.75519 9.40894,4.31881 11.0295,9.30413c1.62325,4.988 0.29831,10.363 -3.45613,14.02875l-19.82837,19.34731c-1.9565,1.90812 -2.84875,4.65475 -2.3865,7.353l4.68162,27.31844c0.88688,5.17344 -1.20131,10.30119 -5.44756,13.38375c-4.23819,3.07719 -9.75025,3.47494 -14.38887,1.03469l-24.51,-12.89731c-2.41338,-1.27119 -5.30244,-1.27119 -7.71581,0l-24.51,12.89731c-2.01563,1.06156 -4.19788,1.58562 -6.37206,1.58562zM86,24.19288c-3.22769,0 -6.00656,1.73075 -7.43631,4.62787l-12.255,24.85669c-1.99144,4.03931 -5.83994,6.837 -10.29312,7.48469l-27.40175,3.98556c-3.19275,0.46225 -5.69481,2.57462 -6.69456,5.64644c-1.00244,3.07719 -0.21769,6.26188 2.09625,8.51938l19.82838,19.34731c3.22231,3.14169 4.68969,7.67012 3.93181,12.1045l-4.67894,27.31844c-0.54825,3.19006 0.688,6.22694 3.30563,8.127c2.61494,1.89738 5.87756,2.13119 8.72631,0.62887l24.51,-12.89731c3.98288,-2.09625 8.73975,-2.09625 12.72263,0l24.51,12.89731c2.85144,1.49963 6.11406,1.26581 8.72631,-0.62887c2.61762,-1.90006 3.85388,-4.93694 3.30562,-8.127l-4.68162,-27.31844c-0.75787,-4.43706 0.7095,-8.96281 3.93181,-12.10719l19.82838,-19.34731c2.31394,-2.2575 3.09869,-5.44219 2.09625,-8.51938c-0.99975,-3.07181 -3.50181,-5.1815 -6.69456,-5.64644l-27.40175,-3.98556c-4.45319,-0.64769 -8.299,-3.44537 -10.29313,-7.48469l-12.255,-24.85669c-1.42706,-2.89444 -4.20594,-4.62519 -7.43363,-4.62519z" fill="url(#color-1_48273_gr1)"></path><path d="M107.5,88.6875h-16.125v-16.11962c0,-1.4835 -1.204,-2.69288 -2.6875,-2.69288h-5.375c-1.4835,0 -2.6875,1.20937 -2.6875,2.69288v16.11963h-16.125c-1.4835,0 -2.6875,1.20938 -2.6875,2.69288v5.375c0,1.4835 1.204,2.68212 2.6875,2.68212h16.125v16.13038c0,1.4835 1.204,2.68212 2.6875,2.68212h5.375c1.4835,0 2.6875,-1.19862 2.6875,-2.68212v-16.13037h16.125c1.4835,0 2.6875,-1.19862 2.6875,-2.68212v-5.375c0,-1.4835 -1.204,-2.69288 -2.6875,-2.69288z" fill="url(#color-2_48273_gr2)"></path></g></g></svg>
</li>
<li data-toggle="modal" data-target=".bd-example-modal-xl" class="li d-none d-md-block" data-toggle="tooltip" data-placement="top" title="Newly Added Songs" id="qw3"style="cursor: pointer;" ><!-- <img src="https://drive.google.com/uc?id=1def18HnwsQ9aY3qAk5ztJHO4g5VumzYR" width="90%"> -->
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
width=38
viewBox="0 0 172 172"
style=" fill:#000000;"><defs><linearGradient x1="29.5625" y1="36.65213" x2="29.5625" y2="127.21013" gradientUnits="userSpaceOnUse" id="color-1_CakwXhRrWs2u_gr1"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="142.4375" y1="36.65213" x2="142.4375" y2="127.21013" gradientUnits="userSpaceOnUse" id="color-2_CakwXhRrWs2u_gr2"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="91.375" y1="21.55644" x2="91.375" y2="149.52712" gradientUnits="userSpaceOnUse" id="color-3_CakwXhRrWs2u_gr3"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="64.5" y1="21.55644" x2="64.5" y2="149.52712" gradientUnits="userSpaceOnUse" id="color-4_CakwXhRrWs2u_gr4"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="64.5" y1="21.55644" x2="64.5" y2="149.52712" gradientUnits="userSpaceOnUse" id="color-5_CakwXhRrWs2u_gr5"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="64.5" y1="21.55644" x2="64.5" y2="149.52712" gradientUnits="userSpaceOnUse" id="color-6_CakwXhRrWs2u_gr6"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="86" y1="21.5" x2="86" y2="149.47069" gradientUnits="userSpaceOnUse" id="color-7_CakwXhRrWs2u_gr7"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient></defs><g fill="none" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0" font-family="none" font-weight="none" font-size="none" text-anchor="none" style="mix-blend-mode: normal"><path d="M0,172v-172h172v172z" fill="none"></path><g><path d="M24.1875,40.61888v90.75956c0,3.139 2.54506,5.68406 5.68138,5.68406h5.06862v-102.125h-5.06862c-3.13631,0 -5.68138,2.54506 -5.68138,5.68138z" fill="url(#color-1_CakwXhRrWs2u_gr1)"></path><path d="M142.13113,34.9375h-5.06862v102.125h5.06862c3.13631,0 5.68138,-2.54506 5.68138,-5.68138v-90.76225c0,-3.13631 -2.54506,-5.68138 -5.68138,-5.68138z" fill="url(#color-2_CakwXhRrWs2u_gr2)"></path><g><path d="M115.5625,48.375h-10.75c-7.41213,0 -13.4375,6.02538 -13.4375,13.4375v43c0,7.41213 -6.02537,13.4375 -13.4375,13.4375h-2.6875c-5.93131,0 -10.75,-4.81869 -10.75,-10.75c0,-5.93131 4.81869,-10.75 10.75,-10.75h10.75v-5.375h-10.75c-8.89294,0 -16.125,7.23206 -16.125,16.125c0,8.89294 7.23206,16.125 16.125,16.125h2.6875c10.37106,0 18.8125,-8.44144 18.8125,-18.8125v-43c0,-4.43975 3.62275,-8.0625 8.0625,-8.0625h10.75c1.48081,0 2.6875,1.20669 2.6875,2.6875c0,4.43975 -3.62275,8.0625 -8.0625,8.0625h-8.0625v5.375h8.0625c7.41213,0 13.4375,-6.02538 13.4375,-13.4375c0,-4.43975 -3.62275,-8.0625 -8.0625,-8.0625z" fill="url(#color-3_CakwXhRrWs2u_gr3)"></path><rect x="18" y="28" transform="scale(2.6875,2.6875)" width="12" height="2" fill="url(#color-4_CakwXhRrWs2u_gr4)"></rect><rect x="18" y="24" transform="scale(2.6875,2.6875)" width="12" height="2" fill="url(#color-5_CakwXhRrWs2u_gr5)"></rect><rect x="18" y="20" transform="scale(2.6875,2.6875)" width="12" height="2" fill="url(#color-6_CakwXhRrWs2u_gr6)"></rect><path d="M142.13113,32.25h-2.38112v-2.56656c0,-4.51231 -3.67112,-8.18344 -8.18344,-8.18344h-91.13312c-4.51231,0 -8.18344,3.67113 -8.18344,8.18344v2.56656h-2.38112c-4.61444,0 -8.36888,3.75444 -8.36888,8.36888v90.75956c0,4.61712 3.75444,8.37156 8.36888,8.37156h2.38112v2.56656c0,4.51231 3.67112,8.18344 8.18344,8.18344h91.13313c4.51231,0 8.18344,-3.67112 8.18344,-8.18344v-2.56656h2.38112c4.61444,0 8.36888,-3.75444 8.36888,-8.36888v-90.76225c0,-4.61444 -3.75444,-8.36888 -8.36888,-8.36888zM29.86888,134.375c-1.65013,0 -2.99388,-1.34375 -2.99388,-2.99388v-90.76225c0,-1.65013 1.34375,-2.99388 2.99388,-2.99388h2.38112v96.75zM134.375,142.31656c0,1.548 -1.26044,2.80844 -2.80844,2.80844h-91.13312c-1.548,0 -2.80844,-1.26044 -2.80844,-2.80844v-112.63312c0,-1.548 1.26044,-2.80844 2.80844,-2.80844h91.13313c1.548,0 2.80844,1.26044 2.80844,2.80844zM145.125,131.38113c0,1.65013 -1.34375,2.99388 -2.99388,2.99388h-2.38112v-96.75h2.38112c1.65013,0 2.99388,1.34375 2.99388,2.99388z" fill="url(#color-7_CakwXhRrWs2u_gr7)"></path></g></g></g></svg>
</li>
<li data-toggle="modal" data-target="#exampleModal" class="li d-none d-md-block" data-toggle="tooltip" data-placement="right" title="Feedback" id="qw4" style="cursor: pointer;"><!-- <img src="https://drive.google.com/uc?id=1cfLkU2BxdF9pMHxJyX3a6XTXswEchVOo" width="90%"> -->
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
width=39
viewBox="0 0 172 172"
style=" fill:#000000;"><defs><linearGradient x1="100.78125" y1="38.13025" x2="100.78125" y2="53.07813" gradientUnits="userSpaceOnUse" id="color-1_44800_gr1"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="71.21875" y1="38.13025" x2="71.21875" y2="53.07813" gradientUnits="userSpaceOnUse" id="color-2_44800_gr2"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="86" y1="55.54256" x2="86" y2="70.77531" gradientUnits="userSpaceOnUse" id="color-3_44800_gr3"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="117.23681" y1="16.25669" x2="116.56494" y2="157.68638" gradientUnits="userSpaceOnUse" id="color-4_44800_gr4"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="55.427" y1="15.96106" x2="54.75513" y2="157.39075" gradientUnits="userSpaceOnUse" id="color-5_44800_gr5"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="113.25663" y1="16.23788" x2="112.58475" y2="157.66756" gradientUnits="userSpaceOnUse" id="color-6_44800_gr6"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="59.50931" y1="15.98256" x2="58.83744" y2="157.41225" gradientUnits="userSpaceOnUse" id="color-7_44800_gr7"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="86.34669" y1="16.01213" x2="85.67213" y2="157.44181" gradientUnits="userSpaceOnUse" id="color-8_44800_gr8"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="86.45956" y1="16.10887" x2="85.78769" y2="157.53856" gradientUnits="userSpaceOnUse" id="color-9_44800_gr9"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="113.33456" y1="16.23788" x2="112.66269" y2="157.66756" gradientUnits="userSpaceOnUse" id="color-10_44800_gr10"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient><linearGradient x1="59.58456" y1="15.98256" x2="58.91269" y2="157.41225" gradientUnits="userSpaceOnUse" id="color-11_44800_gr11"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#ffffff"></stop></linearGradient></defs><g fill="none" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0" font-family="none" font-weight="none" font-size="none" text-anchor="none" style="mix-blend-mode: normal"><path d="M0,172v-172h172v172z" fill="none"></path><g><path d="M100.78125,38.96875c-3.71066,0 -6.71875,3.00809 -6.71875,6.71875c0,3.71066 3.00809,6.71875 6.71875,6.71875c3.71066,0 6.71875,-3.00809 6.71875,-6.71875c0,-3.71066 -3.00809,-6.71875 -6.71875,-6.71875z" fill="url(#color-1_44800_gr1)"></path><path d="M71.21875,38.96875c-3.71066,0 -6.71875,3.00809 -6.71875,6.71875c0,3.71066 3.00809,6.71875 6.71875,6.71875c3.71066,0 6.71875,-3.00809 6.71875,-6.71875c0,-3.71066 -3.00809,-6.71875 -6.71875,-6.71875z" fill="url(#color-2_44800_gr2)"></path><path d="M75.25,59.125c0,5.93669 4.81331,10.75 10.75,10.75c5.93669,0 10.75,-4.81331 10.75,-10.75v-2.6875h-21.5z" fill="url(#color-3_44800_gr3)"></path><path d="M110.1875,83.3125h13.4375v5.375h-13.4375z" fill="url(#color-4_44800_gr4)"></path><path d="M48.375,83.3125h13.4375v5.375h-13.4375z" fill="url(#color-5_44800_gr5)"></path><path d="M102.125,94.0625h21.5v5.375h-21.5z" fill="url(#color-6_44800_gr6)"></path><path d="M48.375,94.0625h21.5v5.375h-21.5z" fill="url(#color-7_44800_gr7)"></path><path d="M134.375,43h-10.75v-8.0625c0,-3.49912 -2.25481,-6.45538 -5.375,-7.568v-3.182c0,-4.44513 -3.61738,-8.0625 -8.0625,-8.0625h-48.375c-4.44512,0 -8.0625,3.61737 -8.0625,8.0625v3.182c-3.12019,1.11262 -5.375,4.06887 -5.375,7.568v8.0625h-10.75c-7.40944,0 -13.4375,6.02806 -13.4375,13.4375v64.5c0,7.40944 6.02806,13.4375 13.4375,13.4375h24.13913c0.80625,0 1.64744,0.45419 2.19031,1.17444l11.20687,14.99894c2.55044,3.38356 6.49031,5.32663 10.80913,5.32663c4.33763,0 8.299,-1.95381 10.86825,-5.36425l11.19881,-14.93981c0.55631,-0.73638 1.40019,-1.19594 2.19837,-1.19594h24.13912c7.40944,0 13.4375,-6.02806 13.4375,-13.4375v-64.5c0,-7.40944 -6.02806,-13.4375 -13.4375,-13.4375zM61.8125,21.5h48.375c1.4835,0 2.6875,1.204 2.6875,2.6875v2.6875h-53.75v-2.6875c0,-1.4835 1.204,-2.6875 2.6875,-2.6875zM53.75,34.9375c0,-1.4835 1.204,-2.6875 2.6875,-2.6875h59.125c1.4835,0 2.6875,1.204 2.6875,2.6875v25.10931c0,2.15537 -0.84119,4.17906 -2.36231,5.70287l-24.1875,24.1875c-3.14438,3.14438 -8.256,3.14438 -11.40038,0l-24.18481,-24.18481c-1.5265,-1.5265 -2.365,-3.55288 -2.365,-5.70825zM142.4375,120.9375c0,4.44512 -3.61738,8.0625 -8.0625,8.0625h-24.13912c-2.49131,0 -4.91813,1.24969 -6.493,3.34594l-11.19881,14.93713c-1.54263,2.0425 -3.93719,3.21694 -6.57363,3.21694c-2.61494,0 -4.988,-1.16369 -6.50912,-3.17931l-11.20688,-14.99894c-1.56681,-2.08012 -3.99362,-3.32175 -6.49031,-3.32175h-24.13912c-4.44512,0 -8.0625,-3.61738 -8.0625,-8.0625v-64.5c0,-4.44512 3.61738,-8.0625 8.0625,-8.0625h10.75v11.66912c0,3.5905 1.40019,6.96869 3.93988,9.50838l24.18481,24.18481c2.62031,2.62031 6.06031,3.92913 9.50031,3.92913c3.44,0 6.88269,-1.30881 9.50031,-3.92913l24.1875,-24.1875c2.537,-2.537 3.93719,-5.9125 3.93719,-9.503v-11.67181h10.75c4.44512,0 8.0625,3.61738 8.0625,8.0625z" fill="url(#color-8_44800_gr8)"></path><path d="M86,104.8125c-4.44513,0 -8.0625,3.61738 -8.0625,8.0625c0,4.44512 3.61737,8.0625 8.0625,8.0625c4.44512,0 8.0625,-3.61738 8.0625,-8.0625c0,-4.44512 -3.61737,-8.0625 -8.0625,-8.0625zM86,115.5625c-1.4835,0 -2.6875,-1.204 -2.6875,-2.6875c0,-1.4835 1.204,-2.6875 2.6875,-2.6875c1.4835,0 2.6875,1.204 2.6875,2.6875c0,1.4835 -1.204,2.6875 -2.6875,2.6875z" fill="url(#color-9_44800_gr9)"></path><path d="M112.875,104.8125c-4.44512,0 -8.0625,3.61738 -8.0625,8.0625c0,4.44512 3.61738,8.0625 8.0625,8.0625c4.44512,0 8.0625,-3.61738 8.0625,-8.0625c0,-4.44512 -3.61737,-8.0625 -8.0625,-8.0625zM112.875,115.5625c-1.4835,0 -2.6875,-1.204 -2.6875,-2.6875c0,-1.4835 1.204,-2.6875 2.6875,-2.6875c1.4835,0 2.6875,1.204 2.6875,2.6875c0,1.4835 -1.204,2.6875 -2.6875,2.6875z" fill="url(#color-10_44800_gr10)"></path><path d="M59.125,104.8125c-4.44512,0 -8.0625,3.61738 -8.0625,8.0625c0,4.44512 3.61738,8.0625 8.0625,8.0625c4.44512,0 8.0625,-3.61738 8.0625,-8.0625c0,-4.44512 -3.61738,-8.0625 -8.0625,-8.0625zM59.125,115.5625c-1.4835,0 -2.6875,-1.204 -2.6875,-2.6875c0,-1.4835 1.204,-2.6875 2.6875,-2.6875c1.4835,0 2.6875,1.204 2.6875,2.6875c0,1.4835 -1.204,2.6875 -2.6875,2.6875z" fill="url(#color-11_44800_gr11)"></path></g></g></svg>
</li>
</ul>
</nav>
</div>
<div class="modal fade bd-example-modal-xl" tabindex="-1" role="dialog" aria-labelledby="myExtraLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-xl" style="margin-top: 3%;">
<div class="modal-content">
<div class="modal-header" >
<h5 class="modal-title h4" id="myExtraLargeModalLabel" ><img src="https://drive.google.com/uc?id=1ZovkDl8zcB4q7P87yYTCaytbeDLMWm5u" width="9%"> Newly Added Songs</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close" >
<span aria-hidden="true">×</span>
</button>
</div>
<div id="carouselExamplecontrols"class="carousel slide" data-ride="carousel" style=" width: 100%; padding:
26px 0px 26px 4.5%;">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="card" style="width: 20rem; float: left; margin-right: 35px;">
<img src="https://vignette.wikia.nocookie.net/taylor-swift/images/b/bd/Fearless_-_Official.jpg/revision/latest?cb=20190418210038" class="card-img-top" style="width: 100%">
<div class="card-body" >
<h5 class="card-title">Fearless <small class="text">By Taylor Swift</small> </h5>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star"></span>
<img src="https://img.icons8.com/wired/50/000000/facebook-like.png" width="12%" style="margin-left: 5px; margin-bottom: 5px;"><small class="text-muted"> 92K</small>
<button type="button" class="btn btn-primary" style="margin-left: 0px;">
Play <span class="badge badge-light">4:20s</span>
</button>
</div>
</div>
<div class="card" style="width: 20rem; float: left; margin-right:35px;">
<img src="https://www.audiophileusa.com/covers400water/98618.jpg" class="card-img-top" alt="..." style="width: 100%">
<div class="card-body" >
<h5 class="card-title">I Don't Care <small class="text">By Ed Sheeran</small></h5>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star"></span>
<img src="https://img.icons8.com/wired/50/000000/facebook-like.png" width="12%" style="margin-left: 5px; margin-bottom: 5px;"><small class="text-muted"> 89K</small>
<button type="button" class="btn btn-primary" style="margin-left: 0px;">
Play <span class="badge badge-light">3:50s</span>
</button>
</div>
</div>
<div class="card" style="width: 20rem; float: left; margin-right: 14px;">
<img src="https://i1.sndcdn.com/artworks-000550148355-mqsyjp-t500x500.jpg" class="card-img-top" alt="..." style="width: 100%">
<div class="card-body">
<h5 class="card-title">Call you mine <small class="text">By Chainsmokers</small></h5>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star"></span>
<img src="https://img.icons8.com/wired/50/000000/facebook-like.png" width="12%" style="margin-left: 5px; margin-bottom: 5px;"><small class="text-muted"> 89K</small>
<button type="button" class="btn btn-primary" style="margin-left: 0px;position: relative; z-index: 2;">
Play <span class="badge badge-light">4:05</span>
</button>
</div>
</div>
</div>
<div class="carousel-item">
<div class="card" style="width: 20rem; float: left; margin-right: 35px;">
<img src="https://i1.sndcdn.com/artworks-000553484376-ucrz19-t500x500.jpg" class="card-img-top" style="width: 100%">
<div class="card-body" >
<h5 class="card-title">Old towm road <small class="text">By Lil Nas X</small> </h5>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star "></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<img src="https://img.icons8.com/wired/50/000000/facebook-like.png" width="12%" style="margin-left: 5px; margin-bottom: 5px;"><small class="text-muted"> 24K</small>
<button type="button" class="btn btn-primary" style="margin-left: 0px;">
Play <span class="badge badge-light">3:50s</span>
</button>
</div>
</div>
<div class="card" style="width: 20rem; float: left; margin-right:35px;">
<img src="https://k2nblog.com/wp-content/uploads/2019/08/rR5xe4.jpg" alt="..." style="width: 100%">
<div class="card-body" >
<h5 class="card-title">Magnetic Moon <small class="text">By Tiffany</small></h5>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star"></span>
<img src="https://img.icons8.com/wired/50/000000/facebook-like.png" width="12%" style="margin-left: 5px; margin-bottom: 5px;"><small class="text-muted"> 76K</small>
<button type="button" class="btn btn-primary" style="margin-left: 0px;">
Play <span class="badge badge-light">4:00s</span>
</button>
</div>
</div>
<div class="card" style="width: 20rem; float: left; margin-right: 35px;">
<img src="https://celebmix.com/wp-content/uploads/2019/05/sigala-and-becky-hill-team-up-for-new-single-wish-you-well-01.jpg" class="card-img-top" alt="..." style="width: 100%">
<div class="card-body">
<h5 class="card-title">Wish you well <small class="text">By Sigala</small></h5>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<img src="https://img.icons8.com/wired/50/000000/facebook-like.png" width="12%" style="margin-left: 5px; margin-bottom: 5px;"><small class="text-muted"> 65K</small>
<button type="button" class="btn btn-primary" style="margin-left: 0px;position: relative; z-index: 2;">
Play <span class="badge badge-light">4:30s</span>
</button>
</div>
</div>
</div>
<div class="carousel-item" >
<div class="card" style="width: 20rem; float: left; margin-right: 35px;">
<img src="https://static.stereogum.com/uploads/2019/02/Khalid-Talk-1549559609-640x640.jpg" class="card-img-top" alt="..." style="width: 100%">
<div class="card-body">
<h5 class="card-title">Talk <small class="text">By Khalid</small></h5>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<img src="https://img.icons8.com/wired/50/000000/facebook-like.png" width="12%" style="margin-left: 5px; margin-bottom: 5px;"><small class="text-muted"> 70K</small>
<button type="button" class="btn btn-primary" style="margin-left: 0px;">
Play <span class="badge badge-light">3:20s</span>
</button>
</div>
</div>
<div class="card" style="width: 20rem; float: left; margin-right: 35px;">
<img src="https://assets.audiomack.com/kabirofficial/263971f96b8aff618da209abfd09388e.jpeg" class="card-img-top" alt="..." style="width: 100%">
<div class="card-body">
<h5 class="card-title">Taki Taki <small class="text">By Dj Snake</small></h5>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star"></span>
<img src="https://img.icons8.com/wired/50/000000/facebook-like.png" width="12%" style="margin-left: 5px; margin-bottom: 5px;"><small class="text-muted"> 110K</small>
<button type="button" class="btn btn-primary" style="margin-left: 0px;">
Play <span class="badge badge-light">3:55s</span>
</button>
</div>
</div>
<div class="card" style="width: 20rem; float: left; margin-right: 35px;">
<img src="https://musicbox.gi/wp-content/uploads/2017/09/lagu-copyright-jason-derulo-x-david-guetta-ft-nicky-minaj-willy-william-goodbye-minost-project-edit-mp3-terbaru.png" class="card-img-top" alt="Good_Bye" style="width: 100%">
<div class="card-body">
<h5 class="card-title">Good Bye <small class="text">By Jason Derulo</small></h5>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star "></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<img src="https://img.icons8.com/wired/50/000000/facebook-like.png" width="12%" style="margin-left: 5px; margin-bottom: 5px;"><small class="text-muted"> 30K</small>
<button type="button" class="btn btn-primary" style="margin-left: 0px;position: relative; z-index: 2;">
Play <span class="badge badge-light">4:40s</span>
</button>
</div>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExamplecontrols" role="button" data-slide="prev" style="
margin-top: 6%; ">
<span class="carousel-control-prev-icon" aria-hidden="true" style=" padding:" ></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExamplecontrols" role="button" data-slide="next" style="
margin-top: 6%;">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<!-- Most Liked Songs -->
<div class="modal fade" id="exampleModalScrollable22" tabindex="-1" role="dialog" aria-labelledby="exampleModalScrollableTitle" aria-hidden="true">
<div class="modal-dialog modal-xl modal-dialog-scrollable" role="document" >
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title h4" id="myExtraLargeModalLabel" ><img src="https://drive.google.com/uc?id=1ZovkDl8zcB4q7P87yYTCaytbeDLMWm5u" width="9%"> The Songs of the Hour</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div style="width: 35%; background-color: white; padding: 12px; margin-left: -18px; border: 1px solid grey; margin-top: 12px;
display: inline-block;">
<h5 class="modal-title h4" id="myExtraLargeModalLabel" > <span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star"></span> <img src="https://img.icons8.com/wired/64/000000/facebook-like.png" style="margin-left: 5px;" width=12%> <small class="text-muted"> 290k</small> <button type="button" class="btn btn-primary" disabled style="margin-left: 4px; opacity: 1.0">
Play <span class="badge badge-light">490K</span></button></h5>
</div>
<div id="car" class="carousel slide" data-ride="carousel" style="margin-top: 30px;">
<div class="carousel-inner">
<div class="carousel-item active">
<!-- First -->
<div class="card" style="width: 20rem; float: left; margin-right: 35px; margin-left: 30px;">
<img src="https://i.pinimg.com/originals/e6/5f/0c/e65f0c6ede57573306205af9dd7a115c.jpg" class="card-img-top" style="width: 100%">
<div class="card-body" >
<h5 class="card-title">Shape Of You <small class="text">By Ed Sheeran</small> </h5>
<button class="btn btn-primary" type="button" style="position: relative;z-index: 2;" data-toggle="modal" data-target="#shape1">
Know More
</button>
<button type="button" class="btn btn-primary"style="margin-left: 18px; ">
Play Now <span class="badge badge-light">3:50s</span></button>
</div>
</div>
<!-- First-2 -->
<div class="card" style="width: 20rem; float: left; margin-right: 35px;">
<img src="https://is3-ssl.mzstatic.com/image/thumb/Music32/v4/16/26/03/1626032b-2a51-edd0-d371-1f18625be2f5/source/1200x1200bb.jpg" class="card-img-top" style="width: 100%">
<div class="card-body" >
<h5 class="card-title">RU With Me <small class="text">By Lost Frequencies</small> </h5>
<button class="btn btn-primary" type="button" style="position: relative;z-index: 2;" data-toggle="modal" data-target="#shape2">
Know More
</button>
<button type="button" class="btn btn-primary" style="margin-left: 18px;">
Play Now <span class="badge badge-light">4:10s</span></button>
</div>
</div>
<!-- First-3 -->
<div class="card" style="width: 20rem; float: left; ">
<img src="https://is1-ssl.mzstatic.com/image/thumb/Music117/v4/db/55/32/db553261-5570-717c-991e-c321ede68d47/source/1200x1200bb.jpg" class="card-img-top" style="width: 100%">
<div class="card-body" >
<h5 class="card-title">Attention <small class="text">By Charlie Puth</small> </h5>
<button class="btn btn-primary" type="button" style="position: relative;z-index: 2;" data-toggle="modal" data-target="#shape3">
Know More
</button>
<button type="button" class="btn btn-primary" style="margin-left: 18px;position: relative;z-index: 2;">
Play Now <span class="badge badge-light">4:04s</span></button>
</div>
</div>
</div>
<div class="carousel-item">
<!-- Third -->
<div class="card" style="width: 20rem; float: left; margin-right: 35px; margin-left: 30px;">
<img src="https://static-hive-images-ticketlabsinc1.netdna-ssl.com/upload/c_fill,h_600,w_600/rymtgmxc7mxqi0tqbrdf.jpg" class="card-img-top" style="width: 100%">
<div class="card-body" >
<h5 class="card-title">Alone <small class="text">By Alan Walker</small> </h5>
<button class="btn btn-primary" type="button" style="position: relative;z-index: 2;" data-toggle="modal" data-target="#shape4">
Know More
</button>
<button type="button" class="btn btn-primary" style="margin-left: 18px;">
Play Now <span class="badge badge-light">4:14s</span></button>
</div>
</div>
<!-- Third-2 -->
<div class="card" style="width: 20rem; float: left; margin-right: 35px;">
<img src="https://f4.bcbits.com/img/a2293560743_10.jpg" class="card-img-top" style="width: 100%">
<div class="card-body" >
<h5 class="card-title">Faded <small class="text">By Alan Walker</small> </h5>
<button class="btn btn-primary" type="button" style="position: relative;z-index: 2;" data-toggle="modal" data-target="#shape5">
Know More
</button>
<button type="button" class="btn btn-primary" style="margin-left: 18px;">
Play Now <span class="badge badge-light">3:56s</span></button>
</div>
</div>
<!--THird-3 -->
<div class="card" style="width: 20rem; float: left; ">
<img src="https://i.pinimg.com/originals/e3/c5/55/e3c55503141dfa4a0589939e90e8676a.jpg" class="card-img-top" style="width: 100%">
<div class="card-body" >
<h5 class="card-title">We don't Talk An. <small class="text">By Charlie Puth</small> </h5>
<button class="btn btn-primary" type="button" style="position: relative;z-index: 2;" data-toggle="modal" data-target="#shape6">
Know More
</button>
<button type="button" class="btn btn-primary" style="margin-left: 18px;position: relative;z-index: 2;">
Play Now <span class="badge badge-light">4:32s</span></button>
</div>
</div>
</div>
<div class="carousel-item">
<!-- Second -->
<div class="card" style="width: 20rem; float: left; margin-right: 35px; margin-left: 30px;">
<img src="https://www.audiophileusa.com/covers400water/98618.jpg" class="card-img-top" style="width: 100%">
<div class="card-body" >
<h5 class="card-title">I don't Care <small class="text">By Ed Sheeran</small> </h5>
<button class="btn btn-primary" type="button" style="position: relative;z-index: 2;" data-toggle="modal" data-target="#shape7">
Know More
</button>
<button type="button" class="btn btn-primary" style="margin-left: 18px;">
Play Now <span class="badge badge-light">4:20s</span></button>
</div>
</div>
<!-- Second-2 -->
<div class="card" style="width: 20rem; float: left; margin-right: 35px;">
<img src="https://www.ibighit.com/bts/images/bts/discography/love_yourself-answer/album-cover.jpg" class="card-img-top" style="width: 100%">
<div class="card-body" >
<h5 class="card-title">Love Yourself <small class="text">By Justin Bieber</small> </h5>
<button class="btn btn-primary" type="button" style="position: relative;z-index: 2;" data-toggle="modal" data-target="#shape8">
Know More
</button>
<button type="button" class="btn btn-primary" style="margin-left: 18px;">
Play Now <span class="badge badge-light">4:20s</span></button>
</div>
</div>
<!-- second-3 -->
<div class="card" style="width: 20rem; float: left; ">
<img src="https://static.qobuz.com/images/covers/68/81/0886446388168_600.jpg" class="card-img-top" style="width: 100%">
<div class="card-body" >
<h5 class="card-title">Someth. Just Li. <small class="text">By Chainsmoker</small> </h5>
<button class="btn btn-primary" type="button" style="position: relative;z-index: 2;" data-toggle="modal" data-target="#shape9">
Know More
</button>
<button type="button" class="btn btn-primary" style="margin-left: 18px;position: relative;z-index: 2;">
Play Now <span class="badge badge-light">4:20s</span></button>
</div>
</div>
</div>
<div class="carousel-item">
<!-- Fourth -->
<div class="card" style="width: 20rem; float: left; margin-right: 35px; margin-left: 30px;">
<img src="https://is2-ssl.mzstatic.com/image/thumb/Music/v4/2d/f8/4c/2df84c93-0458-6392-20bf-9a7e61ee1260/source/1200x1200bb.jpg" class="card-img-top" style="width: 100%">
<div class="card-body" >