-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
997 lines (992 loc) · 55.2 KB
/
index.html
File metadata and controls
997 lines (992 loc) · 55.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- SEO -->
<meta charset="utf-8">
<meta name="description" content="This Spring, Choose Your Adventure at Oregon's Largest Student Hackathon">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#273147">
<meta property='og:title' content='HackOR'/>
<meta property='og:image' content='https://www.hackor.org/images/banner.png'/>
<meta property='og:description' content="This Spring, Choose Your Adventure at Oregon's Largest Student Hackathon."/>
<meta property='og:url' content='https://www.hackor.org'/>
<link rel="icon" type="image/png" href="favicon.png">
<!-- Bootstrap + Animate.css -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/theme.css" title="style">
<link rel="stylesheet" type="text/css" href="css/main.css" title="style">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<script src="https://kit.fontawesome.com/e0248772ad.js" crossorigin="anonymous"></script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"url": "https://www.hackor.org",
"logo": "https://www.hackor.org/images/web1imgs/logo.png"
}
</script>
<title>HackOR</title>
</head>
<body data-aos="fade">
<nav id="nav" class="navbar fixed-top navbar-expand-lg navbar-light">
<a class="navbar-brand" href="#"><img src="images/Logo.svg" alt="HackOR"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#nav-items" aria-controls="nav-items" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="nav-items">
<ul class="navbar-nav">
<li class="nav-item">
<a href="#about">
<button class="btn btn-outline-primary btn-lg" tabindex="-1" type="button"><b>About</b></button>
</a>
</li>
<li class="nav-item">
<a href="#schedule">
<button class="btn btn-outline-primary btn-lg" tabindex="-1" type="button"><b>Schedule</b></button>
</a>
</li>
<li class="nav-item">
<a href="#faq">
<button class="btn btn-outline-primary btn-lg" tabindex="-1" type="button"><b>FAQ</b></button>
</a>
</li>
<li class="nav-item">
<a href="#sponsors">
<button class="btn btn-outline-primary btn-lg" tabindex="-1" type="button"><b>Sponsors</b></button>
</a>
</li>
<li class="nav-item">
<a href="#contact">
<button class="btn btn-outline-primary btn-lg" tabindex="-1" type="button"><b>Contact</b></button>
</a>
</li>
</ul>
</div>
</nav>
<div id="jumbo" class="container-fluid">
<div class="row">
<div class="col-12">
<div class="jumbotron min-vh-100 d-flex justify-content-center">
<div class="row">
<div class="col-lg-4 mt-4 text-center">
<a href="index.html"><img id="logo" data-aos="fade-up" class="img-fluid mt-4" src="images/Website Design/Assets/HackOR.svg" alt="HackOR Logo"></a>
</div>
<div class="col-lg-8">
<div class="text-lg-left text-center">
<h1 class="big-mode"><b>Hack<span style="color: #07B494">OR</span></b></h1>
<h5 data-aos="fade-up" data-aos-delay="200" class="mb-3"><b>Oregon's Largest Student Hackathon</b></h5>
<!--<h2 data-aos="fade-up" data-aos-delay="300" class="mb-4"><b>March 26-28, 2021</b></h2>-->
<div class="mobile-plus-only row">
<div class="col-12">
<a class="button" href="mailto:hello@hackor.org?subject=Becoming a HackOR Sponsor&body=Hi :D" data-mode="popup" target="_blank">
<button class="btn btn-outline-primary" type="button"><b>Sponsor Us</b></button>
</a>
<a class="button" href="#getStarted" data-mode="popup">
<button class="btn btn-outline-primary" type="button"><b>Get Involved</b></button>
</a>
</div>
</div>
<div class="col-lg text-center mini-mobile-only">
<a class="button" href="mailto:hello@hackor.org?subject=Becoming a HackOR Sponsor&body=Hi :D" data-mode="popup" target="_blank">
<button class="btn btn-outline-primary" type="button"><b>Sponsor Us</b></button>
</a>
<a class="button" href="#getStarted" data-mode="popup">
<button class="btn btn-outline-primary" type="button"><b>Get Involved</b></button>
</a>
</div>
<div class="row justify-content-left pt-3 desktop-only">
<div class="col-auto">
<a class="mr-2" href="https://www.instagram.com/thehackor" target="_blank"><i class="fab fa-instagram fa-3x social"></i></a>
<a class="mr-2" href="https://www.facebook.com/thehackor" target="_blank"><i class="fab fa-facebook fa-3x social"></i></a>
<a class="mr-2" href="https://discord.gg/TnmEkc8ABk"><i class="fab fa-discord fa-3x social"></i></a>
<a class="mr-2" href="https://www.linkedin.com/company/hackor" target="_blank"><i class="fab fa-linkedin fa-3x social"></i></a>
<a class="mr-2" href="mailto:hello@hackor.org" target="_blank"><i class="far fa-envelope fa-3x social"></i></a>
</div>
</div>
<div class="row justify-content-center pt-3 mini-mobile-only">
<div class="col-auto">
<a class="mr-2" href="https://www.instagram.com/thehackor" target="_blank"><i class="fab fa-instagram fa-3x social"></i></a>
<a class="mr-2" href="https://www.facebook.com/thehackor" target="_blank"><i class="fab fa-facebook fa-3x social"></i></a>
<a class="mr-2" href="https://discord.gg/TnmEkc8ABk"><i class="fab fa-discord fa-3x social"></i></a>
<a class="mr-2" href="https://www.linkedin.com/company/hackor" target="_blank"><i class="fab fa-linkedin fa-3x social"></i></a>
<a class="mr-2" href="mailto:hello@hackor.org" target="_blank"><i class="far fa-envelope fa-3x social"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="about" class="container-fluid pt-5 pb-5">
<div class="container pt-5 pb-5">
<div class="row">
<div class="col-lg-8">
<h1 class="text-lg-left text-center"><b>About Hack<span style="color: #07B494">OR</span></b></h1>
<h2 class="text-lg-left text-center">12 Schools. 600 Hackors. 48 hours of Hacking.</h2>
<p>
Are you a student interested in learning new technologies? Do you want to put your textbook knowledge to the test with real world applications?
</p>
<p>
This spring in 2022, we—students from the major schools and universities of Oregon—welcome other students from all over the world to join us from March 26 - 28th at the HackOR hackathon.
</p>
<p>
HackOR is a free student-run event for all students to spend a virtual weekend developing and applying their programming skills. Through this event, we hope to provide a weekend of hands-on learning opportunities that will prepare and inspire you in the tech field.
</p>
<p>
<a href="#getStarted">Apply now</a> to enjoy a virtual weekend of programming, workshops, mentors, networking, and other fun activities!
</p>
<!--p>
Our theme this year is "Choose Your Adventure, Build a Better World"
</p-->
</div>
<div data-aos="fade-up" class="col-lg-4 align-self-center text-center">
<img class="img-fluid" src="images/Website Design/Assets/sign.png" alt="HackOR Trail Sign">
</div>
</div>
</div>
</div>
<div id="info" class="container-fluid pt-5 pb-5">
<div class="container pt-5 pb-5">
<div class="row">
<div class="col-lg-9 offset-lg-3">
<h1 class="day"><b>What is a Hackathon?</b></h1>
</div>
</div>
<div class="row pt-3">
<div class="col-lg-4 text-center">
<img data-aos="fade-up" class="img-fluid" src="images/Website Design/Assets/firepit.svg" alt="Campfire">
</div>
<div class="col-lg-8">
<p class="day">
A hackathon is a project-based coding competition. During HackOR, participants team up in groups of four to develop a tech solution to real-world problems, which is then presented to a set of judges.
</p>
<p class="day">
With workshops, mentors, and collaborative teamwork, hackathons are great ways to build your skills in <b>tech</b>, <b>design</b>, and <b>ideation</b>.
</p>
<p class="day">
At HackOR 2021, we provide 30+ hours worth of workshops and events, along with opportunities to collaborate with other students passionate about technical learning.
<b>We are very beginner friendly and encourage all students interested to join!</b>
</p>
</div>
</div>
</div>
</div>
<div id="getStarted" class="container-fluid pt-5 pb-5">
<div class="container pt-1 pb-1">
<div class="row justify-content-center">
<div class="col-lg-auto text-center">
<img data-aos="fade-up" data-aos-delay="100" class="desktop-only img-fluid pr-5" src="images/Website Design/Assets/waterbottle.png" alt="water bottle">
<img data-aos="fade-up" class="img-fluid small-mode pl-5 pr-5" src="images/Website Design/Assets/sun.png" alt="sun">
<img data-aos="fade-up" data-aos-delay="100" class="desktop-only img-fluid pl-3" src="images/Website Design/Assets/backpack.png" alt="backpack">
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-auto text-center">
<h1 class="mt-3"><b>How do I get started?</b></h1>
</div>
</div>
<!--<div class="row justify-content-center">
<div class="col-lg-8 text-center mt-2 mb-4">
<p>
As a <b>free virtual event</b>, HackOR is open to any and all students or recent graduates within 12 months, with access to workshop, events, and mentors.
</p>
<p>
While Hackors participate in teams of four, you don't need a team to register! HackOR provides a <b>team formation system</b> and social events leading up to the hackathon.
</p>
<p>There are many ways to participate in HackOR:</p>
</div>
</div>
<div class="row justify-content-center">
<div data-aos="fade" class="col-sm-auto text-center">
<div class="pathwaySign">
<i class="fas fa-arrow-alt-circle-left mt-3 mb-2"></i>
<h5>General</h5>
<hr>
<p class="ml-4 mr-4">
Recommended to all students with technical project experience.
</p>
<p class="ml-4 mr-4">
Hackors in the general track form teams of four and collaborate on a project, submitting it in the competition for categories and prizes.
</p>-->
<!--<a class="button" href="https://apply.hackor.org" tabindex="-1" data-mode="popup" target="_blank">
<button class="btn btn-outline-primary btn-lg" type="button"><b>Register</b>-->
<!--<script> (function() { var qs,js,q,s,d=document, gi=d.getElementById, ce=d.createElement, gt=d.getElementsByTagName, id="typef_orm_share", b="https://embed.typeform.com/"; if(!gi.call(d,id)){ js=ce.call(d,"script"); js.id=id; js.src=b+"embed.js"; q=gt.call(d,"script")[0]; q.parentNode.insertBefore(js,q) } })() </script>-->
<!--</button>
</a>-->
<!--</div>
</div>
<div data-aos="fade" class="col-sm-auto text-center">
<div class="pathwaySign">
<i class="fas fa-arrow-alt-circle-right mt-3 mb-2"></i>
<h5>Beginner</h5>
<hr>
<p class="ml-4 mr-4">
Don't have technical experience? That's okay. HackOR offers students a
beginner track.
</p>
<p class="ml-4 mr-4">
Hackors in the beginner track have the option of attending the hackathon as a conference and submitting a project for the "Best Beginner Hack" award.
</p>-->
<!--<span class="d-inline-block" data-toggle="tooltip" title="Registration coming in February!">
<a class="button" href="https://beginner.hackor.org" tabindex="-1" data-mode="popup" target="_blank">
<button class="btn btn-outline-primary btn-lg" type="button"><b>Register</b>-->
<!--<script> (function() { var qs,js,q,s,d=document, gi=d.getElementById, ce=d.createElement, gt=d.getElementsByTagName, id="typef_orm_share", b="https://embed.typeform.com/"; if(!gi.call(d,id)){ js=ce.call(d,"script"); js.id=id; js.src=b+"embed.js"; q=gt.call(d,"script")[0]; q.parentNode.insertBefore(js,q) } })() </script>-->
<!--</button>
</a>
</span>-->
<!--</div>
</div>
<br/>
</div>
<div id="mentor" class="row justify-content-center">
<div data-aos="fade" class="col-md-auto text-center">
<div class="pathwaySign bottomSign">
<i class="fas fa-arrow-alt-circle-down mt-3 mb-2"></i>
<h5>Mentor</h5>
<hr>
<p class="ml-4 mr-4">
HackOR is looking for mentors, open to all individuals (professionals / students) with strong technical expertise!
Mentors are to be available throughout the weekend and guide students through their projects and questions.
</p>-->
<!--<span class="d-inline-block" tabindex="0" data-toggle="tooltip" title="Registration coming in February!">
<a class="button text-center" href="http://mentor.hackor.org" target="_blank">
<button class="btn btn-outline-primary btn-lg" tabindex="-1" type="button"><b>Apply as Mentor</b></button>
</a>
</span>-->
<!--</div>
</div>
</div>-->
<div class="row justify-content-center">
<div class="col-lg-8 text-center">
<p>
HackOR is a student-run event! Our organizing team is constantly on the lookout for motivated, passionate student leaders.
</p>
</div>
<div class="row justify-content-center">
<div data-aos="fade" class="col-sm-auto text-center">
<div class="pathwaySign">
<i class="fas fa-arrow-alt-circle-left mt-3 mb-2"></i>
<h5>Organizers</h5>
<hr>
<p class="ml-4 mr-4">
With our first-ever HackOR hackathon over, we're looking for new volunteers to join our organizing team.
</p>
<p class="ml-4 mr-4">
Applications for HackOR organizers have opened. Apply today to get involved!
</p>
<a class="button text-center" href="https://organizer.hackor.org" target="_blank">
<button class="btn btn-outline-primary btn-lg" tabindex="-1" type="button"><b>Become an Organizer</b></button>
</a>
</div>
</div>
<div data-aos="fade" class="col-sm-auto text-center">
<div class="pathwaySign">
<i class="fas fa-arrow-alt-circle-right mt-3 mb-2"></i>
<h5>Partners</h5>
<hr>
<p class="ml-4 mr-4">
As an Oregon hackathon coalition, we're looking for new partnerships to make our events more accessible!
If you're a faculty or student of an Oregonian educational institution and interested, please feel free to contact
us to get involved!
</p>
<span class="d-inline-block" data-toggle="tooltip" title="Registration coming in February!">
<a class="button" href="http://partner.hackor.org" tabindex="-1" data-mode="popup" target="_blank">
<button class="btn btn-outline-primary btn-lg" type="button"><b>Become a Partner</b>
<!--<script> (function() { var qs,js,q,s,d=document, gi=d.getElementById, ce=d.createElement, gt=d.getElementsByTagName, id="typef_orm_share", b="https://embed.typeform.com/"; if(!gi.call(d,id)){ js=ce.call(d,"script"); js.id=id; js.src=b+"embed.js"; q=gt.call(d,"script")[0]; q.parentNode.insertBefore(js,q) } })() </script>-->
</button>
</a>
</span>
</div>
</div>
</div>
<div class="col-lg-8 align-content-center">
<div class="text-center">
<div class="pathwaySign bottomSign">
<i class="fas fa-arrow-alt-circle-down mt-3 mb-2"></i>
<h5>Sponsors</h5>
<hr>
<p class="ml-4 mr-4">
Interested in supporting students for next year's event?
</p>
<a class="button text-center" href="mailto:hello@hackor.org?subject=Becoming a HackOR Sponsor&body=Hi :D" target="_blank">
<button class="btn btn-outline-primary btn-lg" tabindex="-1" type="button"><b>Become a Sponsor</b></button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="schedule" class="container-fluid pt-4 pb-5">
<div class="container">
<div id="scheduleHeader" class="row justify-content-center mb-4">
<div class="col-auto desktop-only">
<img data-aos="fade" class="img-fluid floater" src="images/Website Design/Assets/compass.png" alt="compass">
</div>
<div class="col-auto align-self-center">
<h1 class="day text-center"><b>Schedule</b></h1>
<p class="day text-center"><b>(Pacific Daylight Time)</b></p>
</div>
<div class="col-auto desktop-only">
<img data-aos="fade" class="img-fluid floater" src="images/Website Design/Assets/map.png" alt="map">
</div>
<div class="col-auto ml-auto mobile-only">
<img data-aos="fade" class="img-fluid" src="images/Website Design/Mobile/mobile_schedule icons.png" alt="map and compass">
</div>
</div>
<div data-aos="fade-up" class="row scheduleBoard mobile-only" id="schedule-accordion">
<div class="col-lg">
<div class="card mt-3">
<div class="card-header" id="friday">
<h5 class="mb-0">
<button class="btn btn-block btn-link collapsed" data-toggle="collapse" data-target="#fridayCollapse" aria-expanded="false" aria-controls="fridayCollapse">
FRIDAY, MARCH 26</button>
</h5>
</div>
<div id="fridayCollapse" class="collapse show" aria-labelledby="friday" data-parent="#schedule-accordion">
<div class="card-body">
<ul>
<li><b>10:00AM</b> - Opening Ceremony</li>
<li><b>11:00AM</b> - Team Building</li>
<li><b>2:00PM</b> - Hacking Begins</li>
<li><b>3:00PM</b> - Beginner Python</li>
<li><b>4:00PM</b> - Build Your Own Twitter with Firebase</li>
<li><b>5:00PM</b> - Game 1</li>
<li><b>6:30PM</b> - HackOR Movie Night</li>
<li><b>7:00PM</b> - Intro to UX and UI (Design)</li>
<li><b>8:00PM</b> - Pygame: Basic Video Game Development</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-lg">
<div class="card mt-3">
<div class="card-header" id="saturday">
<h5 class="mb-0">
<button class="btn btn-block btn-link collapsed" data-toggle="collapse" data-target="#saturdayCollapse" aria-expanded="false" aria-controls="saturdayCollapse">
SATURDAY, MARCH 27</button>
</h5>
</div>
<div id="saturdayCollapse" class="collapse" aria-labelledby="saturday" data-parent="#schedule-accordion">
<div class="card-body">
<ul>
<li><b>9:00AM</b> - Using Puppeteer to automate boring tasks</li>
<li><b>9:00AM</b> - echoAR: How to Build a Cloud-Connected AR/VR App in 15 Minutes or Less</li>
<li><b>10:00AM</b> - Intro to AL/ML and the world of algorithms</li>
<li><b>11:00AM</b> - Product Management Decoded</li>
<li><b>12:00PM</b> - Sign-In and Authentication services with Node/Express</li>
<li><b>3:00PM</b> - Web Design (HTML/CSS/JavaScript)</li>
<li><b>3:00PM</b> - Women in STEM Panel</li>
<li><b>4:00PM</b> - Research in CS Talk</li>
<li><b>5:00PM</b> - Game 2: Jstris Competition @ Gather.town</li>
<li><b>6:00PM</b> - Rock Paper Javascript: Intro to Javascript, HTML/CSS, with Rock Paper Scissors Game Design</li>
<li><b>8:00PM</b> - Internships in STEM Panel</li>
<li><b>9:00PM</b> - MTA Internship & Girls in AI Q&A</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-lg">
<div class="card mt-3">
<div class="card-header" id="sunday">
<h5 class="mb-0">
<button class="btn btn-block btn-link collapsed" data-toggle="collapse" data-target="#sundayCollapse" aria-expanded="false" aria-controls="sundayCollapse">
SUNDAY, MARCH 28</button>
</h5>
</div>
<div id="sundayCollapse" class="collapse" aria-labelledby="sunday" data-parent="#schedule-accordion">
<div class="card-body">
<ul>
<li><b>9:00AM</b> - The Founder Experience: Raising Funds, Seeking Mentorship, and More Talk</li>
<li><b>10:00AM</b> - Intro to Self-Driving Cars</li>
<li><b>11:00PM</b> - Game 3</li>
<li><b>12:00PM</b> - Entrepreneurship Panel</li>
<li><b>1:00PM</b> - Submission Office Hours</li>
<li><b>2:00PM</b> - Hacking Ends / Judging Begins</li>
<li><b>7:00PM</b> - Closing Ceremony</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div data-aos="fade-up" class="row scheduleBoard desktop-only" id="schedule-accordion">
<div class="col-lg">
<div class="card mt-3">
<div class="card-header" id="friday">
<h5 class="mb-0">
<button class="btn btn-block btn-link collapsed" data-toggle="collapse" data-target="#fridayCollapse" aria-expanded="false" aria-controls="fridayCollapse">
FRIDAY, MARCH 26</button>
</h5>
</div>
<div id="fridayCollapse" class="collapse show" aria-labelledby="friday" data-parent="#schedule-accordion">
<div class="card-body">
<ul>
<li><b>10:00AM</b> - Opening Ceremony</li>
<li><b>11:00AM</b> - Team Building</li>
<li><b>2:00PM</b> - Hacking Begins</li>
<li><b>3:00PM</b> - Beginner Python</li>
<li><b>4:00PM</b> - Build Your Own Twitter with Firebase</li>
<li><b>5:00PM</b> - Game 1</li>
<li><b>6:30PM</b> - HackOR Movie Night</li>
<li><b>7:00PM</b> - Intro to UX and UI (Design)</li>
<li><b>8:00PM</b> - Pygame: Basic Video Game Development</li>
</ul>
</div>
</div>
</div>
</div>
<div class="vl align-self-center"></div>
<div class="col-lg">
<div class="card mt-3">
<div class="card-header" id="saturday">
<h5 class="mb-0">
<button class="btn btn-block btn-link collapsed" data-toggle="collapse" data-target="#saturdayCollapse" aria-expanded="false" aria-controls="saturdayCollapse">
SATURDAY, MARCH 27</button>
</h5>
</div>
<div id="saturdayCollapse" class="collapse show" aria-labelledby="saturday" data-parent="#schedule-accordion">
<div class="card-body">
<ul>
<li><b>9:00AM</b> - Using Puppeteer to automate boring tasks</li>
<li><b>9:00AM</b> - echoAR: How to Build a Cloud-Connected AR/VR App in 15 Minutes or Less</li>
<li><b>10:00AM</b> - Intro to AL/ML and the world of algorithms</li>
<li><b>11:00AM</b> - Product Management Decoded</li>
<li><b>12:00PM</b> - Sign-In and Authentication services with Node/Express</li>
<li><b>3:00PM</b> - Web Design (HTML/CSS/JavaScript)</li>
<li><b>3:00PM</b> - Women in STEM Panel</li>
<li><b>4:00PM</b> - Research in CS Talk</li>
<li><b>5:00PM</b> - Game 2: Jstris Competition @ Gather.town</li>
<li><b>6:00PM</b> - Rock Paper Javascript: Intro to Javascript, HTML/CSS, with Rock Paper Scissors Game Design</li>
<li><b>8:00PM</b> - Internships in STEM Panel</li>
<li><b>9:00PM</b> - MTA Internship & Girls in AI Q&A</li>
</ul>
</div>
</div>
</div>
</div>
<div class="vl align-self-center"></div>
<div class="col-lg">
<div class="card mt-3">
<div class="card-header" id="sunday">
<h5 class="mb-0">
<button class="btn btn-block btn-link collapsed" data-toggle="collapse" data-target="#sundayCollapse" aria-expanded="false" aria-controls="sundayCollapse">
SUNDAY, MARCH 28</button>
</h5>
</div>
<div id="sundayCollapse" class="collapse show" aria-labelledby="sunday" data-parent="#schedule-accordion">
<div class="card-body">
<ul>
<li><b>9:00AM</b> - The Founder Experience: Raising Funds, Seeking Mentorship, and More Talk</li>
<li><b>10:00AM</b> - Intro to Self-Driving Cars</li>
<li><b>11:00PM</b> - Game 3</li>
<li><b>12:00PM</b> - Entrepreneurship Panel</li>
<li><b>1:00PM</b> - Submission Office Hours</li>
<li><b>2:00PM</b> - Hacking Ends / Judging Begins</li>
<li><b>7:00PM</b> - Closing Ceremony</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="row mt-2">
<div class="col my-auto">
<a href="https://tinyurl.com/hackor-calendar" target="_blank">
<button class="btn btn-outline-primary float-right my-auto" type="button"><b>Add to Google Calendar</b></button>
</a>
</div>
</div>
<div class="row mt-5 justify-content-center">
<div class="col-auto">
<h1 class="day text-center"><b>Workshops at Hack<span style="color: #07B494">OR</span></b></h1>
<img class="img wordcloud" src="images/workshops.png" alt="Workshops Wordcloud">
</div>
</div>
</div>
</div>
<div id="faq" class="container-fluid pt-5 pb-5">
<div class="container pt-1 pb-1">
<div class="row justify-content-center">
<div class="col-auto align-self-center text-center">
<h1 class="desktop-only"><b>Frequently Asked Questions</b></h1>
<h1 class="mobile-only"><b>FAQ</b></h1>
</div>
<div class="col-auto ml-auto mobile-only">
<img data-aos="zoom-in" class="img-fluid" src="images/Website Design/Mobile/mobile_faq trees.png" alt="Trees">
</div>
<div class="col-auto ml-auto mini-mobile-only">
<img class="img-fluid" src="images/Website Design/Mobile/mobile_faq trees.png" alt="Trees">
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div id="accordion">
<div class="card" data-aos="fade-up">
<div class="card-header" id="headingOne">
<button class="btn btn-link btn-block collapsed" data-toggle="collapse" data-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
<div class="row align-items-center">
<img class="img-fluid" src="images/Website Design/Assets/faq tree icons.png" alt="tree">
<b>How long is HackOR?</b>
</div>
</button>
<i class="fas fa-star-of-life"></i>
</div>
<div id="collapseOne" class="collapse" aria-labelledby="headingOne" data-parent="#accordion">
<div class="card-body ml-5">
HackOR is held from Friday, March 26th to Sunday, March 28th. Students hack for 48 hours!
</div>
</div>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="100">
<div class="card-header" id="headingTwo">
<button class="btn btn-link btn-block collapsed" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
<div class="row align-items-center">
<img class="img-fluid" src="images/Website Design/Assets/faq tree icons.png" alt="tree">
<b>When do HackOR applications open?</b>
</div>
</button>
<i class="fas fa-star-of-life"></i>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion">
<div class="card-body ml-5">
HackOR applications open from February 1st to March 19th.
</div>
</div>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="200">
<div class="card-header" id="headingThree">
<button class="btn btn-link btn-block collapsed" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
<div class="row align-items-center">
<img class="img-fluid" src="images/Website Design/Assets/faq tree icons.png" alt="tree">
<b>Does it cost anything to attend HackOR?</b>
</div>
</button>
<i class="fas fa-star-of-life"></i>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="card-body ml-5">
Not at all! HackOR will be opened up as a <i>free virtual event</i>, accessible to attendees from across the nation.
</div>
</div>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="300">
<div class="card-header" id="headingFour">
<button class="btn btn-link btn-block collapsed" data-toggle="collapse" data-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
<div class="row align-items-center">
<img class="img-fluid" src="images/Website Design/Assets/faq tree icons.png" alt="tree">
<b>I'm new to coding & hackathons, may I still attend?</b>
</div>
</button>
<i class="fas fa-star-of-life"></i>
</div>
<div id="collapseFour" class="collapse" aria-labelledby="headingFour" data-parent="#accordion">
<div class="card-body ml-5">
Yes! HackOR and hackathons overall are very <a href="https://medium.com/tfogo/hackathons-are-for-beginners-77a9c9c0e000">beginner friendly</a>. We strongly encourage anyone interested in tech to join: it’ll be fun and a great experience :D
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div id="accordion2">
<div class="card" data-aos="fade-up">
<div class="card-header" id="headingFive">
<button class="btn btn-link btn-block collapsed" data-toggle="collapse" data-target="#collapseFive" aria-expanded="false" aria-controls="collapseFive">
<div class="row align-items-center">
<img class="img-fluid" src="images/Website Design/Assets/faq tree icons.png" alt="tree">
<b>How many members are in a team?</b>
</div>
</button>
<i class="fas fa-star-of-life"></i>
</div>
<div id="collapseFive" class="collapse" aria-labelledby="headingFive" data-parent="#accordion2">
<div class="card-body ml-5">
Teams are limited to 4 members. That being said, you don't have to have 4 members to compete.
</div>
</div>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="100">
<div class="card-header" id="headingSix">
<button class="btn btn-link btn-block collapsed" data-toggle="collapse" data-target="#collapseSix" aria-expanded="false" aria-controls="collapseSix">
<div class="row align-items-center">
<img class="img-fluid" src="images/Website Design/Assets/faq tree icons.png" alt="tree">
<b>How do I find a team?</b>
</div>
</button>
<i class="fas fa-star-of-life"></i>
</div>
<div id="collapseSix" class="collapse" aria-labelledby="headingSix" data-parent="#accordion2">
<div class="card-body ml-5">
You can either form a team before HackOR or during the event. We will have plenty of team-formation opportunities the week before HackOR and before hacking starts. We also have a “register as a team” option if you already have a team in mind.
</div>
</div>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="200">
<div class="card-header" id="headingSeven">
<button class="btn btn-link btn-block collapsed" data-toggle="collapse" data-target="#collapseSeven" aria-expanded="false" aria-controls="collapseSeven">
<div class="row align-items-center">
<img class="img-fluid" src="images/Website Design/Assets/faq tree icons.png" alt="tree">
<b>Staying connected in a virtual hackathon?</b>
</div>
</button>
<i class="fas fa-star-of-life"></i>
</div>
<div id="collapseSeven" class="collapse" aria-labelledby="headingSeven" data-parent="#accordion2">
<div class="card-body ml-5">
We will have dedicated activities and socializing throughout the event via Zoom and GatherTown, as well as Discord channels. The HackOR team is also working hard to prepare lots of fun events, workshops, and so on!
</div>
</div>
</div>
<div class="card" data-aos="fade-up" data-aos-delay="200">
<div class="card-header" id="headingSeven">
<button class="btn btn-link btn-block collapsed" data-toggle="collapse" data-target="#collapseEight" aria-expanded="false" aria-controls="collapseSeven">
<div class="row align-items-center">
<img class="img-fluid" src="images/Website Design/Assets/faq tree icons.png" alt="tree">
<b>How does a virtual hackathon work?</b>
</div>
</button>
<i class="fas fa-star-of-life"></i>
</div>
<div id="collapseEight" class="collapse" aria-labelledby="headingSeven" data-parent="#accordion2">
<div class="card-body ml-5">
HackOR's workshops take place via zoom meetings, with the links being available through our Discord server.
The hackathon competition will be organized via <a target="_blank" href="https://hackor.devpost.com">Devpost</a>, where teams submit their code for the project, screenshots, descriptions, and a pitch!
</div>
</div>
</div>
</div>
</div>
</div>
<div id="contact" class="row mt-3">
<div class="col-12">
<p>
<b>Got other questions?</b>
Email <a href="mailto:hello@hackor.org">hello@hackor.org</a>
</p>
</div>
</div>
</div>
</div>
<div id="sponsors" class="container-fluid pt-5 pb-5">
<div class="container pb-4">
<div id="sponsorsHeader">
<div class="row justify-content-center pb-4">
<div class="col-lg-auto text-center pt-3">
<h1 class="day"><b>Sponsors</b></h1>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="text-center">
<p class="day">
As a group of students, the HackOR team is looking for sponsors to support our event!
We are a <a target="_blank" href="https://www.501c3.org/what-is-a-501c3/">501(c)(3)</a> fiscally sponsored by the <a target="_blank" href="https://www.techoregon.org/">Technology Association of Oregon</a>.
</p>
<p class="day">
If interested, please contact us at <a href="mailto:hello@hackor.org?subject=Becoming a HackOR Organizer&body=Hi :D">hello@hackor.org</a>
</p>
</div>
</div>
</div>
</div>
<div class="row justify-content-center mt-3 mb-3">
<div class="col-auto">
<h5 data-aos="fade-up" class="day sponsorsSign">Sponsors</h5>
</div>
</div>
<div id="platinum" class="row justify-content-center">
<div class="col-6 col-md-auto align-self-center text-center">
<a target="_blank" href="https://www.nvidia.com/"><img data-aos="fade-up" class="img-fluid" src="images/sponsors/nvidia.png" alt="Nvidia"></a>
</div>
<div class="col-6 col-md-auto align-self-center text-center">
<a target="_blank" href="http://elastic.co/"><img data-aos="fade-up" class="img-fluid" src="images/sponsors/elastic.svg" alt="Elastic"></a>
</div>
<div class="col-6 col-md-auto align-self-center text-center">
<a target="_blank" href="https://www.cockroachlabs.com/"><img data-aos="fade-up" class="img-fluid" src="images/sponsors/cockroachlabs.svg" alt="CockroachLabs"></a>
</div>
<div class="col-6 col-md-auto align-self-center text-center">
<a target="_blank" href="https://www.mongodb.com/"><img data-aos="fade-up" class="img-fluid" src="images/sponsors/mongodb.svg" alt="MongoDB"></a>
</div>
</div>
<div id="platinum" class="row justify-content-center">
<div class="col-6 col-md-auto align-self-center text-center">
<a target="_blank" href="https://wolfram.com/"><img data-aos="fade-up" class="img-fluid" src="images/sponsors/wolfram.png" alt="Wolfram Language"></a>
</div>
<div class="col-6 col-md-auto align-self-center text-center">
<a target="_blank" href="https://www.echoar.xyz/"><img data-aos="fade-up" class="img-fluid" src="images/sponsors/ech.png" alt="echoAR"></a>
</div>
<div class="col-6 col-md-auto align-self-center text-center">
<a target="_blank" href="https://www.stickergiant.com/"><img data-aos="fade-up" class="img-fluid" src="images/sponsors/sticker-giant.svg" alt="StickerGiant"></a>
</div>
</div>
<div class="row justify-content-center mt-4 mb-4">
<div class="col-auto">
<h5 data-aos="fade-up" class="day sponsorsSign">Partners</h5>
</div>
</div>
<div id="partners" class="row justify-content-center">
<div class="col-6 col-md-auto align-self-center text-center">
<img data-aos="fade-up" class="img-fluid" src="images/sponsors/gather.png" alt="Gather Town">
</div>
<div class="col-6 col-md-auto align-self-center text-center">
<a target="_blank" href="https://www.techoregon.org/blog/mec-events/hackor/"><img data-aos="fade-up" class="img-fluid" src="images/sponsors/tao.png" alt="Technology Association of Oregon"></a>
</div>
</div>
<div class="row justify-content-center mt-4 mb-4">
<div class="col-auto">
<h5 data-aos="fade-up" class="day sponsorsSign">News Features</h5>
</div>
</div>
<div id="partners" class="row justify-content-center">
<div class="col-6 col-md-auto align-self-center text-center">
<a target="_blank" href="https://www.kgw.com/article/news/education/free-hackathon-event-for-students-interested-in-tech/283-5c7f8662-ad19-46dd-a139-0b2dc4f0e393"><img data-aos="fade-up" class="img-fluid" src="images/sponsors/kgw.png" alt="KGW News Feature of HackOR"></a>
</div>
</div>
<div id="gold" class="row justify-content-center mt-4 mb-4">
<div class="col-auto">
<h5 data-aos="fade-up" class="day sponsorsSign">Schools</h5>
</div>
</div>
<div id="gold" class="row justify-content-center">
<div class="col-6 col-md-auto align-self-center text-center">
<img data-aos="fade-up" class="img-fluid" src="images/sponsors/uo.png" alt="University of Oregon">
</div>
<div class="col-6 col-md-auto align-self-center text-center">
<img data-aos="fade-up" class="img-fluid" src="images/sponsors/osu.png" alt="Oregon State University">
</div>
<div class="col-6 col-md-auto align-self-center text-center">
<img data-aos="fade-up" class="img-fluid" src="images/sponsors/oit.png" alt="Oregon Institute of Technology">
</div>
<div class="col-6 col-md-auto align-self-center text-center">
<img data-aos="fade-up" class="img-fluid" src="images/sponsors/psu.png" alt="Portland State University">
</div>
<div class="col-6 col-md-auto align-self-center text-center">
<img data-aos="fade-up" class="img-fluid" src="images/sponsors/linfield.png" alt="Linfield University">
</div>
<div class="col-6 col-md-auto align-self-center text-center">
<img data-aos="fade-up" class="img-fluid" src="images/sponsors/lcc.png" alt="Lane Community College">
</div>
</div>
<div id="gold" class="row justify-content-center">
<div class="col-6 col-md-auto align-self-center text-center">
<img data-aos="fade-up" class="img-fluid" src="images/sponsors/wu.png" alt="Willamette University">
</div>
<div class="col-6 col-md-auto align-self-center text-center">
<img data-aos="fade-up" class="img-fluid" src="images/sponsors/wou.png" alt="Western Oregon University">
</div>
<div class="col-6 col-md-auto align-self-center text-center">
<img data-aos="fade-up" class="img-fluid" src="images/sponsors/sou.png" alt="Southern Oregon University">
</div>
<div class="col-6 col-md-auto align-self-center text-center">
<img data-aos="fade-up" class="img-fluid" src="images/sponsors/corban.png" alt="Corban University">
</div>
<div class="col-6 col-md-auto align-self-center text-center">
<img data-aos="fade-up" class="img-fluid" src="images/sponsors/westview.png" alt="Westview High School">
</div>
<div class="col-6 col-md-auto align-self-center text-center">
<img data-aos="fade-up" class="img-fluid" src="images/sponsors/sunset.png" alt="Sunset High School">
</div>
</div>
<!--<div class="row justify-content-center mt-4">
<div id="silver" class="col-md-6">
<div class="row justify-content-center mb-4">
<div class="col-auto">
<h5 data-aos="fade-up" class="day sponsorsSign">Silver</h5>
</div>
</div>
<div class="row justify-content-center">
<div class="col-auto align-self-center text-center">
<img data-aos="fade-up" class="img-fluid" src="images/sponsors/placeholder.png" alt="placeholder">
</div>
<div class="col-auto align-self-center text-center">
<img data-aos="fade-up" data-aos-delay="100" class="img-fluid" src="images/sponsors/placeholder.png" alt="placeholder">
</div>
<div class="col-auto align-self-center text-center">
<img data-aos="fade-up" data-aos-delay="200" class="img-fluid" src="images/sponsors/placeholder.png" alt="placeholder">
</div>
</div>
</div>
<div id="bronze" class="col-md-6">
<div class="row justify-content-center mb-4">
<div class="col-auto">
<h5 data-aos="fade-up" class="day sponsorsSign">Bronze</h5>
</div>
</div>
<div class="row justify-content-center">
<div class="col-auto align-self-center text-center">
<img data-aos="fade-up" class="img-fluid" src="images/sponsors/placeholder.png" alt="placeholder">
</div>
<div class="col-auto align-self-center text-center">
<img data-aos="fade-up" data-aos-delay="100" class="img-fluid" src="images/sponsors/placeholder.png" alt="placeholder">
</div>
<div class="col-auto align-self-center text-center">
<img data-aos="fade-up" data-aos-delay="200" class="img-fluid" src="images/sponsors/placeholder.png" alt="placeholder">
</div>
</div>
</div>
</div>-->
<div class="row justify-content-center mt-4 mb-4">
<div class="col-auto">
<h5 data-aos="fade-up" class="day sponsorsSign">HackOR Organizer Team</h5>
</div>
</div>
<div id="team" class="row justify-content-center">
<div class="row board justify-content-center">
<div class="col-auto organizer">
<img class="pin img-fluid" src="images/Website Design/Assets/pin.svg">
<img class="img-fluid" src="images/Website Design/Assets/team/joy_liu.jpg">
<p>
<b>Qijia "Joy" Liu</b>
</p>
<p>
Founder and Director
</p>
</div>
<div class="col-auto organizer">
<img class="pin img-fluid" src="images/Website Design/Assets/pin.svg">
<img class="img-fluid" src="images/Website Design/Assets/team/ryan_iness.jpg">
<p>
<b>Ryan Iness</b>
</p>
<p>
Head of Outreach
</p>
</div>
<div class="col-auto organizer">
<img class="pin img-fluid" src="images/Website Design/Assets/pin.svg">
<img class="img-fluid" src="images/Website Design/Assets/team/iris_fu.jpg">
<p>
<b>Iris Fu</b>
</p>
<p>
Head of Events (Workshops)
</p>
</div>
<div class="col-auto organizer">
<img class="pin img-fluid" src="images/Website Design/Assets/pin.svg">
<img class="img-fluid" src="images/Website Design/Assets/team/aaron_esau.jpg">
<p>
<b>Aaron Esau</b>
</p>
<p>
Head of Logistics (Team Formation / Judging)
</p>
</div>
<div class="col-auto organizer">
<img class="pin img-fluid" src="images/Website Design/Assets/pin.svg">
<img class="img-fluid" src="images/Website Design/Assets/team/emma_tong.jpg">
<p>
<b>Emma Tong</b>
</p>
<p>
Design Lead
</p>
</div>
<div class="col-auto organizer">
<img class="pin img-fluid" src="images/Website Design/Assets/pin.svg">
<img class="img-fluid" src="images/Website Design/Assets/team/luke_goldsworthy.jpg">
<p>
<b>Luke Goldsworthy</b>
</p>
<p>
Design Lead and GatherTown Creator
</p>
</div>
<div class="col-auto organizer">
<img class="pin img-fluid" src="images/Website Design/Assets/pin.svg">
<img class="img-fluid" src="images/Website Design/Assets/team/zarif_mazumder.jpg">
<p>
<b>Zarif Mazumder</b>
</p>
<p>
Tech Lead and Website Specialist
</p>
</div>
<div class="col-auto organizer">
<img class="pin img-fluid" src="images/Website Design/Assets/pin.svg">
<!-- <div style="background-color: #C9C9C9; height: 195px">
</div> -->
<img class="img-fluid" src="images/Website Design/Assets/team/rosalie_liu.jpg">
<p>
<b>Rosalie Liu</b>
</p>
<p>
BeginnerXP Lead
</p>
</div>
</div>
</div>
</div>
</div>
<div id="footerHeader" class="container-fluid">
<div class="container">
<div class="row">
<div class="col-auto">
<img data-aos="zoom-in" src="images/Website Design/Assets/footer trees 1.png" alt="trees">
</div>
<div class="col"></div>
<div class="col-auto">
<img data-aos="zoom-in" src="images/Website Design/Assets/footer trees 2.png" alt="trees">
</div>
</div>
</div>
</div>
<div id="footer" class="container-fluid">
<div class="container">
<div class="row justify-content-center pt-1">
<div class="col-auto">
<a class="mr-2" href="https://www.instagram.com/thehackor" target="_blank"><i class="fab fa-instagram fa-3x social"></i></a>
<a class="mr-2" href="https://www.facebook.com/thehackor" target="_blank"><i class="fab fa-facebook fa-3x social"></i></a>
<a class="mr-2" href="https://discord.gg/TnmEkc8ABk"><i class="fab fa-discord fa-3x social"></i></a>
<a class="mr-2" href="https://www.linkedin.com/company/hackor" target="_blank"><i class="fab fa-linkedin fa-3x social"></i></a>
<a class="mr-2" href="mailto:hello@hackor.org" target="_blank"><i class="far fa-envelope fa-3x social"></i></a>
</div>
</div>
<div class="row justify-content-center mt-4 pb-4">
<div class="col-auto">
<p class="day">
© 2021 HackOR - <a target="_blank" href="https://hackor.devpost.com">HackOR Hackathon Devpost</a>
</p>
</div>
<div class="col-auto">
<p class="day text-center small">
* HackOR is a free virtual event organized by a group of students and is not affiliated with any other groups aside from those listed on this website.
</p>
</div>
</div>
</div>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
$(document).ready(function(){
console.log("Hi :D")
$('[data-toggle="tooltip"]').tooltip();
$('.dropdown-menu a').click(function(){
let display;
switch($(this).text()) {
case "Pacific Daylight Time (GMT -07:00)":
display = "Pacific Daylight Time";
break;
case "Central Daylight Time (GMT -05:00)":
display = "Central Daylight Time";
break;
case "Eastern Daylight Time (GMT -04:00)":
display = "Eastern Daylight Time";
break;
default:
display = "Select Timezone";
}
$('#timezone').text(display);
});
AOS.init();
});
</script>
</html>