-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
938 lines (846 loc) · 37.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Accept-CH" content="DPR, Viewport-Width, Width" />
<meta name="Description"
content="A free-to-attend, 24-hour hackathon coming soon. For high-schoolers, by high-schoolers." />
<meta charset="utf-8" />
<title>Toga Hacks I</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="" name="keywords" />
<meta content="" name="description" content="TogaHacks I is a 24 hour programming event where high school
students all over Silicon Valley come together to develop a
software or hardware project!" />
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#cd1d2c" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Raleway:300,400,500,700,800"
rel="stylesheet" />
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-149590316-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-149590316-1");
</script>
<style>
</style>
</head>
<body>
<!--==========================
Header
============================-->
<header id="header">
<div class="container">
<div class="container d-flex justify-content-center">
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="menu-active"><a href="#intro">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#venue">Venue</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#supporters">Sponsors</a></li>
<li><a href="#buy-tickets">Sponsor Us</a></li>
<li class="buy-tickets">
<!--this links the button to an embedded popup typeform-->
<!-- <a class="typeform-share button" href="https://armanrafati.typeform.com/to/dqXF7O" rel="noopener"
data-mode="popup" target="_blank">Register Now
</a> -->
<a href="#team"
>Join the Team
</a>
<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>
</li>
</ul>
</nav>
<!-- #nav-menu-container -->
</div>
</header>
<!-- #header -->
<!--==========================
Intro Section
============================-->
<section client_hints="true" sizes="100vw" id="intro">
<div class="intro-container">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/v1574056740/TogaHacks/logos/logo-white-T.png"
responsive_placeholder="blank" alt="TogaHacks logo" class="img-fluid cld-responsive wow fadeInDownBig" data-wow-duration="2s" id="main-logo-T" />
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/v1574056740/TogaHacks/logos/logo-white-H.png"
responsive_placeholder="blank" alt="TogaHacks logo" class="img-fluid cld-responsive wow fadeIn" data-wow-duration="2s" id="main-logo" />
<h1 class="mb-4 pb-0 animate wow fadeIn">
<span class="text-wrapper">
<span class="words">
<span class="red word1">TOGA</span>
<span class="word2">HACKS</span>
<span class="red word3">I</span>
</span>
</span>
</h1>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script>
<p class="mb-3 pb-0 wow fadeInUp" data-wow-delay="1.8s" data-wow-duration="0.7s">Silicon Valley, CA</p>
<p class="mb-4 pb-0 wow fadeInUp" data-wow-delay="2.5s" data-wow-duration="0.7s">2021 <small><i>(postponed due to COVID-19)</i></small></p>
<a class="typeform-share button register-btn wow fadeInUp" data-wow-delay="2.9s" data-wow-duration="0.7s" href="https://armanrafati.typeform.com/to/dqXF7O" rel="noopener"
data-mode="popup" target="_blank">Register Now
</a>
</div>
</section>
<main id="main">
<!--==========================
About Section
============================-->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-6 wow fadeInUp">
<h2>About The Event</h2>
<p>
TogaHacks I is a 24 hour programming event where high school
students all over Silicon Valley come together to develop a
software or hardware project!
</p>
</div>
<div class="col-lg-3 wow fadeInUp" data-wow-delay="0.2s">
<h3>Where</h3>
<p>Silicon Valley, California</p>
</div>
<div class="col-lg-3 wow fadeInUp" data-wow-delay="0.4s">
<h3>When</h3>
<p><i>Currently postponed due to COVID-19.</i></p>
<p>Saturday & Sunday<br />2021</p>
</div>
</div>
</section>
<!--==========================
Venue Section
============================-->
<section id="venue" class="wow fadeInUp">
<div class="container-fluid">
<div class="section-header">
<h2>Event Venue</h2>
<!-- <p>Event venue location and info</p> -->
</div>
<div class="row no-gutters">
<div class="col-lg-6 venue-map">
<div id="map">
<script>
let map;
function initMap() {
map = new google.maps.Map(document.getElementById("map"), {
center: { lat: 37.387, lng: -122.057 },
zoom: 12,
styles: [
{
elementType: "geometry",
stylers: [{ color: "#242f3e" }]
},
{
elementType: "labels.text.stroke",
stylers: [{ color: "#242f3e" }]
},
{
elementType: "labels.text.fill",
stylers: [{ color: "#746855" }]
},
{
featureType: "administrative.locality",
elementType: "labels.text.fill",
stylers: [{ color: "#d59563" }]
},
{
featureType: "poi",
elementType: "labels.text.fill",
stylers: [{ color: "#d59563" }]
},
{
featureType: "poi.park",
elementType: "geometry",
stylers: [{ color: "#263c3f" }]
},
{
featureType: "poi.park",
elementType: "labels.text.fill",
stylers: [{ color: "#6b9a76" }]
},
{
featureType: "road",
elementType: "geometry",
stylers: [{ color: "#38414e" }]
},
{
featureType: "road",
elementType: "geometry.stroke",
stylers: [{ color: "#212a37" }]
},
{
featureType: "road",
elementType: "labels.text.fill",
stylers: [{ color: "#9ca5b3" }]
},
{
featureType: "road.highway",
elementType: "geometry",
stylers: [{ color: "#746855" }]
},
{
featureType: "road.highway",
elementType: "geometry.stroke",
stylers: [{ color: "#1f2835" }]
},
{
featureType: "road.highway",
elementType: "labels.text.fill",
stylers: [{ color: "#f3d19c" }]
},
{
featureType: "transit",
elementType: "geometry",
stylers: [{ color: "#2f3948" }]
},
{
featureType: "transit.station",
elementType: "labels.text.fill",
stylers: [{ color: "#d59563" }]
},
{
featureType: "water",
elementType: "geometry",
stylers: [{ color: "#17263c" }]
},
{
featureType: "water",
elementType: "labels.text.fill",
stylers: [{ color: "#515c6d" }]
},
{
featureType: "water",
elementType: "labels.text.stroke",
stylers: [{ color: "#17263c" }]
}
]
});
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBD2Q5gab7PCxacJX-hivZOoC1WdhY_g-U&callback=l"
async defer></script>
<iframe
width="600"
height="500"
id="gmap_canvas"
src="https://www.google.com/maps/embed?origin=mfe&pb=!1m3!2m1!1ssilicon+valley!6i13"
frameborder="0"
scrolling="no"
marginheight="0"
marginwidth="0"
></iframe>
</div></div>
<div class="col-lg-6 venue-info">
<div class="row h-100 align-content-center justify-content-center">
<div class="col-11 col-lg-8">
<h3>TBD, California</h3>
<p>We are currently finalizing our venue.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Schedule Section
============================-->
<section id="schedule" class="section-with-bg">
<div class="container wow fadeInUp">
<div class="section-header">
<h2>Event Schedule</h2>
</div>
<div class="row pb-3">
<div class="col-12 text-center">
<p class="lead"><i>Currently postponed due to COVID-19.</i></p>
</div>
</div>
<div id="phonebuttons">
<ul class="nav nav-tabs" role="tablist">
<li class="nav-item" >
<a class="nav-link active" href="#day-1" role="tab" data-toggle="tab">Saturday</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#day-2" role="tab" data-toggle="tab">Sunday</a>
</li>
</ul>
</div>
<div id="smallscreen" class="tab-content row justify-content-center">
<!-- Schedule Day 1 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade show active" id="day-1">
<div class="row schedule-item">
<div class="col-md-2"><time>09:00 AM</time></div>
<div class="col-md-10">
<h4>Hacker Check In Begins</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:00 AM</time></div>
<div class="col-md-10">
<h4>Opening Ceremony</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:20 AM</time></div>
<div class="col-md-10">
<h4>Team Formation</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>12:00 PM</time></div>
<div class="col-md-10">
<h4>Lunch</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>02:00 PM</time></div>
<div class="col-md-10">
<h4>Workshop 1</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>03:30 PM</time></div>
<div class="col-md-10">
<h4>Snacks</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>04:30 PM</time></div>
<div class="col-md-10">
<h4>Workshop 2</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>06:30 PM</time></div>
<div class="col-md-10">
<h4>Dinner</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>09:30 PM</time></div>
<div class="col-md-10">
<h4>Cup Stacking</h4>
</div>
<div class="row schedule-item"></div>
</div>
</div>
<!-- End Schedule Day 1 -->
<!-- Schedule Day 2 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade" id="day-2">
<div class="row schedule-item">
<div class="col-md-2"><time>12:00 AM</time></div>
<div class="col-md-10">
<h4>Midnight Snack</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>07:00 AM</time></div>
<div class="col-md-10">
<h4>Breakfast</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>09:30 AM</time></div>
<div class="col-md-10">
<h4>Submissions to Devpost</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:00 AM</time></div>
<div class="col-md-10">
<h4>Presentations and Judging</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>11:30 AM</time></div>
<div class="col-md-10">
<h4>Prizes and Closing Ceremony</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>12:00 PM</time></div>
<div class="col-md-10">
<h4>Event End</h4>
</div>
</div>
</div>
</div>
<!-- End Schedule Day 2 -->
</div>
</section>
<!--==========================
F.A.Q Section
============================-->
<section id="faq" class="wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>F.A.Q</h2>
</div>
<div class="row justify-content-center">
<div class="col-lg-9">
<ul id="faq-list">
<li>
<a data-toggle="collapse" class="collapsed" href="#faq1">Does this event cost money?
<i class="fa fa-minus-circle"></i></a>
<div id="faq1" class="collapse" data-parent="#faq-list">
<p>
Not at all! It is completely free, thanks to the generous
donations by our sponsors.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq2" class="collapsed">What is the theme? <i
class="fa fa-minus-circle"></i></a>
<div id="faq2" class="collapse" data-parent="#faq-list">
<p>
We'll announce it at the event! Stay tuned.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#faq3">What is a Hackathon? <i
class="fa fa-minus-circle"></i></a>
<div id="faq3" class="collapse" data-parent="#faq-list">
<p>
A Hackathon is a 24 hour programming event where students
work together to develop a software or hardware project.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq4" class="collapsed">Who can participate? <i
class="fa fa-minus-circle"></i></a>
<div id="faq4" class="collapse" data-parent="#faq-list">
<p>
All high school students are welcome to participate!
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq5" class="collapsed">What if I don't know how to code?
<i class="fa fa-minus-circle"></i></a>
<div id="faq5" class="collapse" data-parent="#faq-list">
<p>
No problem! We will be hosting several workshops
throughout the event intended to help you learn to code.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq6" class="collapsed">What should I bring? <i
class="fa fa-minus-circle"></i></a>
<div id="faq6" class="collapse" data-parent="#faq-list">
<p>
A laptop and a charger is all that you need. A sleeping
bag is recommended (if you plan to sleep 😉).
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq7" class="collapsed">How do I form a team? <i
class="fa fa-minus-circle"></i></a>
<div id="faq7" class="collapse" data-parent="#faq-list">
<p>
If you do not have a team already, there will be team
formation at the beginning of the hackathon. This is an
opportunity for you to meet new people and form teams.
Each team should have a maximum of four people.
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Team Section
============================-->
<section id="team" class="section-with-bg">
<div class=" section-header wow fadeInUp">
<h2>Team</h2>
</div>
<div class="container center">
<div class="row d-flex justify-content-center ">
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.2s">
<div class="member rounded-circle">
<img
data-src="https://coderdojosaratoga.netlify.app/images/Screen%20Shot%202021-02-27%20at%2011.55.18%20AM.png"
alt="Vignav Ramesh" class="cld-responsive" responsive_placeholder="blank" />
<div class="member-info">
<div class="member-info-content">
<h3>Vignav Ramesh</h3>
<p>Executive Director</p>
<div class="social">
<a href="https://github.com/rvignav"><i class="fa fa-github"></i></a>
<a href="https://www.facebook.com/vignav.ramesh.9/"><i class="fa fa-facebook"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.2s">
<div class="member rounded-circle">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/c_scale,dpr_auto,f_auto,q_auto,w_auto/v1/TogaHacks/team/Mason_Wang.jpg"
responsive_placeholder="blank" alt="Mason Wang" class="cld-responsive" />
<div class="member-info">
<div class="member-info-content">
<h3>Mason Wang</h3>
<p>Executive Director</p>
<div class="social">
<a href="https://github.com/MasonWang025"><i class="fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/mason-wang-7b2758176"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="member rounded-circle">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/c_scale,dpr_auto,f_auto,q_auto,w_auto/v1/TogaHacks/team/Howard_Huang_bfjnfd.jpg"
responsive_placeholder="blank" alt="Howard Huang" class="cld-responsive" />
<div class="member-info">
<div class="member-info-content">
<h3>Howard Huang</h3>
<p>Executive Director</p>
<div class="social">
<a href="https://github.com/HowardHuang1"><i class="fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/howard-huang-b24465183/"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<!-- </div> -->
<!-- <div class="row d-flex justify-content-center "> -->
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="member rounded-circle">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/v1581375698/TogaHacks/team/Mathew.jpg"
responsive_placeholder="blank" alt="Mateo Wang" class="cld-responsive" />
<div class="member-info">
<div class="member-info-content">
<h3>Mateo Wang</h3>
<p>Tech Director</p>
<div class="social">
<a href="https:///www.github.com/SwiftWinds"><i class="fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/mateo-wang/"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
<center>
<h3>Interested in joining the team? Fill out <strong><u><a href="https://forms.gle/2imoEHedSsFWYaPw7">this form</a></u></strong>.</h3>
</center>
<br>
<div class=" section-header wow fadeInUp" >
<h2>Advisors</h2>
</div>
<div class="container center">
<div class="row d-flex justify-content-center ">
<div class="col-lg-3 col-md-6 wow fadeInUp">
<div class="member rounded-circle">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/c_scale,dpr_auto,f_auto,q_auto,w_auto/v1/TogaHacks/team/Arman_Rafati_eunebi.jpg"
responsive_placeholder="blank" alt="Arman Rafati" class="cld-responsive" />
<div class="member-info">
<div class="member-info-content">
<h3>Arman Rafati</h3>
<p>Emeritus Executive Director</p>
<div class="social">
<a href="https://github.com/code-arman""><i class=" fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/armanrafati/"><i class=" fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="member rounded-circle">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/c_scale,dpr_auto,f_auto,q_auto,w_auto/v1/TogaHacks/team/Tony_Jiang_jhbuad.jpg"
responsive_placeholder="blank" alt="Tony Jiang" class="cld-responsive" />
<div class="member-info">
<div class="member-info-content">
<h3>Tony Jiang</h3>
<p>Emeritus Executive Director</p>
<div class="social">
<a href="https://github.com/tonyjiang02"><i class="fa fa-github"></i></a>
<a href="http://linkedin.com/in/tony-jiang-672662139"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.2s">
<div class="member rounded-circle">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/c_scale,dpr_auto,f_auto,q_auto,w_auto/v1/TogaHacks/team/Sidney.jpg"
responsive_placeholder="blank" alt="Sidney Hough" class="cld-responsive" />
<div class="member-info">
<div class="member-info-content">
<h3>Sidney Hough</h3>
<p>Emeritus Sponsorship Director</p>
<div class="social">
<a href="https://github.com/sidsquid"><i class="fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/sidney-hough-75593417a/"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--end of container-->
</section><!-- #team -->
<!--==========================
Sponsors Section
============================-->
<section id="supporters">
<div class="container wow fadeInUp justify-content-center" data-wow-delay="0.2s">
<div class="section-header">
<h2>Partners</h2>
</div>
<div class="row justify-content-md-center no-gutters supporters-wrap clearfix">
<div class="col-xl-5 col-lg-6 col-md-6 col-xs-12 pb-0">
<div class="supporter-logo" style="padding:3em">
<a href="https://craignewmarkphilanthropies.org/">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/v1578614347/TogaHacks/supporters/craignewmark.png"
alt="Craig Newmark Philanthropies" responsive_placeholder="blank" class="img-fluid cld-responsive" />
</a>
</div>
</div>
</div>
<div class="container wow fadeInUp">
<div class="section-header sponsors" style="margin-top: 0">
<h2>Sponsors</h2>
</div>
<div id="sponsors-grid" class="row justify-content-center no-gutters supporters-wrap clearfix">
<div class="col-xl-2 col-lg-3 col-md-4 col-6">
<div class="supporter-logo">
<a href="https://rstor.io">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/v1584714280/TogaHacks/supporters/rstor.png"
alt="Rstor Logo" responsive_placeholder="blank" class="img-fluid cld-responsive" />
</a>
</div>
</div>
<div class="col-xl-2 col-lg-3 col-md-4 col-6">
<div class="supporter-logo">
<a href="https://imasons.org/">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/v1584714447/TogaHacks/supporters/imason.png"
alt="iMasons Logo" responsive_placeholder="blank" class="img-fluid cld-responsive" />
</a>
</div>
</div>
<div class="col-xl-2 col-lg-3 col-md-4 col-6">
<div class="supporter-logo">
<a href="https://balsamiq.com/">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/v1578614347/TogaHacks/supporters/balsamiqlogo.png"
alt="Balsamiq Logo" responsive_placeholder="blank" class="img-fluid cld-responsive" />
</a>
</div>
</div>
<div class="col-xl-2 col-lg-3 col-md-4 col-6">
<div class="supporter-logo">
<a href="https://github.com/">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/v1581176239/TogaHacks/supporters/Github.jpg"
alt="Github Logo" responsive_placeholder="blank" class="img-fluid cld-responsive" />
</a>
</div>
</div>
<div class="col-xl-2 col-lg-3 col-md-4 col-6">
<div class="supporter-logo">
<a href="https://cloudsploit.com/">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/v1578614424/TogaHacks/supporters/cloudsploitlogo.png"
alt="CloudSploit Logo" responsive_placeholder="blank" class="img-fluid cld-responsive" />
</a>
</div>
</div>
<div class="col-xl-2 col-lg-3 col-md-4 col-6">
<div class="supporter-logo">
<a href="https://www.wolframalpha.com/">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/v1576629484/TogaHacks/supporters/wolfram.png"
alt="Wolfram Logo" responsive_placeholder="blank" class="img-fluid cld-responsive" />
</a>
</div>
</div>
<div class="col-xl-2 col-lg-3 col-md-4 col-6">
<div class="supporter-logo">
<a href="https://www.jetbrains.com/">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/v1581176332/TogaHacks/supporters/Jetbrains.png"
alt="Jetbrains Logo" responsive_placeholder="blank" class="img-fluid cld-responsive" />
</a>
</div>
</div>
<div class="col-xl-2 col-lg-3 col-md-4 col-6">
<div class="supporter-logo">
<a href="https://magoosh.com/">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/v1581176452/TogaHacks/supporters/Magoosh.png"
alt="Magoosh Logo" responsive_placeholder="blank" class="img-fluid cld-responsive" />
</a>
</div>
</div>
<div class="col-xl-2 col-lg-3 col-md-4 col-6">
<div class="supporter-logo">
<a href="https://www.ea.com/">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/c_scale,dpr_auto,f_auto,q_auto,w_auto/v1/TogaHacks/supporters/ea.png"
alt="Electronic Arts Logo" responsive_placeholder="blank" class="img-fluid cld-responsive" />
</a>
</div>
</div>
<div class="col-xl-2 col-lg-3 col-md-4 col-6">
<div class="supporter-logo">
<a href="https://www.bugsee.com/">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/v1581176504/TogaHacks/supporters/Bugsee.png"
alt="Bugsee Logo" responsive_placeholder="blank" class="img-fluid cld-responsive" />
</a>
</div>
</div>
<div class="col-xl-2 col-lg-3 col-md-4 col-6">
<div class="supporter-logo">
<a href="https://www.think-board.com/">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/v1581176332/TogaHacks/supporters/think-board.png"
alt="Think Board Logo" responsive_placeholder="blank" class="img-fluid cld-responsive" />
</a>
</div>
</div>
<div class="col-xl-2 col-lg-3 col-md-4 col-6">
<div class="supporter-logo">
<a href="https://hackclub.com/bank/">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/v1581176385/TogaHacks/supporters/HackClubBank.png"
alt="Hack Club Bank Logo" responsive_placeholder="blank" class="img-fluid cld-responsive" /></a>
</div>
</div>
<div class="col-xl-2 col-lg-3 col-md-4 col-6">
<div class="supporter-logo">
<a href="https://netlify.com">
<img
data-src="https://res.cloudinary.com/damnzwekj/image/upload/v1581176385/TogaHacks/supporters/netlify_lsvd1f.png"
alt="Netlify Logo" responsive_placeholder="blank" class="img-fluid cld-responsive" /></a>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Sponsor Us Section
============================-->
<section id="buy-tickets" class="section-with-bg">
<div class="wow fadeInUp">
<div class="container .d-none .d-lg-block .d-xl-none .d-xl-block">
<div class="section-header">
<h2>Sponsor Us</h2>
</div>
<div class="text-center lead">
<p>
We are under fiscally sponsored by a 501(c)(3) non-profit.
<b>All donations are tax-deductible.</b>
</p>
</div>
</div>
<!--Sponsorship Prospectus Button-->
<div class="text-center">
<a class="btn prospectus-btn" href="TogaHacks Sponsorship Prospectus.pdf" target="_blank">View
Sponsorship Prospectus</a>
</div>
<div class="text-center lead" style="padding: 30px 15px 0">
<p>
Want to sponsor us? Email
<b><a href="mailto:[email protected]">[email protected]</a></b>.
</p>
</div>
</section>
</main>
<!--==========================
Footer
============================-->
<footer id="footer">
<div class="container wow fadeIn" data-wow-delay="0.3s">
<div class="footer-top d-flex justify-content-center">
<div class="footer-contact text-center col-lg-6">
<h2>Contact Us</h2>
<p>
Venue Address TBD <br>
Silicon Valley, CA<br>
United States <br>
<strong>Email:</strong> <a href="mailto: [email protected]">[email protected]</a><br>
<strong>Sponsor us:</strong> <a href="mailto: [email protected]">[email protected]</a><br>
</p>
<div class="social-links">
<a href="#" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="#" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/togahacks/" class="instagram"><i class="fa fa-instagram"></i></a>
<a href="#" class="google-plus"><i class="fa fa-google-plus"></i></a>
<a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="copyright">
© 2020 <strong>Toga Hacks</strong>. Licensed under the
<strong><a href="https://github.com/Toga-Hacks-I/Toga-Hacks-Website/blob/master/LICENSE" id="license">MIT
License</a></strong>
</div>
</div>
</div>
</footer>
<!-- #footer -->
<a href="#" class="back-to-top"><i class="fa fa-angle-up"></i></a>
<!-- Main Javascript File -->
<script src="./js/main.js"></script>
</body>
</html>