-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
3256 lines (3215 loc) · 121 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tech Together Chicago</title>
<link
rel="shortcut icon"
type="image/jpg"
href="/assets/ttc_solo_logo.jpeg"
/>
<!--Bootstrap CSS-->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<!--Google Fonts-->
<!--Barlow Regular-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Barlow&family=Roboto+Condensed&display=swap"
rel="stylesheet"
/>
<!--Barlow Black-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Barlow:wght@900&family=Roboto+Condensed&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div
class="container-fluid"
style="
background: radial-gradient(
82.47% 128.66% at 90.06% 73.64%,
#f08375 0%,
#333f9b 100%
);
height: 918px;
left: 0px;
top: 0px;
"
>
<!--NavBar-->
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container-fluid">
<a class="navbar-brand" href="https://techtogether.io/chicago">
<object data="assets/ttc logo.svg" type="image/svg+xml"></object>
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link nav-button" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link nav-button" href="#challenges">Challenges</a>
</li>
<li class="nav-item">
<a class="nav-link nav-button" href="#schedule">Schedule</a>
</li>
<li class="nav-item">
<a class="nav-link nav-button" href="#sponsors">Sponsors</a>
</li>
<li class="nav-item">
<a class="nav-link nav-button" href="#faq">FAQ</a>
</li>
</ul>
</div>
</div>
</nav>
<!--Header-->
<div class="container text-lg-start">
<div
class="row"
style="margin-top: 3%; margin-left: 5%; padding-right: 5%"
>
<div class="col-lg-9">
<div class="row top">
<top>Hack the Future @</top>
</div>
<div class="row middle">
<middle>TechTogether Chicago</middle>
</div>
<div class="row bottom">
<bottom>Virtual • February 25-27, 2022</bottom>
</div>
<div class="row">
<!-- <div class="col-sm">
<a
href="https://www.eventbrite.com/e/techtogether-chicago-tickets-210142210007"
target="_blank"
>
<button
type="button action"
class="btn btn-outline-danger action"
style="margin: 2% 0% 2% 0%;"
>
REGISTER
</button></a
>
</div> -->
<div class="col-sm">
<a
href="https://techtogether-chicago.devpost.com/"
target="_blank"
>
<button
type="button action"
class="btn btn-outline-danger action"
style="margin-top: 2%; font-size: 12pt; height: 56px;"
>
SUBMIT A PROJECT
</button>
</a>
</div>
<div class="col-sm">
<a
href="https://techtogether-chicago.devpost.com/#:~:text=any%20TechTogether%20prizes.-,PRIZES,-%242%2C770%20in%20prizes"
target="_blank"
>
<button
type="button action"
class="btn btn-outline-danger action"
style="margin-top: 2%; font-size: 12pt; height: 56px;"
>
VIEW CHALLENGES
</button>
</a>
</div>
<div class="col-sm">
<a
href="https://drive.google.com/drive/folders/135-vSm72xp1D2Cj-GSCyf9_v-GycttIL?usp=sharing"
target="_blank"
>
<button
type="button action"
class="btn btn-outline-danger action"
style="margin-top: 2%; font-size: 12pt; height: 56px;"
>
EVENT RECORDINGS
</button></a
>
</div>
</div>
</div>
<div class="col-sm-3">
<img
src="assets/flying byte/ttc-byte-flying-01 1.png"
style="position: absolute; width: max-content"
/>
</div>
</div>
<div class="row">
<img
src="assets/buildings.png"
style="
position: absolute;
top: 67%;
left: 0px;
right: 0px;
margin: -110px -25px 0px -10px;
height: 40%;
"
/>
</div>
</div>
</div>
<div
class="container-fluid"
style="
background: linear-gradient(#fda094 0%, #333f9b 100%);
position: relative;
left: 0px;
top: 0px;
"
>
<!--About-->
<div id="about" class="row" style="margin-left: 7%; padding-top: 10%">
<div class="col-lg-6">
<div class="row">
<h1
style="
font-family: Barlow;
font-weight: 800;
font-size: 50px;
color: white;
padding-right: 2%;
"
>
Come travel to the future at TechTogether Chicago’s first
gender-focused hackathon!
</h1>
</div>
<div class="row" style="padding-top: 5%">
<h3 class="bottom">
Let's Hack the Future! Welcome to TechTogether Chicago, which is
going to be held virtually from February 25 - 27, 2022! Our
mission here in Chicago is to empower gender-marginalized
individuals in hackathon environments!
</h3>
</div>
</div>
<div class="col-lg-6">
<img
src="assets/Mask Group.png"
style="padding: 0% 0% 0% 20%; width: 75%"
/>
</div>
</div>
<!--Challenges-->
<div id="challenges" class="row text-center" style="margin-top: 10%">
<h1
style="
font-family: Barlow;
font-weight: bold;
font-size: 64px;
color: white;
"
>
Challenges
</h1>
<a
href="https://techtogether-chicago.devpost.com/#:~:text=any%20TechTogether%20prizes.-,PRIZES,-%242%2C770%20in%20prizes"
>
<p class="chall-link">View all Challenges</p>
</a>
<div class="row" style="margin-top: 4%">
<div class="col-md-3" style="padding-left: 2.5%">
<div class="row text-center">
<a
href="https://techtogether-chicago.devpost.com/#:~:text=card%20to%20einnim.-,Most%20Accessible%20Hack,-An%20innovative%20future"
target="_blank"
rel="noopener noreferrer"
>
<button class="class-head">Most Accessible Hack</button>
</a>
</div>
<div class="row">
<img
src="assets/TTC_Byte-01 1.png"
style="
height: 250px;
width: min-content;
margin: auto;
display: block;
"
/>
</div>
</div>
<div class="col-md-6">
<div class="row">
<a
href="https://techtogether-chicago.devpost.com/#:~:text=Hack%20Most%20Likely%20to%20Be%20Used%20in%202090"
target="_blank"
rel="noopener noreferrer"
>
<button class="class-head">
Hack Most Likely to Be Used in 2090
</button>
</a>
</div>
<div class="row">
<img
src="assets/spaceByte.png"
style="
height: 240px;
width: min-content;
margin: auto;
display: block;
padding-top: 10px;
"
/>
</div>
</div>
<div class="col-md-3">
<div class="row">
<a
href="https://techtogether-chicago.devpost.com/#:~:text=Robinhood%20Engineering%20Managers.-,Best%20Data%20Hack,-As%20we%20move"
target="_blank"
rel="noopener noreferrer"
>
<button
class="class-head"
style="padding-left: 20%; padding-right: 20%"
>
Best Data Hack
</button>
</a>
</div>
<div class="row">
<img
src="assets/byte1.png"
style="
height: 250px;
width: min-content;
margin: auto;
display: block;
"
/>
</div>
</div>
</div>
</div>
<!--Schedule2-->
<div
id="schedule"
class="box-schedule"
style="
background-color: #333f9b;
border-radius: 50px;
margin-left: 5%;
margin-right: 5%;
margin-top: 5%;
padding-left: 3%;
padding-right: 3%;
padding-bottom: 5%;
"
>
<section class="page-section" id="schedule" data-color="#735585">
<div class="container" style="padding-top: 5%">
<h1
class="text-center"
style="
font-family: Barlow;
font-weight: 800;
font-size: 64px;
color: white;
"
id="schedule"
>
Schedule
</h1>
<div class="text-center text-light" style="padding-top: 10px">
Click to view a description of each event below. All times are
displayed in CST. Zoom links are available in the Google Calendar
events.
</div>
<div
class="text-center text-light"
style="padding-top: 5px; padding-bottom: 20px"
>
Add all the events for the weekend
<a
style="color: #fda094"
target="_blank"
href="https://calendar.google.com/calendar/u/1?cid=Y19pcWdlMm5vZDdjamRxcXYybjZjMnY0cWxqNEBncm91cC5jYWxlbmRhci5nb29nbGUuY29t"
>here</a
>.
</div>
<div class="schedule-container">
<ul class="nav nav-tabs nav-fill">
<li
class="nav-item schedule-toggler active-day"
id="thurstogglecontainer"
>
<a
href="#thurs"
style="text-decoration: none; color: white"
id="thurstoggle"
class="active link text-purple"
data-bs-toggle="tab"
><span
style="font-size: 20px; margin-right: 2px; color: #fda094"
>THURS</span
>
February 24</a
>
</li>
<li class="nav-item schedule-toggler" id="fritogglecontainer">
<a
href="#fri"
style="text-decoration: none; color: white"
id="fritoggle"
class="link text-purple"
data-bs-toggle="tab"
><span
style="font-size: 20px; margin-right: 2px; color: #fda094"
>FRI</span
>
February 25</a
>
</li>
<li class="nav-item schedule-toggler" id="sattogglecontainer">
<a
href="#sat"
style="text-decoration: none; color: white"
id="sattoggle"
class="link text-purple"
data-bs-toggle="tab"
><span
style="font-size: 20px; margin-right: 2px; color: #fda094"
>SAT</span
>
February 26</a
>
</li>
<li class="nav-item schedule-toggler" id="suntogglecontainer">
<a
href="#sun"
style="text-decoration: none; color: white"
id="suntoggle"
class="link text-purple"
data-bs-toggle="tab"
><span
style="font-size: 20px; margin-right: 2px; color: #fda094"
>SUN</span
>
February 27</a
>
</li>
</ul>
<div class="tab-content">
<!-- Thursday Activities -->
<div class="tab-pane fade show active" id="thurs">
<table class="table" style="color: white">
<tbody>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal1"
>
<th scope="row">6:30-7:00pm</th>
<td>
How to Use the Cloud in Your Hackathon Project
(Sponsored by Microsoft)
</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal2"
>
<th scope="row">7:00-8:00pm</th>
<td>Beginner's Guide to Hackathon</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal3"
>
<th scope="row">8:00-9:00pm</th>
<td>Team Formation #1</td>
</tr>
</tbody>
</table>
</div>
<!-- Friday Activities -->
<div class="tab-pane fade" id="fri">
<table class="table" style="color: white">
<tbody>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal4"
>
<th scope="row">4:00-5:00pm</th>
<td>Career Fair</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal5"
>
<th scope="row">5:00-5:30pm</th>
<td>Opening Ceremony</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal6"
>
<th scope="row">5:30-6:30pm</th>
<td>Team Formation #2</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal7"
>
<th scope="row">6:30-7:00pm</th>
<td>Intro to Web Dev</td>
</tr>
<tr class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal77">
<th scope="row">7:00-7:30pm</th>
<td>Introduction to Tech Decacorn Celonis and the Wild World of Process Mining</td>
</tr>
<tr class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal777">
<th scope="row">7:30-8:00pm</th>
<td>Intro to Github</td>
</tr>
<!--
<tr>
<th scope="row">8:00-8:30pm</th>
<td></td>
</tr>
-->
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal8"
>
<th scope="row">8:30-9:00pm</th>
<td>Intro to Python</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal9"
>
<th scope="row">9:00-9:30pm</th>
<td>Intro to Data Science</td>
</tr>
<!--
<tr>
<th scope="row">9:30-10:00pm</th>
<td></td>
</tr>
-->
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal10"
>
<th scope="row">10:00-10:30pm</th>
<td>Intro to Javascript</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal11"
>
<th scope="row">10:30-11:00pm</th>
<td>Among Us Tournament (Day 1)</td>
</tr>
<!--
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal12"
>
<th scope="row">11:00-11:30pm</th>
<td>Bob Ross Night</td>
</tr>-->
</tbody>
</table>
</div>
<!-- Saturday Activities -->
<div class="tab-pane fade" id="sat">
<table class="table" style="color: white">
<tbody>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal932"
>
<th scope="row">10:00-10:30am</th>
<td>How to Use Code Editors like VSCode 10</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal13"
>
<th scope="row">10:30-11:00am</th>
<td>Negotiation</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal14"
>
<th scope="row">11:00-11:30am</th>
<td>Team Formation #3</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal15"
>
<th scope="row">11:30-12:00pm</th>
<td>Flutter 101</td>
</tr>
<!--
<tr>
<th scope="row">12:00-12:30pm</th>
<td></td>
</tr>
-->
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal16"
>
<th scope="row">12:30-1:00pm</th>
<td>Intro to AWS</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal17"
>
<th scope="row">1:00-1:30pm</th>
<td>Guest Speaker</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal18"
>
<th scope="row">1:30-2:00pm</th>
<td>Getting Started with Data Activism</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal100"
>
<th scope="row">2:00-2:30pm</th>
<td>Among Us Tournament (Day 2)</td>
</tr>
<tr class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal229">
<th scope="row">2:30-3:30pm</th>
<td>Intro to Blockchain & Demystifying Web3</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modalprash"
>
<th scope="row">3:00-4:30pm</th>
<td>Creative Coding in Music: Survey and Introduction to TunePad</td>
</tr>
<!--
<tr>
<th scope="row">2:30-3:00pm</th>
<td></td></td>
</tr>
<tr>
<th scope="row">3:00-3:30pm</th>
<td></td>
</tr>
-->
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal19"
>
<th scope="row">3:30-4:00pm</th>
<td>Being a PM for a B2B Business</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal20"
>
<th scope="row">4:00-4:30pm</th>
<td>Midwestern Trivia</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal21"
>
<th scope="row">4:30-5:00pm</th>
<td>Intro to Web3</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal22"
>
<th scope="row">5:00-5:30pm</th>
<td>Alternative Approach to College</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal23"
>
<th scope="row">5:30-6:00pm</th>
<td>How to Get Involved in Undergraduate Research</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal24"
>
<th scope="row">6:00-6:30pm</th>
<td>What can I do with a CS Degree</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal25"
>
<th scope="row">6:30-7:00pm</th>
<td>Speed Interviews</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal26"
>
<th scope="row">7:00-9:00pm</th>
<td>Movie Night: Coded Bias</td>
</tr>
</tbody>
</table>
</div>
<!-- Sunday Activities -->
<div class="tab-pane fade" id="sun">
<table class="table" style="color: white">
<!--
<tbody>
<tr>
<th scope="row">10:00-10:30am</th>
<td></td>
</tr>
<tr>
<th scope="row">10:30-11:00am</th>
<td></td>
</tr>
-->
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal27"
>
<th scope="row">11:00-11:30am</th>
<td>Women in Tech Workshop/Panel</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal102"
>
<th scope="row">11:00-11:30am</th>
<td>A Student's Guide to Startups</td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal320"
>
<th scope="row">11:30-12:00pm</th>
<td>Intro to Disruptive Tech with Disruption Lab @ UIUC</td>
</tr>
<!--
<tr>
<th scope="row">11:30-12:00pm</th>
<td></td>
</tr>
-->
<!--
<tr>
<th scope="row">1:00-1:30pm</th>
<td></td>
</tr>
<tr>
<th scope="row">2:00-2:30pm</th>
<td></td>
</tr>
-->
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal29"
>
<th scope="row">3:00-3:30pm</th>
<td>Projects due at 3:00pm!</td>
</tr>
<!--
<tr>
<th scope="row">3:30-4:00pm</th>
<td></td>
</tr>
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal30"
>
<th scope="row">4:00-6:00pm</th>
<td>Judging Onboarding & Judging</td>
</tr>
<tr>
<th scope="row">6:00-6:30pm</th>
<td></td>
</tr>
<tr>
<th scope="row">6:30-7:00pm</th>
<td></td>
</tr>
-->
<tr
class="scheduledevent"
data-bs-toggle="modal"
data-bs-target="#modal31"
>
<th scope="row">7:00-7:30pm</th>
<td>Closing Ceremony</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!--Modals-->
<div
class="modal fade"
id="modal229"
tabindex="-1"
aria-labelledby="exampleModalLabel"
aria-hidden="true"
>
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">
Intro to Blockchain & Demystifying Web3
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
Jobin Ayathil, Blockchain Developer Evangelist <br/>
I will cover the basics of Blockchain, working & concepts behind Bitcoin, Ethereum & Also a guide to start with Blockchain development.
<br />
</div>
<div class="modal-footer">
<button
type="button"
class="btn btn-secondary"
data-bs-dismiss="modal"
>
Close
</button>
<a
target="_blank"
type="button"
href="https://calendar.google.com/event?action=TEMPLATE&tmeid=M3M5aThoZ3ZhZGIydjliaGE3bXNibjloODcgY19pcWdlMm5vZDdjamRxcXYybjZjMnY0cWxqNEBn&tmsrc=c_iqge2nod7cjdqqv2n6c2v4qlj4%40group.calendar.google.com"
class="btn btn-primary"
>
Add event to Google Calendar
</a>
</div>
</div>
</div>
</div>
<div
class="modal fade"
id="modal1"
tabindex="-1"
aria-labelledby="exampleModalLabel"
aria-hidden="true"
>
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">
How to Use the Cloud in Your Hackathon
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
I've been to a lot of hackathons, but I've never used the cloud
in any of my projects. Why? Because it always seemed too
complicated and scary to tackle during a hackathon.This workshop
is designed to help you conquer those fears by answering the
following questions: What is the cloud? How can I use it in my
hackathon project? What types of projects can I create with
cloud technology? What free resources are available to help me
get started? What if I get stuck? Use the skills you learn in
this workshop at one of TechTogether's upcoming hackathons. This
workshop is co-hosted with Microsoft, TechTogether's official
Cloud Partner of our 2021-2022 hackathon season.
<br />
</div>
<div class="modal-footer">
<button
type="button"
class="btn btn-secondary"
data-bs-dismiss="modal"
>
Close
</button>
<a
type="button"
href="https://calendar.google.com/event?action=TEMPLATE&tmeid=MTg4Zmk5Y2RtYmFkdnA4bGZ0aXNqNm5xbmYgY19pcWdlMm5vZDdjamRxcXYybjZjMnY0cWxqNEBn&tmsrc=c_iqge2nod7cjdqqv2n6c2v4qlj4%40group.calendar.google.com"
class="btn btn-primary"
>
Add event to Google Calendar
</a>
</div>
</div>
</div>
</div>
<div
class="modal fade"
id="modal2"
tabindex="-1"
aria-labelledby="exampleModalLabel"
aria-hidden="true"
>
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">
Beginner's Guide to Hackathons
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
Come and attend this workshop!
<br />
</div>
<div class="modal-footer">
<button
type="button"
class="btn btn-secondary"
data-bs-dismiss="modal"
>
Close
</button>
<a
target="_blank"
href="https://calendar.google.com/event?action=TEMPLATE&tmeid=NmwxbmduZzJraDZjMDY5YTNoMDNzbnRwYm8gY19pcWdlMm5vZDdjamRxcXYybjZjMnY0cWxqNEBn&tmsrc=c_iqge2nod7cjdqqv2n6c2v4qlj4%40group.calendar.google.com"
type="button"
class="btn btn-primary"
>
Add event to Google Calendar
</a>
</div>
</div>
</div>
</div>
<div
class="modal fade"
id="modal3"
tabindex="-1"
aria-labelledby="exampleModalLabel"
aria-hidden="true"