-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcatalog.html
1086 lines (1076 loc) · 33.9 KB
/
catalog.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>
<meta charset="utf-8">
<title>Music Of A People Catalog</title>
<script>/* This HTML was generated by 📜 Scroll v110.1.0. https://scroll.pub */</script>
<style>@media print {.doNotPrint {display: none !important;}}</style>
<link rel="canonical" href="https://music.publicdomaincompany.com/catalog.html">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="description" content="A new music label from Public Domain Publishing Inc.">
<meta name="generator" content="Scroll v110.1.0">
<meta property="og:title" content="Music Of A People Catalog">
<meta property="og:description" content="A new music label from Public Domain Publishing Inc.">
<meta property="og:image" content="">
<meta name="twitter:card" content="summary_large_image">
</head>
<body>
<style>
figure {
margin: 0;
padding: 0;
}
.dropcap:first-letter {
font-size: 3rem;
line-height: .9em;
margin-right: .125rem;
display: block;
float: left;
}
.dinkus {
text-align: center;
padding: 1rem;
}
.dinkus span {
vertical-align: sub;
}
details {
margin-top: 10px;
}
summary {
font-family: "SF Pro", "Helvetica Neue", "Segoe UI", "Arial";
cursor: pointer;
}
.scrollCaptionedFigure {
display: block;
break-inside: avoid;
max-width: 100%;
text-align: center;
}
.scrollCaptionedFigure img {
max-width: 100%;
height: auto;
margin-top: .1875rem;
}
.scrollCaptionedFigure figcaption {
font-family: "SF Pro", "Helvetica Neue", "Segoe UI", "Arial";
font-size: .8rem;
}
.scrollCaptionedFigure figcaption .scrollParagraph {
margin-top: 0;
}
.scrollCodeBlock {
overflow: auto;
font-size: .8rem;
hyphens: none;
white-space: pre;
break-inside: avoid;
display: block;
margin: .5rem 0;
padding: .5rem;
border-radius: 0;
position: relative;
}
.codeWithHeader {
break-inside: avoid-column;
margin: 10px 0;
}
.codeHeader {
font-size: 80%;
text-align: center;
background: rgba(224, 224, 224, 0.4);
border: 1px solid rgba(204, 204, 204, 0.8);
border-bottom: 0;
margin-bottom: -7px;
padding: 4px 2px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
.scrollCodeBlock:hover .scrollCopyButton {
opacity: .5;
}
.scrollCodeBlock:hover .scrollCopyButton:hover {
opacity: .8;
}
.scrollCodeBlock:hover .scrollCopyButton:active {
opacity: 1;
}
.scrollCopyButton {
position: absolute;
top: .125rem;
right: .125rem;
font-size: .875rem;
cursor: pointer;
opacity: 0;
}
.scrollCopyButton::after {
content: "[ ]";
}
.scrollCopiedButton::after {
content: "[✓]";
}
html,body,div,span,p,ol,ul,li,table,figure {
margin: 0;
padding: 0;
border: 0;
vertical-align: baseline;
border-spacing: 0;
}
ol,ul {
padding-left: 1rem;
}
li {
margin-top: .4rem;
line-height: 1.4;
}
a {
text-decoration-color: transparent;
color: #36c;
}
a:hover {
text-decoration-color: initial;
}
sup,sub {
vertical-align: baseline;
position: relative;
top: -.375rem;
}
sub {
top: .375rem;
}
html {
padding: .25rem;
background-color: rgb(244,244,244);
font-family: Exchange,Georgia,serif;
color: #000;
font-size: var(--base-font-size, 16px);
hyphens: auto;
}
p {
margin-top: .4rem;
line-height: 1.4rem;
}
.scrollQuote {
break-inside: avoid;
display: block;
margin: .5rem 0;
padding: .5rem;
background: rgba(204,204,204,.5);
white-space: pre-line;
border-left: .5rem solid rgba(204,204,204,.8);
}
code {
font-size: .9rem;
background-color: rgba(204,204,204,.5);
padding: .125rem .25rem;
border-radius: .25rem;
}
.scrollParagraph {
text-align: justify;
}
center .scrollParagraph {
text-align: center;
}
.scrollColumns {
column-count: auto;
column-fill: balance;
column-width: 35ch;
column-gap: 1.5rem;
padding-left: 1.25rem;
padding-right: 1.25rem;
margin: auto;
}
.scrollSnippetContainer {
padding: 1ch 0;
break-inside: avoid;
text-align: justify;
}
h1,h2,h3,h4 {
margin: .625rem 0;
}
h1 {
font-size: 1.25rem;
}
h2 {
font-size: 1.125rem;
}
h3,h4 {
font-size: 1rem;
}
h1.scrollTitle {
text-align: center;
margin: auto;
margin-bottom: .15625rem;
margin-top: 0;
font-size: 1.75rem;
max-width: calc(100vw - 2 * (1.5625rem + 1.875rem));
}
h1.scrollTitle a {
color: #000;
}
.scrollDateline {
font-style: italic;
line-height: 1.4rem;
font-size: .75rem;
}
.scrollSection {
break-inside: avoid;
}
.scrollSection h1,.scrollSection h2,.scrollSection h3,.scrollSection h4 {
text-align: center;
}
h4.scrollQuestion {
text-align: left;
margin: 1.4rem 0 0 0;
}
.scrollSection:first-child h1,.scrollSection:first-child h2,.scrollSection:first-child h3,.scrollSection:first-child h4 {
margin-top: 0;
}
.scrollSection:first-child h4.scrollQuestion {
margin-top: 0;
}
.scrollNoteLink {
opacity: .4;
text-decoration: none;
}
.scrollNoteLink:hover {
opacity: 1;
}
.scrollFootNoteUsageLink {
opacity: .7;
text-decoration: none;
}
.scrollFootNoteUsageLink:hover {
opacity: 1;
}
.scrollHoverNote {
text-decoration: underline dashed 1px rgba(0,0,0,.1);
cursor: default;
}
.scrollCodeBlock {
border-left: .5rem solid rgba(204,204,204,.8);
}
.scrollTable {
table-layout: fixed;
font-family: "SF Pro", "Helvetica Neue", "Segoe UI", "Arial";
margin: .5rem 0;
overflow: hidden;
font-size: .8rem;
width: 100%;
hyphens: none;
border: 1px solid rgba(224,224,224,.8);
}
.scrollTable td,.scrollTable th {
padding: .1875rem;
overflow: hidden;
white-space: nowrap;
}
.scrollTable th {
text-transform: capitalize;
border-bottom: 2px solid rgba(0,0,0,.6);
text-align: left;
}
.scrollTable td {
cursor: zoom-in;
}
.scrollTable tr:nth-child(even) {
background: rgba(224,224,224,.6);
}
.scrollTable pre {
white-space: nowrap;
overflow: hidden;
margin: 0;
}
.scrollTable.expandedTable {
table-layout: unset;
background: white;
position: relative;
z-index: 10;
overflow: unset;
}
.scrollTable.expandedTable pre {
white-space: unset;
overflow: unset;
}
.scrollTable.expandedTable td,.scrollTable.expandedTable th {
overflow: unset;
white-space: unset;
}
.scrollTable.expandedTable td {
cursor: zoom-out;
}
.scrollByLine {
font-size: .875rem;
font-style: italic;
margin: .25rem 0;
text-align: center;
}
.scrollViewSourceBadge {
text-align: right;
position: absolute;
display: block;
right: 20px;
top: 8px;
}
.scrollViewSourceBadge svg {
width: 24px;
height: 24px;
fill: rgba(204,204,204,0.8);
}
.scrollViewSourceBadge svg:hover {
fill: #333;
}
.scrollViewSource {
text-align: center;
font-family: Verdana;
font-weight: 100;
}
.scrollViewSource a {
color: rgba(204,204,204,.5);
}
.scrollViewSource a:hover {
color: #333;
}
.scrollContinueReadingLink {
display: block;
text-align: center;
}
.scrollDashboard {
width: 100%;
font-size: 1.875rem;
text-align: center;
font-weight: bold;
break-inside: avoid;
margin-top: .5rem;
margin-bottom: .5rem;
}
.scrollDashboard td {
width: 33.3%;
border: 1px solid #e8e8e8;
}
.scrollDashboard span {
font-size: 1.25rem;
display: block;
}
.scrollChat span {
font-family: Verdana;
margin-top: .3125rem;
padding: .3125rem 1.25rem;
border-radius: .9375rem;
display: inline-block;
}
.scrollChatLeft span {
background: rgba(204,204,204, .5);
}
.scrollChatRight span {
color: white;
background: rgb(0,132,255);
}
.scrollYouTubeHolder {
position: relative;
width: 100%;
height: 0;
padding-bottom: 56.25%;
}
.scrollYouTubeEmbed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
<style>
.pageHeader {
position: absolute;
top: .25rem;
right: 0;
left: 0;
}
.pageHeader svg {
width: 1.875rem;
height: 1.875rem;
fill: rgba(204,204,204,.8);
}
.pageHeader svg:hover {
fill: #333;
}
.pageHeader a {
color: rgba(204,204,204,.8);
position: absolute;
font-size: 1.875rem;
line-height: 1.7rem;
text-decoration: none;
}
.pageHeader a:hover {
color: #333;
}
</style><div class="pageHeader doNotPrint">
<a style="text-align:left;left:1.5625rem;" href="index.html"><svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12.7166 3.79541C12.2835 3.49716 11.7165 3.49716 11.2834 3.79541L4.14336 8.7121C3.81027 8.94146 3.60747 9.31108 3.59247 9.70797C3.54064 11.0799 3.4857 13.4824 3.63658 15.1877C3.7504 16.4742 4.05336 18.1747 4.29944 19.4256C4.41371 20.0066 4.91937 20.4284 5.52037 20.4284H8.84433C8.98594 20.4284 9.10074 20.3111 9.10074 20.1665V15.9754C9.10074 14.9627 9.90433 14.1417 10.8956 14.1417H13.4091C14.4004 14.1417 15.204 14.9627 15.204 15.9754V20.1665C15.204 20.3111 15.3188 20.4284 15.4604 20.4284H18.4796C19.0806 20.4284 19.5863 20.0066 19.7006 19.4256C19.9466 18.1747 20.2496 16.4742 20.3634 15.1877C20.5143 13.4824 20.4594 11.0799 20.4075 9.70797C20.3925 9.31108 20.1897 8.94146 19.8566 8.7121L12.7166 3.79541ZM10.4235 2.49217C11.3764 1.83602 12.6236 1.83602 13.5765 2.49217L20.7165 7.40886C21.4457 7.91098 21.9104 8.73651 21.9448 9.64736C21.9966 11.0178 22.0564 13.5119 21.8956 15.3292C21.7738 16.7067 21.4561 18.4786 21.2089 19.7353C20.9461 21.0711 19.7924 22.0001 18.4796 22.0001H15.4604C14.4691 22.0001 13.6655 21.1791 13.6655 20.1665V15.9754C13.6655 15.8307 13.5507 15.7134 13.4091 15.7134H10.8956C10.754 15.7134 10.6392 15.8307 10.6392 15.9754V20.1665C10.6392 21.1791 9.83561 22.0001 8.84433 22.0001H5.52037C4.20761 22.0001 3.05389 21.0711 2.79113 19.7353C2.54392 18.4786 2.22624 16.7067 2.10437 15.3292C1.94358 13.5119 2.00338 11.0178 2.05515 9.64736C2.08957 8.73652 2.55427 7.91098 3.28346 7.40886L10.4235 2.49217Z"/></svg></a>
<a style="text-align:right;right: 1.5625rem;" title="View Source" href="https://github.com/breck7/music/blob/main/catalog.scroll"><svg xmlns="http://www.w3.org/2000/svg" width="92pt" height="92pt" viewBox="0 0 92 92"><path d="M90.156 41.965 50.036 1.848a5.913 5.913 0 0 0-8.368 0l-8.332 8.332 10.566 10.566a7.03 7.03 0 0 1 7.23 1.684 7.043 7.043 0 0 1 1.673 7.277l10.183 10.184a7.026 7.026 0 0 1 7.278 1.672 7.04 7.04 0 0 1 0 9.957 7.045 7.045 0 0 1-9.961 0 7.038 7.038 0 0 1-1.532-7.66l-9.5-9.497V59.36a7.04 7.04 0 0 1 1.86 11.29 7.04 7.04 0 0 1-9.957 0 7.04 7.04 0 0 1 0-9.958 7.034 7.034 0 0 1 2.308-1.539V33.926a7.001 7.001 0 0 1-2.308-1.535 7.049 7.049 0 0 1-1.516-7.7L29.242 14.273 1.734 41.777a5.918 5.918 0 0 0 0 8.371L41.855 90.27a5.92 5.92 0 0 0 8.368 0l39.933-39.934a5.925 5.925 0 0 0 0-8.371"/></svg></a>
</div>
<div class="scrollSection"><h1 class="scrollTitle"><a href="catalog.html">Music Of A People Catalog</a></h1>
</div>
<div class="scrollColumns" style="column-width:90ch;column-count:1;max-width:90ch;">
<table id="table1" class="scrollTable">
<thead><tr><th>SongName</th>
<th>Artist</th>
<th>CoverImage</th>
<th>Mp3Name</th>
<th>Genre</th>
</tr></thead>
<tbody><tr><td><a href="index.html#LemonHead">LemonHead</a></td>
<td><a href="https://www.youtube.com/watch?v=cjYDPGrfdDM">Scotty2Yachty</a></td>
<td>LemonHead</td>
<td>Lemonhead</td>
<td>Neu Metal</td>
</tr>
<tr><td><a href="index.html#Enjoy the Silence - Samuele Scelfo Edit">Enjoy the Silence - Samuele Scelfo Edit</a></td>
<td><a href="https://www.youtube.com/watch?v=xgcLwtGlgLU">Unconventional</a></td>
<td>EnjoyTheSilence</td>
<td>EnjoyTheSilence</td>
<td>alternative rock</td>
</tr>
<tr><td><a href="index.html#No Plans">No Plans</a></td>
<td><a href="https://www.youtube.com/watch?v=gWHx0x8KD0E">Justin Ransom</a></td>
<td>No Plans</td>
<td>No Plans</td>
<td></td>
</tr>
<tr><td><a href="index.html#Lofi Girl">Lofi Girl</a></td>
<td><a href="https://www.youtube.com/watch?v=2mHgdptQaMY">David E Beats</a></td>
<td>Lofi Girl</td>
<td>Lofi girl</td>
<td></td>
</tr>
<tr><td><a href="index.html#Dreams">Dreams</a></td>
<td><a href="https://www.youtube.com/watch?v=6Pm1FVPA_T8">Mr. Yohan</a></td>
<td>Dreams</td>
<td>Dreams</td>
<td></td>
</tr>
<tr><td><a href="index.html#Egypt">Egypt</a></td>
<td><a href="https://www.youtube.com/watch?v=RGwSak0n-Fw">Mr. Yohan</a></td>
<td>Egypt</td>
<td>Egypt</td>
<td></td>
</tr>
<tr><td><a href="index.html#Nigeria">Nigeria</a></td>
<td><a href="https://www.youtube.com/watch?v=beXj_dRjT8Q">Mr. Yohan</a></td>
<td>Nigeria</td>
<td>Nigeria</td>
<td></td>
</tr>
<tr><td><a href="index.html#Coffee Shop">Coffee Shop</a></td>
<td><a href="https://www.youtube.com/watch?v=Dk1AviaKr8c">Mr. Yohan</a></td>
<td>Coffee Shop</td>
<td>Coffee Shop</td>
<td></td>
</tr>
<tr><td><a href="index.html#Crossfire">Crossfire</a></td>
<td><a href="https://youtu.be/eH4F1Tdb040">Stepehen</a></td>
<td>Crossfire</td>
<td>Stephen - Crossfire</td>
<td></td>
</tr>
<tr><td><a href="index.html#Help Me Lose my mind (Mazde Remix)">Help Me Lose my mind (Mazde Remix)</a></td>
<td><a href="https://soundcloud.com/mazde">Disclosure</a></td>
<td>Help-Me-lose-my-Mind</td>
<td>Disclosure - Help Me Lose My Mind (Mazde Remix)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Burning Alive">Burning Alive</a></td>
<td><a href="https://soundcloud.com/8graves">8 Graves</a></td>
<td>Burning Alive</td>
<td>8 Graves - Burning Alive</td>
<td></td>
</tr>
<tr><td><a href="index.html#Cold Shoulder">Cold Shoulder</a></td>
<td><a href="https://soundcloud.com/8graves">8 Graves</a></td>
<td>Cold Shoulder</td>
<td>8 Graves - Cold Shoulder</td>
<td></td>
</tr>
<tr><td><a href="index.html#I was Wrong">I was Wrong</a></td>
<td><a href="https://soundcloud.com/thisisarizonamusic">A R I Z O N A</a></td>
<td>I was wrong</td>
<td>A R I Z O N A - I Was Wrong</td>
<td></td>
</tr>
<tr><td><a href="index.html#Trouble">Trouble</a></td>
<td><a href="https://soundcloud.com/AdamJensenMusic">Adam Jensen</a></td>
<td>Trouble</td>
<td>Adam Jensen - Trouble</td>
<td></td>
</tr>
<tr><td><a href="index.html#Dreams (feat. ELEA)">Dreams (feat. ELEA)</a></td>
<td><a href="https://soundcloud.com/adventureclub">Adventure Club</a></td>
<td>Dreams AdClub</td>
<td>Adventure Club - Dreams (feat. ELEA)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Wonder (feat. The Kite String Tangle)">Wonder (feat. The Kite String Tangle)</a></td>
<td><a href="https://soundcloud.com/adventureclub">Adventure Club</a></td>
<td>Wonder</td>
<td>Adventure Club - Wonder (feat. The Kite String Tangle)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Rise & Fall">Rise & Fall</a></td>
<td><a href="https://soundcloud.com/adventureclub">Adventure Club & Krewalla</a></td>
<td>Rise & Fall</td>
<td>Adventure Club & Krewella - Rise & Fall</td>
<td></td>
</tr>
<tr><td><a href="index.html#Dear Lillie">Dear Lillie</a></td>
<td><a href="https://soundcloud.com/aetheraudio">Aether</a></td>
<td>Dear Lillie</td>
<td>Aether - Dear Lillie</td>
<td></td>
</tr>
<tr><td><a href="index.html#Fragments">Fragments</a></td>
<td><a href="https://soundcloud.com/aetheraudio">Aether</a></td>
<td>Fragments</td>
<td>Aether - Fragments</td>
<td></td>
</tr>
<tr><td><a href="index.html#Tender">Tender</a></td>
<td><a href="https://soundcloud.com/aetheraudio">Aether</a></td>
<td>Tender</td>
<td>Aether - Tender</td>
<td></td>
</tr>
<tr><td><a href="index.html#If I Killed Someone For You">If I Killed Someone For You</a></td>
<td><a href="https://soundcloud.com/alecbenjamin">Alec Benjamin</a></td>
<td>Killed Someone</td>
<td>Alec Benjamin - If I Killed Someone For You</td>
<td></td>
</tr>
<tr><td><a href="index.html#Outrunning Karma">Outrunning Karma</a></td>
<td><a href="https://soundcloud.com/alecbenjamin">Alec Benjamin</a></td>
<td>Outrunning Karma</td>
<td>Alec Benjamin - Outrunning Karma</td>
<td></td>
</tr>
<tr><td><a href="index.html#Paper Love">Paper Love</a></td>
<td><a href="https://soundcloud.com/alliexandra">Allie X</a></td>
<td>Paper Love</td>
<td>Allie X - Paper Love</td>
<td></td>
</tr>
<tr><td><a href="index.html#You and I">You and I</a></td>
<td><a href="https://www.youtube.com/watch?v=xgcLwtGlgLU">ALOTT x Wankelmut x Enny-Mae</a></td>
<td>You and I</td>
<td>ALOTT x Wankelmut x Enny-Mae - You and I</td>
<td></td>
</tr>
<tr><td><a href="index.html#If God Had A Boat">If God Had A Boat</a></td>
<td><a href="https://www.anymamusic.com/">ANYMA</a></td>
<td>If God Had A Boat</td>
<td>ANYMA - If God Had A Boat</td>
<td></td>
</tr>
<tr><td><a href="index.html#Lord & Master">Lord & Master</a></td>
<td><a href="https://soundcloud.com/lindien">Apashe</a></td>
<td>Lord & Master</td>
<td>Apashe - Lord & Master</td>
<td></td>
</tr>
<tr><td><a href="index.html#I don't know why">I don't know why</a></td>
<td><a href="https://www.instagram.com/avaiion/">AVAION</a></td>
<td>I don't know why</td>
<td>AVAION - i don't know why</td>
<td></td>
</tr>
<tr><td><a href="index.html#Two Million">Two Million</a></td>
<td><a href="http://soundcloud.com/aviciiofficial">Avicii</a></td>
<td>Two Million</td>
<td>Avicii - Two Million</td>
<td></td>
</tr>
<tr><td><a href="index.html#GRRRLS">GRRRLS</a></td>
<td><a href="https://fanlink.to/AViVAShop">AViVA</a></td>
<td>GRRRLS</td>
<td>AViVA - GRRRLS</td>
<td></td>
</tr>
<tr><td><a href="index.html#Hypnotized">Hypnotized</a></td>
<td><a href="https://fanlink.to/AViVAShop">AViVA</a></td>
<td>Hypnotized</td>
<td>AViVA - Hypnotized</td>
<td></td>
</tr>
<tr><td><a href="index.html#Nightmare">Nightmare</a></td>
<td><a href="https://fanlink.to/AViVAShop">AViVA</a></td>
<td>Nightmares</td>
<td>AViVA - Nightmare</td>
<td></td>
</tr>
<tr><td><a href="index.html#Twisted">Twisted</a></td>
<td><a href="https://fanlink.to/AViVAShop">AViVA</a></td>
<td>Twisted</td>
<td>AViVA - Twisted</td>
<td></td>
</tr>
<tr><td><a href="index.html#Ghostbox">Ghostbox</a></td>
<td><a href="https://soundcloud.com/awaynotfound">AWAY x Crywolf</a></td>
<td>Ghostbox</td>
<td>AWAY x Crywolf - Ghostbox</td>
<td></td>
</tr>
<tr><td><a href="index.html#Rituals">Rituals</a></td>
<td><a href="https://soundcloud.com/awaynotfound">AWAY x Echoes</a></td>
<td>Rituals</td>
<td>AWAY x Echos - Ritual</td>
<td></td>
</tr>
<tr><td><a href="index.html#Blossom">Blossom</a></td>
<td><a href="https://soundcloud.com/ben-walter-12">Ben Walter</a></td>
<td>Blossom</td>
<td>Ben Walter - Blossom</td>
<td></td>
</tr>
<tr><td><a href="index.html#Between The Devil And The Deep Blue Sea">Between The Devil And The Deep Blue Sea</a></td>
<td><a href="https://soundcloud.com/xylo100">XYLØ</a></td>
<td>Between The Devil And The Deep Blue Sea</td>
<td>XYLØ - Between The Devil And The Deep Blue Sea</td>
<td></td>
</tr>
<tr><td><a href="index.html#Ocean Eyes (Astronomyy Remix)">Ocean Eyes (Astronomyy Remix)</a></td>
<td><a href="https://soundcloud.com/billieeilishsh">Billie Eilish</a></td>
<td>Ocean Eyes</td>
<td>Billie Eilish - Ocean Eyes (Astronomyy Remix)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Wings (Nu-Logic Remix)">Wings (Nu-Logic Remix)</a></td>
<td><a href="http://www.nulogicmusic.com/">Birdy</a></td>
<td>Wings</td>
<td>Birdy - Wings (Nu-Logic Remix)</td>
<td></td>
</tr>
<tr><td><a href="index.html#River">River</a></td>
<td><a href="https://soundcloud.com/thatgirlbishop">BISHOP</a></td>
<td>River</td>
<td>BISHOP - River</td>
<td></td>
</tr>
<tr><td><a href="index.html#Wild Horses">Wild Horses</a></td>
<td><a href="https://soundcloud.com/thatgirlbishop">BISHOP</a></td>
<td>Wild Horses</td>
<td>BISHOP - Wild Horses</td>
<td></td>
</tr>
<tr><td><a href="index.html#IDFC (Acoustic Version)">IDFC (Acoustic Version)</a></td>
<td><a href="https://soundcloud.com/iamblackbear">Blackbear</a></td>
<td>IDFC</td>
<td>Blackbear - IDFC (Acoustic Version)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Raging On A Sunday">Raging On A Sunday</a></td>
<td><a href="https://soundcloud.com/bohnesofficial">Bohnes</a></td>
<td>Raging On A Sunday</td>
<td>Bohnes - Raging On A Sunday</td>
<td></td>
</tr>
<tr><td><a href="index.html#Kingslayer">Kingslayer</a></td>
<td><a href="https://soundcloud.com/casterscurse">Caster & Ironheart</a></td>
<td>Kingslayer</td>
<td>Caster & Ironheart - Kingslayer</td>
<td></td>
</tr>
<tr><td><a href="index.html#DOOM">DOOM</a></td>
<td><a href="https://soundcloud.com/calivania">Calivania</a></td>
<td>DOOM</td>
<td>Calivania - DOOM</td>
<td></td>
</tr>
<tr><td><a href="index.html#Koto">Koto</a></td>
<td><a href="https://soundcloud.com/clozee">CloZee</a></td>
<td>Koto</td>
<td>CloZee - Koto</td>
<td></td>
</tr>
<tr><td><a href="index.html#You're Not Alone">You're Not Alone</a></td>
<td><a href="https://soundcloud.com/cma-music">CMA</a></td>
<td>You're Not Alone</td>
<td>CMA - You're Not Alone</td>
<td></td>
</tr>
<tr><td><a href="index.html#Midnight (Kygo Remix)">Midnight (Kygo Remix)</a></td>
<td><a href="https://soundcloud.com/kygo">Coldplay</a></td>
<td>Midnight</td>
<td>Coldplay - Midnight (Kygo Remix)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Snowglobe">Snowglobe</a></td>
<td><a href="https://soundcloud.com/iamcozmoe">Cozmoe</a></td>
<td>Snowglobe</td>
<td>cozmoe - Snowglobe</td>
<td></td>
</tr>
<tr><td><a href="index.html#we try">we try</a></td>
<td><a href="https://soundcloud.com/iamcozmoe">Cozmoe</a></td>
<td>we try</td>
<td>cozmoe - we try</td>
<td></td>
</tr>
<tr><td><a href="index.html#Feel Like (feat. CAPPA)">Feel Like (feat. CAPPA)</a></td>
<td><a href="https://soundcloud.com/dabinlee">Dabin</a></td>
<td>Feel Like</td>
<td>Dabin - Feel Like (feat. CAPPA)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Hold">Hold</a></td>
<td><a href="https://soundcloud.com/dabinlee">Dabin</a></td>
<td>Hold</td>
<td>Dabin - Hold (feat. Daniela Andrade)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Holding On (feat. Lowell)">Holding On (feat. Lowell)</a></td>
<td><a href="https://soundcloud.com/dabinlee">Dabin</a></td>
<td>Holding on</td>
<td>Dabin - Holding On (feat. Lowell)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Hope It Hurts (feat. Essenger)">Hope It Hurts (feat. Essenger)</a></td>
<td><a href="https://soundcloud.com/dabinlee">Dabin</a></td>
<td>Hope It Hurts</td>
<td>Dabin - Hope It Hurts (feat. Essenger)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Remember (feat. Noelle Johnson)">Remember (feat. Noelle Johnson)</a></td>
<td><a href="https://soundcloud.com/dabinlee">Dabin</a></td>
<td>Remember</td>
<td>Dabin - Remember (feat. Noelle Johnson)</td>
<td></td>
</tr>
<tr><td><a href="index.html#The Take Down">The Take Down</a></td>
<td><a href="https://soundcloud.com/dabinlee">Dabin & Koda</a></td>
<td>The Take Down</td>
<td>Dabin & Koda - The Take Down</td>
<td></td>
</tr>
<tr><td><a href="index.html#When This Is Over (feat. Donovan Woods)">When This Is Over (feat. Donovan Woods)</a></td>
<td><a href="https://soundcloud.com/dabinlee">Dabin & Nurko</a></td>
<td>When this is over</td>
<td>Dabin & Nurko - When This Is Over (feat. Donovan Woods)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Again">Again</a></td>
<td><a href="https://soundcloud.com/dabinlee">Dabin x MYRNE</a></td>
<td>Again</td>
<td>Dabin x MYRNE - Again</td>
<td></td>
</tr>
<tr><td><a href="index.html#Get Lucky (Razihel Remix)">Get Lucky (Razihel Remix)</a></td>
<td><a href="https://soundcloud.com/razihel">Daft Punk</a></td>
<td>Get Lucky</td>
<td>Daft Punk - Get Lucky (Razihel Remix)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Self Control">Self Control</a></td>
<td><a href="https://soundcloud.com/dallask">DallasK</a></td>
<td>Self Control</td>
<td>DallasK - Self Control</td>
<td></td>
</tr>
<tr><td><a href="index.html#i don't give a f**k about it">i don't give a f**k about it</a></td>
<td><a href="https://soundcloud.com/damp-state">DAMPSTATE</a></td>
<td>I don't give</td>
<td>DAMPSTATE - i don't give a f**k about it</td>
<td></td>
</tr>
<tr><td><a href="index.html#0:59">0:59</a></td>
<td><a href="https://soundcloud.com/2emedanger">DANGER</a></td>
<td>Danger</td>
<td>DANGER - 0-59</td>
<td></td>
</tr>
<tr><td><a href="index.html#Waking Up">Waking Up</a></td>
<td><a href="https://linktr.ee/dannyolsonmusic">Danny Olsen & Becca Krueger</a></td>
<td>Waking Up</td>
<td>Danny Olson & Becca Krueger - Waking Up</td>
<td></td>
</tr>
<tr><td><a href="index.html#White Noise (feat. Ryder)">White Noise (feat. Ryder)</a></td>
<td><a href="https://soundcloud.com/danrell">Danrell</a></td>
<td>White Noise</td>
<td>Danrell - White Noise (feat. Ryder)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Medicine (Sound Remedy Remix)">Medicine (Sound Remedy Remix)</a></td>
<td><a href="http://soundcloud.com/soundremedy">Daughter</a></td>
<td>Medicine</td>
<td>Daughter - Medicine (Sound Remedy Remix)</td>
<td></td>
</tr>
<tr><td><a href="index.html#All I Want (Manila Killa Remix)">All I Want (Manila Killa Remix)</a></td>
<td><a href="https://soundcloud.com/manilakilla">Dawn Golden</a></td>
<td>All I Want</td>
<td>Dawn Golden - All I Want (Manila Killa Remix)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Stardust">Stardust</a></td>
<td><a href="https://soundcloud.com/dniemusic">DNIE</a></td>
<td>Stardust</td>
<td>DNIE - Stardust</td>
<td></td>
</tr>
<tr><td><a href="index.html#Lost & Found (feat. Meggie York)">Lost & Found (feat. Meggie York)</a></td>
<td><a href="https://soundcloud.com/dreweybear/tracks">Dreweybear</a></td>
<td>Lost & Found</td>
<td>Dreweybear - Lost & Found (feat. Meggie York)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Demons">Demons</a></td>
<td><a href="https://soundcloud.com/droeloemusic">DROELOE</a></td>
<td>Demons</td>
<td>DROELOE - Demons</td>
<td></td>
</tr>
<tr><td><a href="index.html#Oath (TWO LANES REMIX)">Oath (TWO LANES REMIX)</a></td>
<td><a href="https://soundcloud.com/droeloemusic">DROELOE</a></td>
<td>Oath</td>
<td>DROELOE - Oath (TWO LANES REMIX)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Panorama">Panorama</a></td>
<td><a href="https://soundcloud.com/droeloemusic">DROELOE</a></td>
<td>Panorama</td>
<td>DROELOE - Panorama</td>
<td></td>
</tr>
<tr><td><a href="index.html#Boys Do Cry">Boys Do Cry</a></td>
<td><a href="https://soundcloud.com/itsdylanmatthew">Dylan Matthew</a></td>
<td>Boys Do Cry</td>
<td>Dylan Matthew - Boys Do Cry</td>
<td></td>
</tr>
<tr><td><a href="index.html#Summer 16">Summer 16</a></td>
<td><a href="https://soundcloud.com/itsdylanmatthew">Dylan Matthew</a></td>
<td>Summer 16</td>
<td>Dylan Matthew - Summer 16</td>
<td></td>
</tr>
<tr><td><a href="index.html#Wait For Us">Wait For Us</a></td>
<td><a href="https://soundcloud.com/ebenofficial">EBEN & Meggie York</a></td>
<td>Wait For Us</td>
<td>EBEN & Meggie York - Wait For Us</td>
<td></td>
</tr>
<tr><td><a href="index.html#Love Story">Love Story</a></td>
<td><a href="https://soundcloud.com/ebenofficial">EBEN & Zack Gray</a></td>
<td>Love Story</td>
<td>EBEN & Zack Gray - Love Story</td>
<td></td>
</tr>
<tr><td><a href="index.html#Crazy">Crazy</a></td>
<td><a href="https://soundcloud.com/echosofficial">ECHOS</a></td>
<td>Crazy</td>
<td>Echos - Crazy</td>
<td></td>
</tr>
<tr><td><a href="index.html#Euphoria">Euphoria</a></td>
<td><a href="https://soundcloud.com/echosofficial">ECHOS</a></td>
<td>Euphoria</td>
<td>Echos - Euphoria</td>
<td></td>
</tr>
<tr><td><a href="index.html#Guest Room">Guest Room</a></td>
<td><a href="https://soundcloud.com/echosofficial">ECHOS</a></td>
<td>Guest Room</td>
<td>Echos - Guest Room</td>
<td></td>
</tr>
<tr><td><a href="index.html#King of Disappointment">King of Disappointment</a></td>
<td><a href="https://soundcloud.com/echosofficial">ECHOS</a></td>
<td>King of Disappointment</td>
<td>Echos - King of Disappointment</td>
<td></td>
</tr>
<tr><td><a href="index.html#Saints">Saints</a></td>
<td><a href="https://soundcloud.com/echosofficial">ECHOS</a></td>
<td>Saints</td>
<td>Echos - Saints</td>
<td></td>
</tr>
<tr><td><a href="index.html#Tomorrow (Kicks N Licks Remix)">Tomorrow (Kicks N Licks Remix)</a></td>
<td><a href="https://soundcloud.com/echosofficial">ECHOS</a></td>
<td>Tomorrow</td>
<td>Echos - Tomorrow (Kicks N Licks Remix)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Vacant">Vacant</a></td>
<td><a href="https://soundcloud.com/echosofficial">ECHOS</a></td>
<td>Vacant</td>
<td>Echos - Vacant</td>
<td></td>
</tr>
<tr><td><a href="index.html#Take">Take</a></td>
<td><a href="https://soundcloud.com/echosofficial">ECHOS</a></td>
<td>Take</td>
<td>Echos - Take</td>
<td></td>
</tr>
<tr><td><a href="index.html#Gravity">Gravity</a></td>
<td><a href="https://soundcloud.com/iameden">EDEN</a></td>
<td>Gravity</td>
<td>EDEN - Gravity</td>
<td></td>
</tr>
<tr><td><a href="index.html#Wake Up">Wake Up</a></td>
<td><a href="https://soundcloud.com/iameden">EDEN</a></td>
<td>Wake Up</td>
<td>EDEN - Wake Up</td>
<td></td>
</tr>
<tr><td><a href="index.html#drugs">drugs</a></td>
<td><a href="https://soundcloud.com/iameden">EDEN</a></td>
<td>drugs</td>
<td>EDEN - drugs</td>
<td></td>
</tr>
<tr><td><a href="index.html#XO">XO</a></td>
<td><a href="https://soundcloud.com/iameden">EDEN</a></td>
<td>XO</td>
<td>EDEN - XO</td>
<td></td>
</tr>
<tr><td><a href="index.html#End Credits (feat. Leah Kelly)">End Credits (feat. Leah Kelly)</a></td>
<td><a href="https://soundcloud.com/iameden">EDEN</a></td>
<td>End Credits</td>
<td>EDEN - End Credits (feat. Leah Kelly)</td>
<td></td>
</tr>
<tr><td><a href="index.html#crash">crash</a></td>
<td><a href="https://soundcloud.com/iameden">EDEN</a></td>
<td>crash</td>
<td>EDEN - crash</td>
<td></td>
</tr>
<tr><td><a href="index.html#Rock & Roll">Rock & Roll</a></td>
<td><a href="https://soundcloud.com/iameden">EDEN</a></td>
<td>Rock & Roll</td>
<td>music name here - remember img must be in .mp3 formate and it's inside the songs folder of this project folder</td>
<td></td>
</tr>
<tr><td><a href="index.html#Drown (feat. Au/Ra)">Drown (feat. Au/Ra)</a></td>
<td><a href="https://soundcloud.com/ekalimusic/">EKALI</a></td>
<td>Drown</td>
<td>Ekali - Drown (feat. Au-Ra)</td>
<td></td>
</tr>
<tr><td><a href="index.html#Fairy Tale">Fairy Tale</a></td>
<td><a href="https://soundcloud.com/ekalimusic/">Ekali & Elohim</a></td>
<td>Fairy Tale</td>
<td>Ekali & Elohim - Fairy Tale</td>
<td></td>
</tr>
<tr><td><a href="index.html#Pretty Little Gangster">Pretty Little Gangster</a></td>
<td><a href="www.ellaisaacson.com">Ella Isaacson</a></td>
<td>Pretty Little Gangster</td>
<td>Ella Isaacson - Pretty Little Gangster</td>
<td></td>
</tr>
<tr><td><a href="index.html#Ruins">Ruins</a></td>
<td><a href="www.ellaisaacson.com">Ella Isaacson</a></td>
<td>Ruins</td>
<td>Ella Isaacson - Ruins</td>
<td></td>
</tr>
<tr><td><a href="index.html#All On My Line">All On My Line</a></td>
<td>Revenue Hefner</td>
<td>All-On-My-Line</td>
<td>All-On-My-Line</td>
<td></td>
</tr>
<tr><td><a href="index.html#Pushin On' Foot">Pushin On' Foot</a></td>
<td>Revenue Hefner</td>
<td>Pushin-On-Foot</td>
<td>Pushin-On-Foot</td>
<td></td>
</tr>
<tr><td><a href="index.html#Lost Sky - Vision NCS">Lost Sky - Vision NCS</a></td>