-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1081 lines (825 loc) · 51.7 KB
/
Copy pathindex.html
File metadata and controls
1081 lines (825 loc) · 51.7 KB
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">
<meta name="viewport" content="width=device-width, minimum-scale = 1.0, initial-scale = 1.0, maximum-scale = 5.0, user-scalable=yes, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Francis Herrera's thesis project, an informative website that promotes local music scene through motivation and guiding users on how to operate as independent artists. This is in partial fulfillment of AB Information Design">
<meta property="og:title" content="Soundfarer">
<meta property="og:type" content="website">
<!-- <meta property="og:image" content="http://admu.uxsociety.org/uxnchill/uxchill-image.png"> -->
<meta property="og:description" content="Francis Herrera's thesis project, an informative website that promotes local music scene through motivation and guiding users on how to operate as independent artists. This is in partial fulfillment of AB Information Design">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,800|Raleway:300,400,700,900" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="journey.css">
</head>
<body>
<section id="index" class='block'>
<!-- <nav class="flex">
<img src="./resources/logo/logo.svg" alt="logo">
</nav> -->
<section id="landing">
<video style="min-height: 90vh; min-width: 100%;" autoplay loop>
<source src="./resources/video/thesis.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
</video>
<!-- <iframe style="min-height: 95vh; min-width: 100%;" src="https://www.youtube.com/embed/p2Q_usTuZGs?autoplay=1&controls=0&loop=1&playlist=p2Q_usTuZGs;showinfo=0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> -->
</section>
<section id="journey">
<img src="./resources/graphics/Website_Elements-14.png" alt="logo" id="j-1">
<div class="img2"></div>
<div class="img3"></div>
<div class="navtrack">
<a href="#journey">JOURNEY</a>
<a href="#stories">STORIES</A>
<a href="#about">ABOUT</A>
</div>
<div class="j-3">
<img src="./resources/graphics/Website_ Elements-02.png" alt="logo">
<h3>The website contains a progress<br> tracker that is meant to help artists that<br> strive to become more involved with<br> the local music scene.<br>
<br> The tasks provided will help the<br> users to gain an understanding of<br> the local music scene, to make<br> connections, and to grow as artists.</h3>
</div>
<div class="j-4">
<img src="./resources/graphics/Website_Elements-05.png" alt="logo">
<div>
<h3>You need to sign up so you can start<br> tracking your progress! </h3>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#signup">
<div id="j-5"></div>
</button>
</div>
</section>
<section id="sign">
<div class="main-signup">
<div class="modal fade" id="signup" tabindex="-1" role="dialog" aria-labelledby="signup" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="j-5_modal-content">
<div class="container flex justifyCenter" style="width:100%; height: 100%;">
<div class="signup-container">
<input id="name" type="text" required>
<button id="j-5b" data-dismiss="modal" onclick="toggleProgress()"></button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="stories">
<div class="flex">
<div class="s-1">
<p>Many artists have their own journeys in the local music scene, and their stories are personal and unique to themselves. Many established artists had gone through their own trials and troubles before making it to where they are today.
<br>
<br>These are stories of various artists about their own experiences and insights over the course of their own journeys.</p>
<img src="./resources/graphics/Website Elements-07.png" alt="local-stories">
</div>
<div class="s-2">
<div style="margin: auto">
<img src="./resources/graphics/Website Elements-17.png" alt="featured-stories" style="margin-bottom: 12px">
<div class="stories-grid">
</div>
</div>
<div class="artist1">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#art1">
<div id="artb1"></div>
</button>
<div class="modal fade" id="art1" tabindex="-1" role="dialog" aria-labelledby="art1" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="stories-container">
<h2>A STORY FROM</h2>
<h1>MOONWLK</h1>
<p>I started as every musician in the universe would start. First with inspiration, then passion, and last up, until today, perseverance. Becoming successful, let alone noticed, in the industry or even the local "scene"
does not happen with magic, nor does it happen overnight. Don't worry about pleasing people with trends or gimmicks. If they like what you like, then you will be happy.
<BR>
<BR>The success all depends on two things: a humble attitude, and the connections that you make. The Philippines, although dense with talent, is very small in terms of area. Even if you don't play in giant shows,
you'll never know which important figure will be watching you at that five person attended gig. </p>
</div>
<div class="otherstories">
<h3>MORE STORIES</h3>
<button type="button" class="btn btn-primary" data-dismiss="modal" data-toggle="modal" data-target="#art2">
<div id="b2circ"></div>
</button>
<button type="button" class="btn btn-primary" data-dismiss="modal" data-toggle="modal" data-target="#art3">
<div id="b3circ"></div>
</button>
<button type="button" class="btn btn-primary" data-dismiss="modal" data-toggle="modal" data-target="#art4">
<div id="b4circ"></div>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="artist2">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#art2">
<div id="artb2"></div>
</button>
<div class="modal fade" id="art2" tabindex="-1" role="dialog" aria-labelledby="art2" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="stories-container">
<h2>A STORY FROM MIGIE GARCIA OF</h2>
<h1>BASICALLY SATURDAY NIGHT</h1>
<p>When BSN started I was still in the process of writing songs for myself. These songs consisted mainly about how I felt, how I lived, how I perceived things around me. BSN is a band based on love, friendship, and music. Prior to the band, I was battling a tough decision on if should still pursue this music career that I have been building through the previous years. Coming from a family of entrepreneurs and people in corporate business, it was quite tough for the folks to really understand what it was about performing and creating music that made me so madly eager and almost obsessed becoming an artist. Throughout all the tries, I finally came back “home”. Faisal, a very good friend of mine and drummer of BSN, had asked me to come over for “old time sake” and maybe get a jam in there or two. Junoy, who is also a very close friend of mine and who is the guitarist of the band., was there as well. We must’ve jammed a good 3-4 hours just going over the songs that I had written prior to BSN’s existence. <br><br>Junoy and I used to hangout in this jazz bar in the south called “INCOGNITO”. There was a jazz band performing that evening and Jun’s and I were down to our last few beers to cap the evening when we both decided that we wanted to jam with the jazz band. I took the microphone, Junoy was on the guitar, and on the bass was Arvin Dale. We played a couple of songs and asked Arvin if he’d like to jam with us on a Saturday night. We used to rehearse every Saturday night hence the name. Jairus Paul, I knew back in Southridge when I used to attend there along with Faisal. Jai, with little training on the keys, filled in the space and added the flavor to our sound. That’s how we got together as a band. We always had a bond and it was always based around the music we listen to and the music we make. </p>
</div>
<div class="otherstories">
<h3>MORE STORIES</h3>
<button type="button" class="btn btn-primary" data-dismiss="modal" data-toggle="modal" data-target="#art4">
<div id="b4circ"></div>
</button>
<button type="button" class="btn btn-primary" data-dismiss="modal" data-toggle="modal" data-target="#art3">
<div id="b3circ"></div>
</button>
<button type="button" class="btn btn-primary" data-dismiss="modal" data-toggle="modal" data-target="#art5">
<div id="b5circ"></div>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="artist3">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#art3">
<div id="artb3"></div>
</button>
<div class="modal fade" id="art3" tabindex="-1" role="dialog" aria-labelledby="art3" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="stories-container">
<h2>A STORY FROM</h2>
<h1>OUR INFLATABLE FRIENDS</h1>
<p>We had a difficult time booking gigs when we were starting out and even today, we still struggle with opportunities to perform. We are grateful for our org, the Ateneo Musicians Pool, for giving us the platform to share our music in one of our first major gigs. However, there was one distinct performance in our first year together where we realized that a music career cannot survive on passion alone. We were invited to play in Exile, when it was still in Katipunan, and we were told that it would be a full band setup, meaning that amplifiers and a drum kit were to be provided. We arrived in Exile with none of these things. We brought our guitars, pedals, and cables, but nowhere to plug these in. Our drummer, meanwhile, did not even have an instrument to play with. The preceding band actually brought their own drum set and amplifiers. The worst thing of all is that we followed suit and pushed through with the performance despite the incomplete setup and the measly talent fee. Our guitarist drove all the way to his house to pick up his kit and amplifiers and back to the event.
<br><br>If there’s anything we learned as a band over the years is to assert ourselves and to demand respect as professionals. We learned when to decline if the circumstances of the gig would leave us at a disadvantage. We learned to ask for more even if meant getting fewer opportunities. Sadly, not everyone possesses that privilege to decline and you are ultimately forced to create a spaces for yourselves in the local music scene.
</P></div>
<div class="otherstories">
<h3>MORE STORIES</h3>
<button type="button" class="btn btn-primary" data-dismiss="modal" data-toggle="modal" data-target="#art1">
<div id="b1circ"></div>
</button>
<button type="button" class="btn btn-primary" data-dismiss="modal" data-toggle="modal" data-target="#art2">
<div id="b2circ"></div>
</button>
<button type="button" class="btn btn-primary" data-dismiss="modal" data-toggle="modal" data-target="#art5">
<div id="b5circ"></div>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="artist4">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#art4">
<div id="artb4"></div>
</button>
<div class="modal fade" id="art4" tabindex="-1" role="dialog" aria-labelledby="art4" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="stories-container">
<h2>A STORY FROM</h2>
<h1>TURN ME ON HOLLY</h1>
<p>Starting a band in the underground scene is an uphill battle. Especially when no one knows about your music. Looking for a place to play on and production houses to line you up for gigs is, of course, also difficult.
But thankfully, there were Facebook groups looking for bands to line up bands in their bars. Although it wasn't the scene we wanted to be in, but it was a definitely a good start. We played a lot of "open for
line up" gigs and since it was some kind of an open mic, we got to play with a lot of bands from different genres, from metal to reggae, you name it!
<BR>
<BR> It took us one year of doing these type of shows before we started getting bigger gigs. We're still a long way to go, but the gigs are getting better, and social media and online streaming services are definitely
helping us bridge the gap from our target audience and our music.
</div>
<div class="otherstories">
<h3>MORE STORIES</h3>
<button type="button" class="btn btn-primary" data-dismiss="modal" data-toggle="modal" data-target="#art2">
<div id="b2circ"></div>
</button>
<button type="button" class="btn btn-primary" data-dismiss="modal" data-toggle="modal" data-target="#art1">
<div id="b1circ"></div>
</button>
<button type="button" class="btn btn-primary" data-dismiss="modal" data-toggle="modal" data-target="#art5">
<div id="b5circ"></div>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="artist5">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#art5">
<div id="artb5"></div>
</button>
<div class="modal fade" id="art5" tabindex="-1" role="dialog" aria-labelledby="art5" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="stories-container">
<h2>A STORY FROM</h2>
<h1>AHJU$$I</h1>
<p>Honestly, making music is a very unforgiving hobby. Often times, the pressure of creating and turning nothing into something can get to you. But once you get over that hurdle, it’s worth it. That’s what keeps me going when I struggle with my sound. I learned that the best way to approach your music is to not approach it at all. There’s a nasty tendency of ogling over the idea of a finished product. Consequently, we end up forgetting what it takes to get there and it severely affects our output. As cliche as it sounds, the music will come to you — as long as you research, experiment, and most importantly be patient with yourself. Relax and don’t let the pressure get to you.
<BR><BR>When you’re not making music, listen to some albums. Watch gigs. Dance in the club. Ted Talks are cool too. Do whatever you please because it is all part of a longitudinal process! Your music is a reflection of who you are and the more honest you are with yourself, the better your music will be.
</p>
</div>
<div class="otherstories">
<h3>MORE STORIES</h3>
<button type="button" class="btn btn-primary" data-dismiss="modal" data-toggle="modal" data-target="#art3">
<div id="b3circ"></div>
</button>
<button type="button" class="btn btn-primary" data-dismiss="modal" data-toggle="modal" data-target="#art1">
<div id="b1circ"></div>
</button>
<button type="button" class="btn btn-primary" data-dismiss="modal" data-toggle="modal" data-target="#art4">
<div id="b4circ"></div>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="flex justifyEnd" id="s-3">
<img src="./resources/graphics/Website Elements-09.png" alt="graphics 9a">
</div>
</section>
<section id="about">
<div class="flex justifyEnd">
<img src="./resources/graphics/Website Elements-09 (1).png" alt="graphics 9b">
</div>
<div class="flex justifyCenter">
<div id="a-1" class="flex justifyCenter alignCenter flexColumn">
<img src="./resources/graphics/Website Elements-15.png" alt="about-title">
<p>The website aims to motivate its users through testimonials from various other local artists and their experiences and to provide the necessary information and resources through a progress tracker that will help them to understand
how to operate as an independent artist in the local music scene.</p>
</div>
</div>
<div id="a-4">
<img src="./resources/graphics/Website Elements-04.png" alt="a-2" id="a-2">
<div class="flex justifyEnd">
<img src="./resources/graphics/Website Elements-03.png" alt="a-3" id="a-3">
</div>
</section>
</section>
<section id="progress" class="none">
<img src="./resources/graphics/Website Elements-90.png" alt="logo" id="topleft">
<img src="./resources/graphics/Website Elements-92.png" alt="logo" id="topright">
<div class="prognav">
<a href="/#tracker">TRACKER</a>
<a href="/#recordlabel">STUDIOS</a>
<a href="/#giglocation">LOCATIONS</a>
<a href="/">LOGOUT</a>
</div>
<div class="welcome">
<h3>Welcome,</h3>
<h2 id="username">USER</h2>
</div>
<!-- page load modal -->
<!-- <script type="text/javascript">
$(window).on('load',function(){
$('#pageload').modal('show');
});
</script> -->
<div class="pload">
<div class="modal fade" id="pageload" tabindex="-1" role="dialog">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<p>
<b>Welcome to your progress tracker!</b><br><br>
Here you can find eight separate tasks that you have to accomplish in order to understand more about how to be an independent artist and the kind of connections and people you’ll meet.
<br><br>To complete the tasks, all you have to do is press “I’m Done!”. This journey is yours and yours alone; you have to be honest with yourself regarding whether or not you have accomplished the tasks.
<br><br>Good luck!
</p>
</div>
</div>
</div>
</div>
</div>
<div class="pload">
<div class="modal fade" id="congrats" tabindex="-1" role="dialog">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<p>
<br><br><b>Congratulations! You’ve finished all the tasks!</b><br><br>
Everything you have accomplished up to this point has taught you the basics and then some of how to manage being an independent artist in the local music scene.
<br><br>What will you do next? What do you aim to accomplish? The choice is up to you. This part is done, but your journey is far from over.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- database modal popup -->
<!-- <script type="text/javascript">
$(window).scroll(function() {
if ($(document).scrollTop() > 800) {
$('#databasemodal').modal('show');
}
});
</script> -->
<div class="pload">
<div class="modal fade" id="databasemodal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<p style="margin-top: 60px">
<b>This is the database.
</b><br><br>
As you go through the progress tracker, you’ll come across tasks that will require you to go to places and meet different kinds of people. This database has six different independent record labels that can help you produce your music, and six different locations where you can find gigs.
<br><br>The database contains addresses, contact details, and open hours of each place, so you can go through them and use the information to help you accomplish your tasks.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- tracker -->
<div class="tracker" id="tracker">
<img src="./resources/graphics/Website_Elements-16.png" alt="logo" id="pathway">
<div class="trackstart">start here!</div>
<!-- Button trigger modal -->
<div class="p-1">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#task1">
<div class="current" id="circle1"></div>
</button>
<div class="modal fade" id="task1" tabindex="-1" role="dialog" aria-labelledby="Task1Content" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<h1>TASK #1</h1>
<h2>WRITE A SONG</h2>
<p><B>STEP 1:</B> Figure out what the story/message of your song will be.
<BR><B>STEP 2:</B> Create the foundations for the song (e.g. lyric writing, chord progressions, BPM, etc.)
<BR><B>STEP 3:</B> Figure out the layering (other instruments) and the segments (verses, chorus, etc.)
<BR><B>STEP 4:</B> (if you want to make a demo) layer the various tracks using programs such as Ableton, Logic Pro, or GarageBand)
</p>
</div>
<div class="trackerbuttons">
<button class="bt-done" data-dismiss="modal" onclick="toggleTask2()"></button>
<!-- I'm Done! -->
<button class="bt-back" data-dismiss="modal"></button>
<!-- Go Back -->
</div>
</div>
</div>
</div>
</div>
<div class="p-2">
<button type="button" id="task2-button" class="btn btn-primary" data-toggle="modal" data-target="#task2" disabled>
<div class="question" id="circle2"></div>
</button>
<div class="modal fade" id="task2" tabindex="-1" role="dialog" aria-labelledby="Task2Content" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<h1>TASK #2</h1>
<h2>PLAY YOUR FIRST GIG</h2>
<p><B>STEP 1:</B> Research on venues that hold open mics/gig opportunities.
<BR><B>STEP 2:</B> Contact them regarding sign-ups (usually first come, first serve.
<BR><B>STEP 3:</B> If booked, prepare your own equipment for playing.
<BR><B>STEP 4:</B> Arrive on time and sign-in to the venue to assure that you are playing.</p>
</div>
<div class="trackerbuttons">
<button class="bt-done" data-dismiss="modal" onclick="toggleTask3()"></button>
<!-- I'm Done! -->
<button class="bt-back" data-dismiss="modal"></button>
<!-- Go Back -->
</div>
</div>
</div>
</div>
</div>
<div class="p-3">
<button type="button" id="task3-button" class="btn btn-primary" data-toggle="modal" data-target="#task3" disabled>
<div class="question" id="circle3"></div>
</button>
<div class="modal fade" id="task3" tabindex="-1" role="dialog" aria-labelledby="Task3Content" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<h1>TASK #3</h1>
<h2>CREATE SOCIAL MEDIA PLATFORMS</h2>
<p>
<b>STEP 1:</B> Create pages for your brand on platforms such as Facebook, Twitter, Instagram, etc.
<BR><B>STEP 2:</B> Share your song(s) through these platforms.
<BR><B>STEP 3:</B> Share your schedules for when you play and what venues you’ll play in.
<BR><B>STEP 4:</B> Reach out to your audience: make posts that’ll let them know when you plan to play or when you will release songs.
</p>
</div>
<div class="trackerbuttons">
<button class="bt-done" data-dismiss="modal" onclick="toggleTask4()"></button>
<!-- I'm Done! -->
<button class="bt-back" data-dismiss="modal"></button>
<!-- Go Back -->
</div>
</div>
</div>
</div>
</div>
<div class="p-4">
<button type="button" id="task4-button" class="btn btn-primary" data-toggle="modal" data-target="#task4" disabled>
<div class="question" id="circle4"></div>
</button>
<div class="modal fade" id="task4" tabindex="-1" role="dialog" aria-labelledby="Task4Content" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<h1>TASK #4</h1>
<h2>RECORD A SINGLE</h2>
<p><B>STEP 1:</B> Have a song ready to record.
<BR><B>STEP 2:</B> Contact the studio you want to record at and book the hours you will need for recording.
<BR><B>STEP 3:</B> When at the recording session, coordinate with the point person about the procedures of recording and the specifics of your song, such as the BPM.
<BR><B>STEP 4:</B> When you’re satisfied with the song, have it mixed and mastered.</p>
</div>
<div class="trackerbuttons">
<button class="bt-done" data-dismiss="modal" onclick="toggleTask5()"></button>
<!-- I'm Done! -->
<button class="bt-back" data-dismiss="modal"></button>
<!-- Go Back -->
</div>
</div>
</div>
</div>
</div>
<div class="p-5">
<button type="button" id="task5-button" class="btn btn-primary" data-toggle="modal" data-target="#task5" disabled>
<div class="question" id="circle5"></div>
</button>
<div class="modal fade" id="task5" tabindex="-1" role="dialog" aria-labelledby="Task5Content" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<h1>TASK #5</h1>
<h2>GIG REGULARLY</h2>
<p>Follow the steps from <B>“TASK #2: PLAY YOUR FIRST GIG”</B> to find more gigs to play at.
<BR><BR>Alternatively, you can collaborate with your friends and connections in the music scene to be invited to play at their events.
<BR><BR>Play at around 3 different gigs before continuing.</p>
</div>
<div class="trackerbuttons">
<button class="bt-done" data-dismiss="modal" onclick="toggleTask6()"></button>
<!-- I'm Done! -->
<button class="bt-back" data-dismiss="modal" ></button>
<!-- Go Back -->
</div>
</div>
</div>
</div>
</div>
<div class="p-6">
<button type="button" id="task6-button" class="btn btn-primary" data-toggle="modal" data-target="#task6" disabled>
<div class="question" id="circle6"></div>
</button>
<div class="modal fade" id="task6" tabindex="-1" role="dialog" aria-labelledby="Task6Content" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<h1>TASK #6</h1>
<h2>RECORD AN EP</h2>
<p><B>STEP 1:</B> Contact the studio you want to record at and book the hours you will need for recording.
<BR><B>STEP 2:</B> When at the recording session, coordinate with the point person about the procedures of recording specifics of your song, such as the BPM.
<BR><B>STEP 3:</B> When you’re satisfied with the song, have it mixed and mastered (this will take more time than recording a single.
</P></div>
<div class="trackerbuttons">
<button class="bt-done" data-dismiss="modal" onclick="toggleTask7()"></button>
<!-- I'm Done! -->
<button class="bt-back" data-dismiss="modal"></button>
<!-- Go Back -->
</div>
</div>
</div>
</div>
</div>
<div class="p-7">
<button type="button" id="task7-button" class="btn btn-primary" data-toggle="modal" data-target="#task7" disabled>
<div class="question" id="circle7"></div>
</button>
<div class="modal fade" id="task7" tabindex="-1" role="dialog" aria-labelledby="Task7Content" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<h1>TASK #7</h1>
<h2>GET ON STREAMING PLATFORMS</h2>
<p><B>STEP 1:</B> Create accounts on Spotify and SoundCloud.
<BR><B>(Spotify):</B> <A href="https://artists.spotify.com/guide/spotify-for-artists">Check out this link.</A>
<BR><B>(SoundCloud):</B> <A href="https://help.soundcloud.com/hc/en-us/articles/115003569608-Creating-an-account-on-SoundCloud">Check out this link.</A>
<BR><B>STEP 2:</B> Get the songs you’ve already recorded and upload them onto the streaming platforms.</P>
</div>
<div class="trackerbuttons">
<button class="bt-done" data-dismiss="modal" onclick="toggleTask8()"></button>
<!-- I'm Done! -->
<button class="bt-back" data-dismiss="modal"></button>
<!-- Go Back -->
</div>
</div>
</div>
</div>
</div>
<div class="p-8">
<button type="button" id="task8-button" class="btn btn-primary" data-toggle="modal" data-target="#task8" disabled>
<div class="question" id="circle8"></div>
</button>
<div class="modal fade" id="task8" tabindex="-1" role="dialog" aria-labelledby="Task8Content" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<h1>TASK #8</h1>
<h2>RECORD AN ALBUM</h2>
<p><B>STEP 1:</B> Contact the studio that you want to record at and book the hours you will need for recording (this process may take several visits).
<BR><B>STEP 2:</B> Coordinate with the point person regarding the procedures of recording, direction of the album and the sound you want.
<BR><B>STEP 3:</B> When you’re satisfied with the results, have the album mixed and mastered.
</P></div>
<div class="trackerbuttons">
<button class="bt-done" data-dismiss="modal" data-toggle="modal" onclick="toggleComplete()" data-target="#congrats"></button>
<!-- I'm Done! -->
<button class="bt-back" data-dismiss="modal"></button>
<!-- Go Back -->
</div>
</div>
</div>
</div>
</div>
</div>
<img src="./resources/graphics/Website Elements-89.png" alt="logo" id="side1">
<img src="./resources/graphics/Website Elements-88.png" alt="logo" id="side2">
<div class="recordlabel" id="recordlabel" style="margin-bottom: 240px">
<h2>recording studios <span style="margin-left: 8px; cursor: pointer" data-toggle="modal" data-target="#databasemodal"><img src="./resources/icons/question.svg" alt="question"></span></h2>
<div class="recordplaces">
<div id="label1">
<button onclick="toggleLabel1()"></button>
</div>
<div id="label2">
<button onclick="toggleLabel2()"></button>
</div>
<div id="label3">
<button onclick="toggleLabel3()"></button>
</div>
<div id="label4">
<button onclick="toggleLabel4()"></button>
</div>
<div id="label5">
<button onclick="toggleLabel5()"></button>
</div>
<div id="label6">
<button onclick="toggleLabel6()"></button>
</div>
</div>
</div>
<div class="recordlabelimg none" id="recordlabelimg" style="margin-bottom: 240px">
<div class="recordgig-container flex spaceBetween">
<div id="back-arrow">
<button onclick="toggleRecordLabel()"></button>
</div>
<div id="label1-icon">
<button onclick="toggleLabel1()"></button>
</div>
<div id="label2-icon">
<button onclick="toggleLabel2()"></button>
</div>
<div id="label3-icon">
<button onclick="toggleLabel3()"></button>
</div>
<div id="label4-icon">
<button onclick="toggleLabel4()"></button>
</div>
<div id="label5-icon">
<button onclick="toggleLabel5()"></button>
</div>
<div id="label6-icon">
<button onclick="toggleLabel6()"></button>
</div>
</div>
<div class="labelinfo none" id="label1-image">
<img src="./resources/graphics/Places-82.png" />
<h1>TOWER OF DOOM</h1>
<p><i>ADDRESS</i>
<Br> 4th Floor Armon Bldg., Cor. Anonas and Kamias Rd., Brgy. East Kamias, Quezon City, Philippines<br><br>
<i>ONLINE</i><br> Email them at studio@towerofdoom.net<br><br>
<i>PHONE NUMBER</i><br> (+63) 927 655 8294<br><br>
<i>OPEN HOURS</i><br> 2 to 10 pm (weekdays only)
</p>
</div>
<!-- RECORD LABEL PLACE 2 -->
<div class="labelinfo none" id="label2-image">
<img src="./resources/graphics/Places-83.png" />
<h1>POINT BEE MULTIMEDIA</h1>
<p><i>ADDRESS</i><br> 8 Madasalin Street, Diliman, Lungsod Quezon, 1101 Kalakhang Maynila<br><br>
<i>ONLINE</i><br> Contact them through their FB page <a href="https://www.facebook.com/PointbeeMultimedia/">https://www.facebook.com/PointbeeMultimedia/</a><br><br>
<i>PHONE NUMBER</i><br> 0917 851 8661<br><br>
<i>OPEN HOURS</i><br> Open 24/7
</p>
</div>
<!-- RECORD LABEL PLACE 3 -->
<div class="labelinfo none" id="label3-image">
<img src="./resources/graphics/Places-84.png" />
<h1>INFINITY RECORDS</h1>
<p><i>ADDRESS</i><br> 871 Epifanio Delos Santos Ave., West Triangle, Quezon City, Philippines
<BR>
<BR>
<I>ONLINE</I>
<BR> Email them at infinityrecordsph@gmail.com
<BR>
<BR>
<I>PHONE NUMBER</I>
<BR> +63 955 097 7654
<BR> +63 930 387 1397
<BR> +63 (2) 260 9986
<BR>
<BR>
<I>OPEN HOURS</I>
<BR> 1 to 10 pm (Monday to Saturday)
</p>
</div>
<!-- RECORD LABEL PLACE 4 -->
<div class="labelinfo none" id="label4-image">
<img src="./resources/graphics/Places-85.png" />
<h1>LA BALLS STUDIO</h1>
<p><i>ADDRESS</i><br> 132 Amorsolo, Alexander House Bldg.,
<BR> Room 401, Makati<br><br>
<i>ONLINE</i><br> Contact them through their FB page <a href="https://www.facebook.com/laballsstudio/">https://www.facebook.com/laballsstudio/</a><br><br>
<i>PHONE NUMBER</i><br> 0917 307 9030<br><br>
<i>OPEN HOURS</i><br> 5 to 11:30 pm (Monday to Friday)<br> 2 to 11:30 pm (Saturday only)
</p>
</div>
<!-- RECORD LABEL PLACE 5 -->
<div class="labelinfo none" id="label5-image">
<img src="./resources/graphics/Places-86.png" />
<h1>THE YELLOW ROOM</h1>
<p><i>ADDRESS</i><br> 7th Floor - Unit J, Westgate Tower Condominium, Investment Drive, Madrigal Business Park,<br> Ayala Alabang, Muntinlupa City<br><br>
<i>ONLINE</I><br> Email them at theyellowroomph@gmail.com<br><br>
<i>PHONE NUMBER</i><br> (+63) 929 088 8958<br><br>
<i>OPEN HOURS</i><br> 10 am to 6 pm (Monday, Wednesday to Saturday)<br> 10 am to 5 pm (Tuesday only)
</p>
</div>
<!-- RECORD LABEL PLACE 6 -->
<div class="labelinfo none" id="label6-image">
<img src="./resources/graphics/Places-87.png" />
<h1>BANANA RISING</h1>
<p><i>ADDRESS</i><br> 14 Panay St., Ayala Alabang Village, Muntinlupa City<br><br>
<i>ONLINE</i><br> Check out their site <a href="http://www.bananarising.com">www.bananarising.com</a><br><br>
<i>PHONE NUMBER</i><br> (+63) 917 838 0961<br><br>
<i>OPEN HOURS</i> Open 24/7
</p>
</div>
<!-- END OF RECORD LABEL PLACE POPUPS -->
</div>
<div class="giglocation" id="giglocation">
<h2>locations for gigs <span style="margin-left: 8px; cursor: pointer" data-toggle="modal" data-target="#databasemodal"><img src="./resources/icons/question.svg" alt="question"></span></h2>
<div class="gigplaces">
<div id="gig1">
<button onclick="toggleGig1()"></button>
</div>
<div id="gig2">
<button onclick="toggleGig2()"></button>
</div>
<div id="gig3">
<button onclick="toggleGig3()"></button>
</div>
<div id="gig4">
<button onclick="toggleGig4()"></button>
</div>
<div id="gig5">
<button onclick="toggleGig5()"></button>
</div>
<div id="gig6">
<button onclick="toggleGig6()"></button>
</div>
</div>
</div>
<div class="giglocationimg none" id="giglocationimg">
<div class="recordgig-container flex spaceBetween">
<div id="back-arrow">
<button onclick="toggleGigLocation()"></button>
</div>
<div id="gig1-icon">
<button onclick="toggleGig1()"></button>
</div>
<div id="gig2-icon">
<button onclick="toggleGig2()"></button>
</div>
<div id="gig3-icon">
<button onclick="toggleGig3()"></button>
</div>
<div id="gig4-icon">
<button onclick="toggleGig4()"></button>
</div>
<div id="gig5-icon">
<button onclick="toggleGig5()"></button>
</div>
<div id="gig6-icon">
<button onclick="toggleGig6()"></button>
</div>
</div>
<!-- GIG PLACE 1 -->
<div class="giginfo none" id="gig1-image">
<img src="./resources/graphics/Places-76.png" />
<h1>19 EAST</h1>
<p><i>ADDRESS</i>
<Br> Km. 19, East Service Road, Sucat, Muntinlupa City<br><br>
<i>ONLINE</i><br> Contact them through their FB page<br>
<a href="https://www.facebook.com/19east">https://www.facebook.com/19east</a><br><br>
<i>PHONE NUMBER</i><br> (02) 837 6903<br><br>
<i>OPEN HOURS</i><br> 7 pm to 2 am (Monday to Saturday)
</p>
</div>
<!-- GIG PLACE 2 -->
<div class="giginfo none" id="gig2-image">
<img src="./resources/graphics/Places-77.png" />
<h1>MOW'S</h1>
<p><i>ADDRESS</i><br> Kowloon House Basement, 20 Matalino St.,
<BR> Quezon City, Philippines
<BR>
<BR>
<I>ONLINE</I>
<BR> Contact them through their FB page
<BR>
<a href="https://www.facebook.com/mowsbar">https://www.facebook.com/mowsbar</a><br><br>
<i>PHONE NUMBER</i><br> (+63) 927 655 8294<br><br>
<i>OPEN HOURS</i><br> 7 pm to 2 am (Monday to Saturday)
</p>
</div>
<!-- GIG PLACE 3 -->
<div class="giginfo none" id="gig3-image">
<img src="./resources/graphics/Places-78.png" />
<h1>ROUTE 196</h1>
<p><i>ADDRESS</i><br> 196-A Katipunan Ave, Project 4, Quezon City,
<BR> Metro Manila
<BR>
<BR>
<I>ONLINE</I>
<BR> Email them at route196rocks@gmail.com
<BR>
<BR>
<I>PHONE NUMBER</I>
<BR> 0949 414 5294 (Nicole Sarmiento)
<BR>
<BR>
<I>OPEN HOURS</I>
<BR> 6 pm to 2 am (Tuesday to Thursday)
<BR> 7 pm to 3 am (Friday and Saturday)
</p>
</div>
<!-- GIG PLACE 4 -->
<div class="giginfo none" id="gig4-image">
<img src="./resources/graphics/Places-79.png" />
<h1>20:20</h1>