This repository has been archived by the owner on Nov 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1551 lines (1524 loc) · 96.8 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 class="wide" lang="en">
<head>
<title>Hack This Fall 2.0 | Innovate For Good</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="images/hhf/circle-s2.png" type="image/x-icon">
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Barlow%7CBarlow+Condensed:300,400,500,600,700,900">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/fonts.css">
<link rel="stylesheet" href="css/style.css">
<style>
.ie-panel {
display: none;
background: #212121;
padding: 10px 0;
box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, .3);
clear: both;
text-align: center;
position: relative;
z-index: 1;
}
html.ie-10 .ie-panel,
html.lt-ie-10 .ie-panel {
display: block;
}
</style>
</head>
<body>
<div class="ie-panel">
<a target="_blank" href="http://windows.microsoft.com/en-US/internet-explorer/"><img
src="images/ie8-panel/warning_bar_0000_us.jpg" height="42" width="820"
alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today."></a>
</div>
<div class="preloader">
<div class="preloader-body">
<div class="cssload-container">
<div class="cssload-speeding-wheel"></div>
</div>
<p>Loading...</p>
</div>
</div>
<div class="page">
<!-- Section Header Default-->
<header class="section page-header">
<!--RD Navbar-->
<div class="rd-navbar-wrap">
<nav class="rd-navbar rd-navbar-classic" data-layout="rd-navbar-fixed" data-sm-layout="rd-navbar-fixed"
data-md-layout="rd-navbar-fixed" data-md-device-layout="rd-navbar-fixed"
data-lg-layout="rd-navbar-static" data-lg-device-layout="rd-navbar-static"
data-xl-layout="rd-navbar-static" data-xl-device-layout="rd-navbar-static"
data-xxl-layout="rd-navbar-static" data-xxl-device-layout="rd-navbar-static"
data-lg-stick-up-offset="46px" data-xl-stick-up-offset="46px" data-xxl-stick-up-offset="76px"
data-lg-stick-up="true" data-xl-stick-up="true" data-xxl-stick-up="true">
<div class="rd-navbar-main-outer">
<div class="rd-navbar-main">
<!--RD Navbar Panel-->
<div class="rd-navbar-panel">
<!--RD Navbar Toggle-->
<button class="rd-navbar-toggle"
data-rd-navbar-toggle=".rd-navbar-nav-wrap"><span></span></button>
<!--RD Navbar Brand-->
<div class="rd-navbar-brand">
<!--Brand-->
<a class="brand" href="/"><img class="brand-logo-light"
src="images/hhf/new-logo.png" style="height: 50px;" /></a>
</div>
</div>
<!-- Rd Navbar Navigation-->
<div class="rd-navbar-main-element">
<div class="rd-navbar-nav-wrap">
<ul class="rd-navbar-nav">
<li class="rd-nav-item"><a class="rd-nav-link" href="#about"
style="color: #212121;">About</a>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="#speaker"
style="color: #212121;">Speaker</a>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="#theme"
style="color: #212121;">Themes</a>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="#sponsor"
style="color: #212121;">Sponsor</a>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="#faq"
style="color: #212121;">FAQ</a>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="/team"
style="color: #212121;">Team</a>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="#contact"
style="color: #212121;">Contact</a>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="/blog"
style="color: #212121;">Blog</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</div>
</header>
<!-- Section Swiper Slider-->
<section class="section section-swiper-absoulte context-dark text-center wow fadeIn"
style="background-color: #FFECE1">
<!-- Waves-->
<!-- <canvas class="waves" data-speed="5" data-wave-width="150%" data-animation="SineInOut"></canvas> -->
<!-- Swiper Content-->
<div class="section-swiper-content" id="home">
<div class="container">
<div class="row justify-content-lg-center">
<div class="col-lg-10">
<!-- <div class="badge-promo wow fadeScale" data-wow-delay=".6s"><span class="badge-promo-text" style="color: #212121;">Hackathon</span> -->
<img src="images/hhf/new-logo.png" width="750">
<!-- List Inline-->
<ul class="list-inline list-inline-md wow" data-splitting data-wow-delay="1.5s">
<li>
<div class="unit unit-spacing-xs align-items-center">
<div class="unit-body">
<!-- <h3 style="font-weight: 500; padding-bottom: 5%;">SEASON 2</h3> -->
<br />
<h3>Innovate For Good</h3>
<h4>OCTOBER 22 - OCTOBER 24, 2021
</h4>
<br />
<h5>Read about Season 1 <a style="color: #ff6b00" href="/blog">here</a></h5>
<br />
<a class="button button-secondary box-with-triangle-right wow fadeScale"
href="https://hackthisfall.devpost.com/" target="_blank"
style="margin: -1px;" data-triangle=".button-overlay"><span>Register
Now</span><span class="button-overlay"></span></a>
<a class="button button-secondary box-with-triangle-right wow fadeScale"
style="margin: 0px; margin-left: 1rem;"
href="https://discord.hackthisfall.tech" target="_blank"
data-triangle=".button-overlay"><span>Join Discord</span><span
class="button-overlay"></span></a>
<br><br>
<!-- <button id="devfolio-apply-now"><svg class="logo"
xmlns="http://www.w3.org/2000/svg" fill="#fff"
viewBox="0 0 115.46 123.46"
style="height:24px;width:24px;margin-right:8px">
<path
d="M115.46 68a55.43 55.43 0 0 1-50.85 55.11S28.12 124 16 123a12.6 12.6 0 0 1-10.09-7.5 15.85 15.85 0 0 0 5.36 1.5c4 .34 10.72.51 20.13.51 13.82 0 28.84-.38 29-.38h.26a60.14 60.14 0 0 0 54.72-52.47c.05 1.05.08 2.18.08 3.34z" />
<path
d="M110.93 55.87A55.43 55.43 0 0 1 60.08 111s-36.48.92-48.58-.12C5 110.29.15 104.22 0 97.52l.2-83.84C.38 7 5.26.94 11.76.41c12.11-1 48.59.12 48.59.12a55.41 55.41 0 0 1 50.58 55.34z" />
</svg>Apply with Devfolio</button> -->
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
<div class="video-link-wrapper">
<div class="unit align-items-center">
<div class="unit-body text-right">
<h5><span class="big" style="color: #212121;">CHECK OUT<br>OUR YOUTUBE</span></h5>
</div>
<div>
<a class="video-link" href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA"
target="_blank">
<div class="video-link-bg" data-triangle=".video-link-overlay"><span
class="video-link-overlay"></span>
</div>
<span class="icon fa-play"
href="https://www.youtube.com/channel/UCpdsmUIkLpfopjURSYF1gaA"
target="_blank"></span>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Section Book Your Ticket-->
<section class="parallax-container section" data-parallax-img="images/bg-parallax-01-1894x778.jpg">
<div class="parallax-content section-lg context-dark text-center parallax-overlay-gradient-primary">
<div class="container wow fadeIn">
<!-- Block with content-->
<div class="block-lg block-center">
<!-- <h6>Registration Starting In !</h6> -->
<h3 style="color: whitesmoke">Glimpse of Season 1</h3>
<p style="color: whitesmoke">
Season 1 was a 24 Hours Virtual Hackathon organized on October 31st - November 1st, 2020. We
were joined by 500+ superb hackers from 170+ different cities, who all were motivated to
build towards solving society’s everyday problems, and ended up building 50+ projects, which
was in line with our motto i.e. “Build & Solve”.
</p>
<!-- Countdown rectangle-->
<div class="countdown countdown-rect" data-countdown="data-countdown" data-to="">
<div class="countdown-block box-with-triangle-right wow fadeScale countdown-block-days"
data-wow-delay="0s" data-triangle=".countdown-block-overlay">
<div class="countdown-block-overlay"></div>
<svg class="countdown-circle" x="0" y="0" width="200" height="237" viewbox="0 0 200 237"
data-progress-days="">
<rect class="countdown-rect-bg" x="0" y="0" width="200" height="237"></rect>
<rect class="countdown-rect-fg clipped" x="0" y="0" width="200" height="237"></rect>
</svg>
<div class="countdown-wrap">
<div class="countdown-counter">24</div>
<div class="countdown-title">Hours</div>
</div>
</div>
<div class="countdown-block box-with-triangle-right wow fadeScale countdown-block-hours"
data-wow-delay="0.125s" data-triangle=".countdown-block-overlay">
<div class="countdown-block-overlay"></div>
<svg class="countdown-circle" x="0" y="0" width="200" height="237" viewbox="0 0 200 237"
data-progress-hours="">
<rect class="countdown-rect-bg" x="0" y="0" width="200" height="237"></rect>
<rect class="countdown-rect-fg clipped" x="0" y="0" width="200" height="237"></rect>
</svg>
<div class="countdown-wrap">
<div class="countdown-counter">500+</div>
<div class="countdown-title">Hackers</div>
</div>
</div>
<div class="countdown-block box-with-triangle-right wow fadeScale countdown-block-minutes"
data-wow-delay="0.25s" data-triangle=".countdown-block-overlay">
<div class="countdown-block-overlay"></div>
<svg class="countdown-circle" x="0" y="0" width="200" height="237" viewbox="0 0 200 237"
data-progress-minutes="">
<rect class="countdown-rect-bg" x="0" y="0" width="200" height="237"></rect>
<rect class="countdown-rect-fg clipped" x="0" y="0" width="200" height="237"></rect>
</svg>
<div class="countdown-wrap">
<div class="countdown-counter">50+</div>
<div class="countdown-title">Projects</div>
</div>
</div>
<div class="countdown-block box-with-triangle-right wow fadeScale countdown-block-seconds"
data-wow-delay="0.375s" data-triangle=".countdown-block-overlay">
<div class="countdown-block-overlay"></div>
<svg class="countdown-circle" x="0" y="0" width="200" height="237" viewbox="0 0 200 237"
data-progress-seconds="">
<rect class="countdown-rect-bg" x="0" y="0" width="200" height="237"></rect>
<rect class="countdown-rect-fg clipped" x="0" y="0" width="200" height="237"></rect>
</svg>
<div class="countdown-wrap">
<div class="countdown-counter">170+</div>
<div class="countdown-title">Cities</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section About Us-->
<section class="section section-lg bg-default wow fadeIn" id="about">
<div class="container">
<div class="row row-30 justify-content-center">
<div class="col-md-10 col-lg-6 col-xl-6">
<h6>KNOW THE HACK!</h6>
<h3 class="heading-lg-postfix-15">WHAT IS HACK THIS FALL?</h3>
<p>Hack This Fall began with a mindset of encouraging new hackers to build unique projects
regardless of the tech or field. The only focus was to create something meaningful and enjoy
the process of building, while also solving the shared struggles of our surroundings.
<br />
<br />
For this season, we are taking this a level higher with a 48 Hours Virtual Hackathon; where
we are aiming to promote hackers and help them nurture their new ideas and prototypes in
various domains. Our motto is also to involve more beginner hackers and support everyone to
solve the shared problems of our society, to bring a change in a positive way.
<br />
<br />
This year, we are focused on creating learning opportunities for attendees while they Build
& Solve. We will talk about various technologies, create awareness, encourage others, hack
to contribute, and participate in many more exciting events & sessions.
</p>
</div>
<div class="col-md-10 col-lg-6 col-xl-6 text-md-right">
<!-- Image Box-->
<div class="images-box">
<img src="images/hhf/kths.png" alt="" style="width: 380px;" />
</div>
</div>
</div>
</div>
</section>
<!-- Section Who Is Speaking-->
<section class="parallax-container section" data-parallax-img="" style="background-color: #212121;"
id="speaker">
<div class="parallax-content section-lg context-dark text-center">
<div class="container">
<!-- <h6 class="text-secondary">Our Speakers</h6> -->
<h3 style="color: whitesmoke;">Previous Speakers</h3>
<div class="row row-30 justify-content-center align-content-center">
<div class="col-12">
<div id="Speakerscor" class="carousel justify-content-center slide carousel-fade col-12"
data-interval="2000" data-pause="false" data-ride="carousel" style="margin-left: 20px;">
<div class="carousel-inner row justify-content-center">
<div class="carousel-item active col-12">
<div class="row justify-content-center">
<div class="col-12 col-lg-6 my-4 my-lg-0">
<!-- Speaker-->
<div class="speaker">
<div class="speaker-img" data-triangle=".speaker-overlay">
<div class="speaker-overlay"></div><img
src="images/hhf/akanksha.jpeg" alt="" width="330"
height="354" />
<ul class="speaker-social-list">
<li>
<a class="icon icon-xs fa-linkedin" target="_blank"
href="https://www.linkedin.com/in/akankshabhasin/"></a>
</li>
<li>
<a class="icon icon-xs fa-twitter" target="_blank"
href="https://twitter.com/Akii_20"></a>
</li>
<li>
<a class="icon icon-xs fa-youtube-play" target="_blank"
href="https://bit.ly/htf-akanksha"></a>
</li>
</ul>
</div>
<h5 class="speaker-title">Akanksha Bhasin</h5>
<p class="speaker-position">Community Evangelist, Symbl.AI</p>
</div>
</div>
<div class="col-12 col-lg-6 my-4 my-lg-0">
<!-- Speaker-->
<div class="speaker">
<div class="speaker-img" data-triangle=".speaker-overlay">
<div class="speaker-overlay"></div><img
src="images/hhf/marc.jpg" alt="" width="330" height="354" />
<ul class="speaker-social-list">
<li>
<a class="icon icon-xs fa-linkedin" target="_blank"
href="https://www.linkedin.com/in/marccohen3/"></a>
</li>
<li>
<a class="icon icon-xs fa-twitter" target="_blank"
href="https://twitter.com/marcacohen"></a>
</li>
<li>
<a class="icon icon-xs fa-youtube-play" target="_blank"
href="https://bit.ly/htf-marc-cohen"></a>
</li>
</ul>
</div>
<h5 class="speaker-title">Marc Cohen</h5>
<p class="speaker-position">Developer Advocate, GCP-Google</p>
</div>
</div>
</div>
</div>
<div class="carousel-item col-12">
<div class="row">
<div class="col-12 col-lg-6 my-4 my-lg-0">
<!-- Speaker-->
<div class="speaker">
<div class="speaker-img" data-triangle=".speaker-overlay">
<div class="speaker-overlay"></div><img
src="images/hhf/john.jpeg" alt="" width="330"
height="354" />
<ul class="speaker-social-list">
<li>
<a class="icon icon-xs fa-linkedin" target="_blank"
href="https://www.linkedin.com/in/johnwcoghlan/"></a>
</li>
<li>
<a class="icon icon-xs fa-twitter" target="_blank"
href="https://twitter.com/john_cogs"></a>
</li>
<li>
<a class="icon icon-xs fa-youtube-play" target="_blank"
href="https://bit.ly/htf-john"></a>
</li>
</ul>
</div>
<h5 class="speaker-title">John Coghlan</h5>
<p class="speaker-position">Developer Evangelism, GitLab</p>
</div>
</div>
<div class="col-12 col-lg-6 my-4 my-lg-0">
<!-- Speaker-->
<div class="speaker">
<div class="speaker-img" data-triangle=".speaker-overlay">
<div class="speaker-overlay"></div><img
src="images/hhf/eddie.jpg" alt="" width="330"
height="354" />
<ul class="speaker-social-list">
<li>
<a class="icon icon-xs fa-linkedin" target="_blank"
href="https://www.linkedin.com/in/eddiejaoude/"></a>
</li>
<li>
<a class="icon icon-xs fa-twitter" target="_blank"
href="https://twitter.com/eddiejaoude"></a>
</li>
<li>
<a class="icon icon-xs fa-youtube-play" target="_blank"
href="https://bit.ly/htf-eddie"></a>
</li>
</ul>
</div>
<h5 class="speaker-title">Eddie Jaoude</h5>
<p class="speaker-position">GitHub Star of the Year</p>
</div>
</div>
</div>
</div>
<div class="carousel-item col-12">
<div class="row">
<div class="col-12 col-lg-6 my-4 my-lg-0">
<!-- Speaker-->
<div class="speaker">
<div class="speaker-img" data-triangle=".speaker-overlay">
<div class="speaker-overlay"></div><img
src="images/hhf/dmitry.jpeg" alt="" width="330"
height="354" />
<ul class="speaker-social-list">
<li>
<a class="icon icon-xs fa-linkedin" target="_blank"
href="https://www.linkedin.com/in/dshklovsky/"></a>
</li>
<li>
<a class="icon icon-xs fa-twitter" target="_blank"
href="https://twitter.com/dimidj"></a>
</li>
<li>
<a class="icon icon-xs fa-youtube-play" target="_blank"
href="https://bit.ly/htf-dmitry"></a>
</li>
</ul>
</div>
<h5 class="speaker-title">Dmitry Shklovsky</h5>
<p class="speaker-position">Co Founder, Quiknode</p>
</div>
</div>
<div class="col-12 col-lg-6 my-4 my-lg-0">
<!-- Speaker-->
<div class="speaker">
<div class="speaker-img" data-triangle=".speaker-overlay">
<div class="speaker-overlay"></div><img
src="images/hhf/aanisha.jpeg" alt="" width="330"
height="354" />
<ul class="speaker-social-list">
<li>
<a class="icon icon-xs fa-linkedin" target="_blank"
href="https://www.linkedin.com/in/aanishamishra/"></a>
</li>
<li>
<a class="icon icon-xs fa-twitter" target="_blank"
href="https://twitter.com/the_crazy_lady"></a>
</li>
<li>
<a class="icon icon-xs fa-youtube-play" target="_blank"
href="https://bit.ly/htf-aanisha"></a>
</li>
</ul>
</div>
<h5 class="speaker-title">Aanisha Mishra</h5>
<p class="speaker-position">Engineer-II, Cisco</p>
</div>
</div>
</div>
</div>
<div class="carousel-item col-12">
<div class="row">
<div class="col-12 col-lg-6 my-4 my-lg-0">
<!-- Speaker-->
<div class="speaker">
<div class="speaker-img" data-triangle=".speaker-overlay">
<div class="speaker-overlay"></div><img
src="images/hhf/praveen.webp" alt="" width="330"
height="354" />
<ul class="speaker-social-list">
<li>
<a class="icon icon-xs fa-linkedin" target="_blank"
href="https://www.linkedin.com/in/praveentech/"></a>
</li>
<li>
<a class="icon icon-xs fa-twitter" target="_blank"
href="https://twitter.com/praveenscience"></a>
</li>
<li>
<a class="icon icon-xs fa-youtube-play" target="_blank"
href="https://bit.ly/htf-praveen"></a>
</li>
</ul>
</div>
<h5 class="speaker-title">Praveen Kumar</h5>
<p class="speaker-position">Full Stack JS Developer</p>
</div>
</div>
<div class="col-12 col-lg-6 my-4 my-lg-0">
<!-- Speaker-->
<div class="speaker">
<div class="speaker-img" data-triangle=".speaker-overlay">
<div class="speaker-overlay"></div><img
src="images/hhf/alon.webp" alt="" width="330"
height="354" />
<ul class="speaker-social-list">
<li>
<a class="icon icon-xs fa-linkedin" target="_blank"
href="https://www.linkedin.com/in/alongrinshpoon/"></a>
</li>
<li>
<a class="icon icon-xs fa-twitter" target="_blank"
href="https://twitter.com/alongrinshpoon"></a>
</li>
<li>
<a class="icon icon-xs fa-youtube-play" target="_blank"
href="https://bit.ly/htf-alon"></a>
</li>
</ul>
</div>
<h5 class="speaker-title">ALON GRINSHPOON
</h5>
<p class="speaker-position">Founder & CEO, echoAR</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section section-lg bg-default text-center" id="theme" style="background-color: #FFECE1">
<div class="container">
<h3>Know The Themes</h3>
<p>
We've created these tracks by analyzing the current industry trends & interests. These tracks will
help
our hackers try bringing a positive change in society and enabling them to be future-ready in
getting
acquainted with the new tech and challenges ahead.
</p>
<div class="row row-30 justify-content-center">
<div class="col-sm-12 col-lg-4 ">
<!-- First -->
<div class="sponsor-ritmo"><a class="sponsor-ritmo-header"
data-triangle=".sponsor-ritmo-overlay">
<div class="sponsor-ritmo-overlay"></div>
<div class="sponsor-ritmo-img">
<div class="sponsor-ritmo-img-default"><img src="images/hhf/111.png" alt=""
width="152" height="91" />
</div>
<div class="sponsor-ritmo-img-active"><img src="images/hhf/111.png" alt=""
width="152" height="91" />
</div>
</div>
</a>
<div class="sponsor-ritmo-body">
<h5 class="sponsor-ritmo-title"><span class="big">Climate change and<br /> Environment
</span></h5>
<p class="sponsor-ritmo-text">Climate change is an ongoing problem with our planet, so
we want to encourage hackers to build solutions to tackle this issue and come up
with some innovative solutions.</p>
</div>
</div>
</div>
<div class="col-sm-12 col-lg-4 ">
<!-- Second -->
<div class="sponsor-ritmo"><a class="sponsor-ritmo-header"
data-triangle=".sponsor-ritmo-overlay">
<div class="sponsor-ritmo-overlay"></div>
<div class="sponsor-ritmo-img">
<div class="sponsor-ritmo-img-default"><img src="images/hhf/6.png" alt=""
width="152" height="91" />
</div>
<div class="sponsor-ritmo-img-active"><img src="images/hhf/6.png" alt="" width="152"
height="91" />
</div>
</div>
</a>
<div class="sponsor-ritmo-body">
<h5 class="sponsor-ritmo-title"><span class="big">Blockchain and <br />Crypto</span>
</h5>
<p class="sponsor-ritmo-text">Blockchain, the next generation of the internet, is
decentralized. It'll be a great experience for the hackers to learn new blockchain
techs and work with various chains and come up with unique ideas while learning.</p>
</div>
</div>
</div>
<div class="col-sm-12 col-lg-4">
<!-- Fourth -->
<div class="sponsor-ritmo"><a class="sponsor-ritmo-header"
data-triangle=".sponsor-ritmo-overlay">
<div class="sponsor-ritmo-overlay"></div>
<div class="sponsor-ritmo-img">
<div class="sponsor-ritmo-img-default"><img src="images/hhf/4.png" alt=""
width="152" height="91" />
</div>
<div class="sponsor-ritmo-img-active"><img src="images/hhf/4.png" alt="" width="152"
height="91" />
</div>
</div>
</a>
<div class="sponsor-ritmo-body">
<h5 class="sponsor-ritmo-title"><span class="big">Open <br />Innovation</span></h5>
<p class="sponsor-ritmo-text">We don't want our hackers to limit their ideas, so we also
have an Open Innovation track where hackers can come up with their own ideas, and
make awesome innovative projects irrespective of any theme.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section 2021 Sponsors-->
<section class="parallax-container section" id="sponsor">
<div class="parallax-content section-lg context-dark text-center">
<div class="container">
<h2>SEASON 2 SPONSORS</h2>
<!-- links -->
<div class="row justify-content-center">
<div class="col-sm-3 col-lg-2 no-gutters">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="http://github.com/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/github.png" width="250" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://hackclub.com/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/hackclub.png" width="250" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://www.stickermule.com/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/stickermule.png" alt="" />
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section Official Sponsors-->
<section class="parallax-container section" id="sponsor">
<div class="parallax-content section-lg context-dark text-center">
<div class="container">
<h2>PREVIOUS SPONSORS</h2>
<!-- BUtton LEFT -->
<!-- <a class="button button-secondary box-with-triangle-right wow fadeScale"
href="" target="_blank"
data-triangle=".button-overlay"><span>Prospectus</span><span
class="button-overlay"></span></a> -->
<!-- links -->
<div class="row justify-content-center">
<div class="col-sm-3 col-lg-2 no-gutters">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://www.devfolio.co/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/devfolio.png" width="250" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://github.com/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/github.png" width="250" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://www.portis.io/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/portis.png" alt="" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://fold.money/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/fold.png" width="130" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://matic.network/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/matic.png" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://quiknode.io/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/qn.png" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://tezos.com/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/tezos.png" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://xinfin.org/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/xdc.png" width="60" alt="" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow sponsor-logo">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://www.axure.com/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/axure.png" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://www.sashido.io/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/sashido.png" alt="" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://www.echoar.xyz/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/echoar.png" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://balsamiq.com/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/balsamiq.png" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://www.devhood.tech/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/devhood.png" alt="" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://codingblocks.com/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/codingblocks.png" width="120"
alt="" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://www.clerky.com/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/clerky.png" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://interwebs.host/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/interwebshost.png" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://1password.com/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/1password.png" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://rosenfeldmedia.com/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/rosenfeld.png" alt="" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://repl.it/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/replit.png" width="100" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://www.egghead.io/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/eh.png" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://www.taskade.com/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/taskade.png" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://mehdev.club/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/mdc.webp" width="100" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://www.wolfram.com/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/wolfram.png" />
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-2">
<div class="wow">
<div>
<!-- Sponsor-->
<a class="sponsor" href="https://www.voiceflow.com/" target="_blank"
data-triangle=".sponsor-overlay">
<div class="sponsor-overlay"></div>
<div class="sponsor-img"><img src="images/hhf/voiceflow.png" />
</div>