-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
889 lines (815 loc) · 62 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<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=Montserrat:wght@200&family=Open+Sans:wght@800&family=Victor+Mono:wght@100&display=swap"
rel="stylesheet">
<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=Montserrat:wght@200&family=Open+Sans:wght@800&family=Victor+Mono:wght@100;600&display=swap"
rel="stylesheet">
<link rel="icon"
href="https://static.wixstatic.com/media/b21544_d39286c28cd542fcac93cdc1f227d9c3~mv2.png/v1/fill/w_174,h_80,al_c,lg_1,q_85,enc_auto/b21544_d39286c28cd542fcac93cdc1f227d9c3~mv2.png"
type="image/x-icon">
<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=Montserrat:ital,wght@0,200;0,400;1,400&family=Open+Sans:wght@800&family=Roboto+Mono:wght@300&family=Roboto:wght@300&family=Victor+Mono:wght@100;500;600&display=swap" rel="stylesheet">
</head>
<title> Hack The Mountains 3.0</title>
<body>
<!-- HTML code for the navbar -->
<!-- <nav class="navbar">
<div class="navbar-logo">
<img src="https://static.wixstatic.com/media/b21544_d39286c28cd542fcac93cdc1f227d9c3~mv2.png/v1/fill/w_174,h_80,al_c,lg_1,q_85,enc_auto/b21544_d39286c28cd542fcac93cdc1f227d9c3~mv2.png"
alt="Logo" id="logomain">
</div>
<div class="navbar-company">Hack The Mountains 3.0</div>
<div class="hamburger" onclick="toggleMenu()">
<div class="hamburger-line line-1"></div>
<div class="hamburger-line line-2"></div>
<div class="hamburger-line line-3"></div>
</div>
<div class="navbar-titles">
<a href="index.html" class="navbar-title">Home</a>
<a href="#allsponsors" class="navbar-title">Sponsors</a>
<a href="judges.html" class="navbar-title">Judges</a>
<a href="winners.html" class="navbar-title">Winners</a>
<a href="prizes.html" class="navbar-title">Prizes</a>
<a href="https://www.hackthemountain.tech/items-1" target="_blank" class="navbar-title">Blogs</a>
<a href="meetups.html" class="navbar-title">Meetups</a>
</div>
</nav> -->
<nav class="navbarr">
<div class="navlogo">
<span>
<img src="https://static.wixstatic.com/media/b21544_d39286c28cd542fcac93cdc1f227d9c3~mv2.png/v1/fill/w_174,h_80,al_c,lg_1,q_85,enc_auto/b21544_d39286c28cd542fcac93cdc1f227d9c3~mv2.png"
id="logoimg">
</span>
<span>
<h2>Hack The Mountains 3.0</h2>
</span>
</div>
<a href="#" class="toggle-btn">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="nav-items">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html">Sponsors</a></li>
<li><a href="judges.html">Judges</a></li>
<li><a href="winners.html">Winners</a></li>
<li><a href="prizes.html">Prizes</a></li>
<li><a href="https://www.hackthemountain.tech/items-1">Blogs</a></li>
<li><a href="meetups.html">Meetups</a></li>
</ul>
</div>
</nav>
<div class="navbar-line"></div>
<div class="main-content">
<!-- Section1 -->
<section id="homemain">
<div id="leftmain">
<div id="hacktm">
<p id="hacktmhead"><b> HACK THE MOUNTAINS<br>
3.0 </b> </p>
<p id="hacktmline2"> " The Best view comes after the Hardest climb " </p>
<h2> 17 -18th September 2022 | Hybrid Hackathon </h2>
<div id="hacktmline4">
<div id="com">
<img src="https://static.wixstatic.com/media/b21544_5a8573bab6d74397b1ea877f10bb1c1b~mv2.png/v1/crop/x_105,y_119,w_882,h_698/fill/w_88,h_70,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_5a8573bab6d74397b1ea877f10bb1c1b~mv2.png"
alt="" srcset="" width="40px" height="30px" class="line4img">
<p class="line4con"> Communicate</p>
</div>
<div id="col">
<img src="https://static.wixstatic.com/media/b21544_a4cd63eaae9243f8993c2aeab580d96e~mv2.png/v1/crop/x_104,y_256,w_922,h_488/fill/w_106,h_56,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_a4cd63eaae9243f8993c2aeab580d96e~mv2.png"
alt="" srcset="" width="40px" height="30px" class="line4img">
<p class="line4con"> Collaborate</p>
</div>
<div id="cre">
<img src="https://static.wixstatic.com/media/b21544_35488790c3eb4d53a3b7b40f87481f01~mv2.png/v1/crop/x_236,y_411,w_665,h_510/fill/w_102,h_80,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_35488790c3eb4d53a3b7b40f87481f01~mv2.png"
alt="" srcset="" width="40px" height="30px" class="line4img">
<p class="line4con"> Create</p>
</div>
</div>
<div id="buttonsmain">
<a href="https://hack2skill.com/hack/hackthemountains3?utm_source=HackTheMountainsWebsite&utm_medium=HTMWebsite"
target="_blank"><button id="closedbtn"> CLOSED </button></a>
<a href="https://discord.com/invite/VvcjamPn2S" target="_blank"><button id="discordbtn"> DISCORD
</button></a>
</div>
<div id="collabmr">
<p> In Collaboration with </p>
<img src="https://static.wixstatic.com/media/b21544_2764aeae289140699bacb0ec4ecf273a~mv2.png/v1/crop/x_108,y_192,w_254,h_97/fill/w_356,h_136,al_c,lg_1,q_85,enc_auto/Manav%20Rachna%20Transparent.png"
alt="" srcset="" width="250px" height="100px">
</div>
</div>
</div>
<div id="rightmain">
</div>
</section>
<!-- Section2 -->
<section id="intro">
<div id="intro1">
<div id="introleft1">
<p id="introleft11"> What is HTM ? </p>
<p id="introleftp"> Hack The Mountains is a community- focused Hybrid Hackathon, designed especially
for the needs
of the community. Whether you are a beginner or an expert, here is a perfect chance to showcase
your skills and witness a competitive yet inclusive developer community around it.
<br>
<br>
After the tremendous success of HTM 1.0 and HTM 2.0, with 3300+ participants, 300+ real-time
projects and 55+ Qubit Sessions in our previous version, we are launching the 3rd version of
this hackathon to propel great opportunities and provide a platform to professionally know your
standing, showcase your skills and creativity and develop technical knowledge alongside building
real-time solutions with people from across the globe!
</p>
</div>
<div id="introright1">
<img src="https://static.wixstatic.com/media/b21544_76c393c835544c5fa2db36fc9567c4d4~mv2.png/v1/fill/w_668,h_668,al_c,q_90,usm_0.66_1.00_0.01,enc_auto/What%20is%20htm.png"
alt="" srcset="" id="introimg1">
</div>
</div>
<div id="intro2">
<div id="introleft2">
<img src="https://static.wixstatic.com/media/b21544_309c6e05723b4ba3a888b3545fc5652d~mv2.png/v1/fill/w_596,h_596,al_c,lg_1,q_85,enc_auto/sudanstechlogo_new.png"
alt="" width="300px" height="300px" id="introimg2">
</div>
<div id="introright2">
<p id="introright22"> Organized By </p>
<p id="introrightp"> Hack The Mountains is a community- focused Hybrid Hackathon, designed
especially for the needs
of the community. Whether you are a beginner or an expert, here is a perfect chance to showcase
your skills and witness a competitive yet inclusive developer community around it.
<br>
<br>
After the tremendous success of HTM 1.0 and HTM 2.0, with 3300+ participants, 300+ real-time
projects and 55+ Qubit Sessions in our previous version, we are launching the 3rd version of
this hackathon to propel great opportunities and provide a platform to professionally know your
standing, showcase your skills and creativity and develop technical knowledge alongside building
real-time solutions with people from across the globe!
</p>
</div>
</div>
</section>
<!-- Section3 -->
<section>
<div id="tracks">
<center> <b>
<p id="tracks">Tracks </p>
</b>
<hr style="height:3px;border-width:0px;color:#fec023;background-color:#fec023;width:200px">
</center>
</div>
<center>
<div id="alltracks1">
<div id="track1">
<img src="https://static.wixstatic.com/media/b21544_614b35dfd35a4b96ba209f1ae907d3d6~mv2.png/v1/fill/w_396,h_396,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_614b35dfd35a4b96ba209f1ae907d3d6~mv2.png"
alt="" srcset="" width="200px" height="200px">
<b>
<h3> EDUCATION</h3>
</b>
</div>
<div id="track2">
<img src="https://static.wixstatic.com/media/b21544_6b52d69cffb443f7b4ff5de035627b27~mv2.png/v1/fill/w_406,h_408,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_6b52d69cffb443f7b4ff5de035627b27~mv2.png"
alt="" srcset="" width="200px" height="200px">
<b>
<h3> HEALTH CARE</h3>
</b>
</div>
<div id="track3">
<img src="https://static.wixstatic.com/media/b21544_5096345060e94ed3a87422bba07edf92~mv2.png/v1/fill/w_406,h_408,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_5096345060e94ed3a87422bba07edf92~mv2.png"
alt="" srcset="" width="200px" height="200px">
<b>
<h3> AR/VR</h3>
</b>
</div>
<div id="track4">
<img src="https://static.wixstatic.com/media/b21544_7ccf704f46d34d219aa29d58cb7df6c3~mv2.png/v1/fill/w_406,h_408,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_7ccf704f46d34d219aa29d58cb7df6c3~mv2.png"
alt="" srcset="" width="200px" height="200px">
<b>
<h3> OPEN INNOVATION</h3>
</b>
</div>
</div>
</center>
<center>
<div id="alltracks2">
<div id="track1">
<img src="https://static.wixstatic.com/media/b21544_447ac127935340c5843662c629ffe20a~mv2.png/v1/fill/w_374,h_376,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_447ac127935340c5843662c629ffe20a~mv2.png"
alt="" srcset="" width="200px" height="200px">
<b>
<h3> ENVIRONMENT</h3>
</b>
</div>
<div id="track2">
<img src="https://static.wixstatic.com/media/b21544_7cc1f9d6ac394a1d8bb24cdef28fbddb~mv2.png/v1/fill/w_374,h_376,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/Diversity_png.png"
alt="" srcset="" width="200px" height="200px">
<b>
<h3> DIVERSITY</h3>
</b>
</div>
<div id="track3">
<img src="https://static.wixstatic.com/media/b21544_2cd9eae5f33c41ec94771c6a96269907~mv2.png/v1/fill/w_374,h_376,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/Energy%20and%20Diversity.png"
alt="" srcset="" width="200px" height="200px">
<b>
<h3> ENERGY</h3>
</b>
</div>
<div id="track4">
<img src="https://static.wixstatic.com/media/b21544_f3ad4417740245a5a77ede2958479f52~mv2.png/v1/fill/w_374,h_376,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_f3ad4417740245a5a77ede2958479f52~mv2.png"
alt="" srcset="" width="200px" height="200px">
<b>
<h3> BLOCKCHAIN</h3>
</b>
</div>
</div>
</center>
</section>
<!-- Section 4 -->
<section id="prize">
<div>
<center> <b>
<p id="prizepool">Prize Pool</p>
</b>
<hr style="height:3px;border-width:0px;color:#fec023;background-color:#fec023;width:250px">
</center>
<center> <img src="Images/75000.png" alt="" srcset=""></center>
<p id="alertprize"> * Total Prize Pool for HTM 3.0 Including Online and offline</p>
</div>
</section>
<br>
<!-- Section 5 -->
<section id=" Glimpses">
<div id="glimpsesmain">
<div id="glimpseleft">
<img src="https://static.wixstatic.com/media/b21544_2d5a743655574733993b630cfbcd9238~mv2.png/v1/fill/w_1080,h_1080,al_c,q_90,enc_auto/b21544_2d5a743655574733993b630cfbcd9238~mv2.png"
alt="" srcset="" width="75%" height="100%" id="glimpseimg">
</div>
<div id="glimpseright">
<div id="glimpsebody">
<h1 id="headglimpse"><b> Glimpses of Our <br> Previous Sessions </b></h1>
<div id="gltopic">
<div id="glt1">
<center> <img
src="https://static.wixstatic.com/media/b21544_aca5bff7d87c4c4db84d1dee0cf17a27~mv2.png/v1/crop/x_0,y_152,w_500,h_284/fill/w_252,h_144,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_aca5bff7d87c4c4db84d1dee0cf17a27~mv2.png"
alt="" srcset="" width="125px" height="80px"></center>
<center>
<p> Project <br> Submissions</p>
</center>
</div>
<div id="glt2">
<center><img
src="https://static.wixstatic.com/media/b21544_9f7effacc9f34775a2f22e7c67620819~mv2.png/v1/crop/x_51,y_61,w_404,h_389/fill/w_160,h_154,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/Hackers.png"
alt="" srcset="" width="90px" height="80px"></center>
<center>
<p> Hackers <br> Participated </p>
</center>
</div>
<div id="glt3">
<center><img
src="https://static.wixstatic.com/media/b21544_5b75ee1b7c9c4cf89690c8a5a605f0b4~mv2.png/v1/fill/w_172,h_172,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/countries%20(1).png"
alt="" srcset="" width="100px" height="80px"></center>
<center>
<p> Countries <br> Impacted</p>
</center>
</div>
</div>
<div id="gltopic">
<div id="glt1">
<center> <img
src="https://static.wixstatic.com/media/b21544_0c4476c5285c4ac596a1e09a3fa8de25~mv2.png/v1/fill/w_232,h_232,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_0c4476c5285c4ac596a1e09a3fa8de25~mv2.png"
alt="" srcset="" width="110px" height="80px"></center>
<center>
<p> Lines of <br> Code</p>
</center>
</div>
<div id="glt2">
<center><img
src="https://static.wixstatic.com/media/b21544_6650c3f6b5694b0cab6c9410476ecd6a~mv2.png/v1/crop/x_0,y_119,w_500,h_269/fill/w_266,h_144,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_6650c3f6b5694b0cab6c9410476ecd6a~mv2.png"
alt="" srcset="" width="100px" height="80px"></center>
<center>
<p> Workshops <br> Conducted </p>
</center>
</div>
<div id="glt3">
<center><img
src="https://static.wixstatic.com/media/b21544_b6a19ac6e6a946268c65657f9302aa7b~mv2.png/v1/crop/x_0,y_143,w_500,h_219/fill/w_254,h_112,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_b6a19ac6e6a946268c65657f9302aa7b~mv2.png"
alt="" srcset="" width="100px" height="80px"></center>
<center>
<p> Sponsors <br> Participated</p>
</center>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section 6 -->
<section>
<center>
<b>
<p id="headsponsors"> SPONSORS </p>
</b>
<hr style="height:3px;border-width:0px;color:#000000;background-color:#000000;width:100px">
</center>
<div id="allsponsors">
<div id="titles">
<b>
<p class="headings"> TITLE SPONSORS </p>
</b>
<hr style="height:3px;border-width:0px;color:#fec023;background-color:#fec023;width:350px"
class="sline">
<div class="simgdiv">
<img src="https://static.wixstatic.com/media/b21544_9eedeb6afc864d30bac21928eb2f5187~mv2.png/v1/fill/w_356,h_150,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_9eedeb6afc864d30bac21928eb2f5187~mv2.png"
alt="" srcset="" class="simg">
</div>
</div>
<div id="platformp">
<b>
<p class="headings">
PLATFORM PARTNER </p>
</b>
<hr style="height:3px;border-width:0px;color:#fec023;background-color:#fec023;width:350px"
class="sline">
<div class="simgdiv">
<img src="https://static.wixstatic.com/media/b21544_008fac613e594b0e8c560a034b3bbf6b~mv2.png/v1/crop/x_0,y_62,w_278,h_132/fill/w_314,h_150,al_c,lg_1,q_85,enc_auto/b21544_008fac613e594b0e8c560a034b3bbf6b~mv2.png"
alt="" srcset="" class="simg">
</div>
</div>
<div id="instp">
<b>
<p class="headings">
INSTITUTE PARTNER </p>
</b>
<hr style="height:3px;border-width:0px;color:#fec023;background-color:#fec023;width:350px"
class="sline">
<div class="simgdiv">
<img src="https://static.wixstatic.com/media/b21544_2764aeae289140699bacb0ec4ecf273a~mv2.png/v1/crop/x_116,y_195,w_234,h_90/fill/w_328,h_126,al_c,lg_1,q_85,enc_auto/b21544_2764aeae289140699bacb0ec4ecf273a~mv2.png"
alt="" srcset="" class="simg">
</div>
</div>
<div id="associates">
<b>
<p class="headings">
ASSOCIATE SPONSOR </p>
</b>
<hr style="height:3px;border-width:0px;color:#fec023;background-color:#fec023;width:350px"
class="sline">
<div class="simgdiv">
<img src="https://static.wixstatic.com/media/b21544_f55cd67a45594c7dae4aa041308504b5~mv2.png/v1/crop/x_46,y_189,w_404,h_194/fill/w_496,h_238,al_c,lg_1,q_85,enc_auto/b21544_f55cd67a45594c7dae4aa041308504b5~mv2.png"
alt="" srcset="" class="simg1">
<img src="https://static.wixstatic.com/media/b21544_768426a544ed452aa88d168872c6773c~mv2.png/v1/crop/x_0,y_210,w_500,h_102/fill/w_700,h_143,al_c,lg_1,q_85,enc_auto/b21544_768426a544ed452aa88d168872c6773c~mv2.png"
alt="" srcset="" class="simg2">
<img src="https://static.wixstatic.com/media/b21544_52c2c3ba3a064d06a4401045565e746b~mv2.png/v1/crop/x_141,y_0,w_311,h_342/fill/w_384,h_422,al_c,lg_1,q_85,enc_auto/b21544_52c2c3ba3a064d06a4401045565e746b~mv2.png"
alt="" srcset="" class="simg3">
</div>
<div class="simgdiv2">
<img src="https://static.wixstatic.com/media/b21544_5efa1c67263f4f51aec856665e001d3d~mv2.png/v1/fill/w_416,h_162,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_5efa1c67263f4f51aec856665e001d3d~mv2.png"
alt="" srcset="" class="simg4">
<img src="https://static.wixstatic.com/media/b21544_7b9450d76f6143a182c7ff0e8eba6383~mv2.png/v1/crop/x_0,y_179,w_500,h_137/fill/w_699,h_192,al_c,lg_1,q_85,enc_auto/b21544_7b9450d76f6143a182c7ff0e8eba6383~mv2.png"
alt="" srcset="" class="simg5">
<img src="https://static.wixstatic.com/media/b21544_81f4a7f79f554fef89890b3ab27f87e0~mv2.png/v1/fill/w_424,h_274,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_81f4a7f79f554fef89890b3ab27f87e0~mv2.png"
alt="" srcset="" class="simg6">
</div>
</div>
<div id="platinums">
<b>
<p class="headings">
PLATINUM SPONSOR</p>
</b>
<hr style="height:3px;border-width:0px;color:#fec023;background-color:#fec023;width:350px"
class="sline">
<div class="simgdiv">
<img src="https://static.wixstatic.com/media/b21544_2ddf9e00f1b241938c2028df884197ee~mv2.png/v1/fill/w_534,h_150,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_2ddf9e00f1b241938c2028df884197ee~mv2.png"
alt="" srcset="" class="simg7">
<img src="https://static.wixstatic.com/media/b21544_7d8a4ef3d910430babbf38b18391a2cb~mv2.png/v1/fill/w_482,h_150,al_c,lg_1,q_85,enc_auto/Hedera.png"
alt="" srcset="" class="simg8">
<img src="https://static.wixstatic.com/media/b21544_04fb2d267a884ec794927e3513db0eb8~mv2.png/v1/crop/x_0,y_183,w_500,h_141/fill/w_482,h_136,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_04fb2d267a884ec794927e3513db0eb8~mv2.png"
alt="" srcset="" class="simg9">
</div>
<div class="simgdiv3">
<img src="https://static.wixstatic.com/media/b21544_dc4e772bf08141cfa28bcf1e540f2d8c~mv2.png/v1/fill/w_546,h_148,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_dc4e772bf08141cfa28bcf1e540f2d8c~mv2.png"
alt="" srcset="" class="simg10">
<img src="https://static.wixstatic.com/media/b21544_ee149fa058cf4552885109536c29cdf3~mv2.png/v1/fill/w_310,h_308,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_ee149fa058cf4552885109536c29cdf3~mv2.png"
alt="" srcset="" class="simg11">
<img src="https://static.wixstatic.com/media/b21544_6c1a5eca141b426fb132227cae5973c1~mv2.png/v1/fill/w_660,h_106,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_6c1a5eca141b426fb132227cae5973c1~mv2.png"
alt="" srcset="" class="simg12">
</div>
</div>
<div id="diamonds">
<b>
<p class="headings">
DIAMOND SPONSOR</p>
</b>
<hr style="height:3px;border-width:0px;color:#fec023;background-color:#fec023;width:350px"
class="sline">
<div class="simgdiv">
<img src="https://static.wixstatic.com/media/b21544_b5273818f7064212a346a1dfb9f4a500~mv2.jpg/v1/crop/x_28,y_56,w_302,h_233/fill/w_302,h_234,al_c,lg_1,q_80,enc_auto/b21544_b5273818f7064212a346a1dfb9f4a500~mv2.jpg"
alt="" srcset="" class="simg13">
<img src="https://cdn.sanity.io/images/51n36hrp/facade/abb8930f5dd1892cc5b6311b697b3a81641a46f1-3637x875.png"
alt="" srcset="" class="simg14">
<img src="https://static.wixstatic.com/media/b21544_2156e0332ec04d1e9abd0dc519570647~mv2.jpg/v1/fill/w_520,h_194,al_c,q_80,usm_0.66_1.00_0.01,enc_auto/b21544_2156e0332ec04d1e9abd0dc519570647~mv2.jpg"
alt="" srcset="" class="simg15">
<img src="https://static.wixstatic.com/media/b21544_a4b1517147934346b7238acf53370d86~mv2.jpeg/v1/crop/x_313,y_163,w_640,h_334/fill/w_302,h_158,al_c,q_80,usm_0.66_1.00_0.01,enc_auto/b21544_a4b1517147934346b7238acf53370d86~mv2.jpeg"
alt="" srcset="" class="simg16">
</div>
</div>
<div id="golds">
<b>
<p class="headings">
GOLD SPONSOR</p>
</b>
<hr style="height:3px;border-width:0px;color:#fec023;background-color:#fec023;width:350px"
class="sline">
<div class="simgdiv">
<img src="https://images.contentstack.io/v3/assets/bltefdd0b53724fa2ce/blt280217a63b82a734/6202d3378b1f312528798412/elastic-logo.svg"
alt="" srcset="" class="simg17">
<img src="https://static.wixstatic.com/media/b21544_6a22a3f8a9a94204a60d2d0e6d9ff950~mv2.png/v1/fill/w_530,h_216,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_6a22a3f8a9a94204a60d2d0e6d9ff950~mv2.png"
alt="" srcset="" class="simg18">
<img src="https://altcoinsbox.com/wp-content/uploads/2023/03/full-polygon-logo.webp" alt=""
srcset="" class="simg19">
<!-- <img src="https://static.wixstatic.com/media/b21544_a4b1517147934346b7238acf53370d86~mv2.jpeg/v1/crop/x_313,y_163,w_640,h_334/fill/w_302,h_158,al_c,q_80,usm_0.66_1.00_0.01,enc_auto/b21544_a4b1517147934346b7238acf53370d86~mv2.jpeg" alt="" srcset="" class="simg16"> -->
</div>
</div>
<div id="silvers">
<b>
<p class="headings">
SILVER SPONSOR</p>
</b>
<hr style="height:3px;border-width:0px;color:#fec023;background-color:#fec023;width:350px"
class="sline">
<div class="simgdiv">
<img src="https://cdn.brighttalk.com/ams/california/images/channel/19357/image_840418.png?width=300&height=300"
alt="" srcset="" class="simg20">
<img src="https://consent.trustarc.com/v2/asset/20:55:23.714y33gof_DO_Logo-Blue.png" alt=""
srcset="" class="simg21">
<img src="https://static.wixstatic.com/media/b21544_d9ffc1e40ba54a77acc680c8cede9ace~mv2.png/v1/fill/w_598,h_158,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_d9ffc1e40ba54a77acc680c8cede9ace~mv2.png"
alt="" srcset="" class="simg22">
<!-- <img src="https://static.wixstatic.com/media/b21544_a4b1517147934346b7238acf53370d86~mv2.jpeg/v1/crop/x_313,y_163,w_640,h_334/fill/w_302,h_158,al_c,q_80,usm_0.66_1.00_0.01,enc_auto/b21544_a4b1517147934346b7238acf53370d86~mv2.jpeg" alt="" srcset="" class="simg16"> -->
</div>
<div class="simgdiv3">
<img src="https://static.wixstatic.com/media/b21544_3f8516c3db074abb97ba66fa85984546~mv2.png/v1/fill/w_302,h_302,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_3f8516c3db074abb97ba66fa85984546~mv2.png"
alt="" srcset="" class="simg23">
<img src="https://static.wixstatic.com/media/b21544_47f745d794bd47ffbde8a6986ebe4ded~mv2.png/v1/fill/w_390,h_270,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_47f745d794bd47ffbde8a6986ebe4ded~mv2.png"
alt="" srcset="" class="simg24">
</div>
</div>
<div id="browns">
<b>
<p class="headings">
BROWN SPONSOR</p>
</b>
<hr style="height:3px;border-width:0px;color:#fec023;background-color:#fec023;width:350px"
class="sline">
<div class="simgdiv">
<img src="https://static.wixstatic.com/media/b21544_6a83b07168a949fd8aa1c066f1585324~mv2.png/v1/crop/x_5,y_56,w_1574,h_274/fill/w_722,h_126,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_6a83b07168a949fd8aa1c066f1585324~mv2.png"
alt="" srcset="" class="simg25">
<img src="https://static.wixstatic.com/media/b21544_ef37cc9ca88c4acda38e523be71d24f6~mv2.png/v1/crop/x_0,y_593,w_1500,h_320/fill/w_590,h_126,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_ef37cc9ca88c4acda38e523be71d24f6~mv2.png"
alt="" srcset="" class="simg26">
<img src="https://static.wixstatic.com/media/b21544_b65d9d86787940caa4a867e8f071e2db~mv2.png/v1/fill/w_570,h_90,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_b65d9d86787940caa4a867e8f071e2db~mv2.png"
alt="" srcset="" class="simg27">
<!-- <img src="https://static.wixstatic.com/media/b21544_a4b1517147934346b7238acf53370d86~mv2.jpeg/v1/crop/x_313,y_163,w_640,h_334/fill/w_302,h_158,al_c,q_80,usm_0.66_1.00_0.01,enc_auto/b21544_a4b1517147934346b7238acf53370d86~mv2.jpeg" alt="" srcset="" class="simg16"> -->
</div>
<div class="simgdiv3">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/.xyz_logo.svg/1280px-.xyz_logo.svg.png"
alt="" srcset="" class="simg28">
<img src="data:image/png;base64,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"
alt="" srcset="" class="simg29">
<img src="https://static.wixstatic.com/media/b21544_0b821fdf623d46e093d2283d1990d080~mv2.png/v1/fill/w_386,h_194,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_0b821fdf623d46e093d2283d1990d080~mv2.png"
alt="" srcset="" class="simg30">
<img src="https://static.wixstatic.com/media/b21544_50b876557b7a42819ef8ffa8c5e8b967~mv2.png/v1/fill/w_488,h_140,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_50b876557b7a42819ef8ffa8c5e8b967~mv2.png"
alt="" srcset="" class="simg31">
</div>
<div class="simgdiv3">
<img src="https://static.wixstatic.com/media/b21544_a4de7ae4b69941548b4dc1a65211fbcf~mv2.png/v1/fill/w_414,h_164,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_a4de7ae4b69941548b4dc1a65211fbcf~mv2.png"
alt="" srcset="" class="simg32">
<img src="https://static.wixstatic.com/media/b21544_b2a1d55d81e3491daff4528cff72984c~mv2.png/v1/fill/w_488,h_126,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_b2a1d55d81e3491daff4528cff72984c~mv2.png"
alt="" srcset="" class="simg33">
<img src="https://static.wixstatic.com/media/b21544_c739d99529fc4e95afc33cf56bc5d3bb~mv2.jpg/v1/fill/w_260,h_260,al_c,q_80,usm_0.66_1.00_0.01,enc_auto/b21544_c739d99529fc4e95afc33cf56bc5d3bb~mv2.jpg"
alt="" srcset="" class="simg34">
<img src="https://static.wixstatic.com/media/b21544_b1257ff3e58343ea9e33da1e5187a640~mv2.jpg/v1/fill/w_202,h_210,al_c,q_80,usm_0.66_1.00_0.01,enc_auto/b21544_b1257ff3e58343ea9e33da1e5187a640~mv2.jpg"
alt="" srcset="" class="simg35">
<img src="https://static.wixstatic.com/media/b21544_b87c197743b449eeae1042a026bcb040~mv2.jpg/v1/fill/w_212,h_210,al_c,q_80,usm_0.66_1.00_0.01,enc_auto/b21544_b87c197743b449eeae1042a026bcb040~mv2.jpg"
alt="" srcset="" class="simg36">
</div>
</div>
<div id="incubp">
<b>
<p class="headings">
INCUBATION PARTNER</p>
</b>
<hr style="height:3px;border-width:0px;color:#fec023;background-color:#fec023;width:350px"
class="sline">
<div class="simgdiv">
<img src="https://static.wixstatic.com/media/b21544_ccbc3d4da1fc414d882926429fb90dc8~mv2.png/v1/crop/x_61,y_117,w_487,h_270/fill/w_350,h_194,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_ccbc3d4da1fc414d882926429fb90dc8~mv2.png"
alt="" srcset="" class="simg37">
</div>
</div>
<div id="certp">
<b>
<p class="headings">
CERTIFICATE PARTNER</p>
</b>
<hr style="height:3px;border-width:0px;color:#fec023;background-color:#fec023;width:350px"
class="sline">
<div class="simgdiv">
<img src="https://static.wixstatic.com/media/b21544_d8d44937dbc647d69aad1d355dda2c56~mv2.png/v1/crop/x_73,y_0,w_1235,h_267/fill/w_640,h_138,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_d8d44937dbc647d69aad1d355dda2c56~mv2.png"
alt="" srcset="" class="simg38">
</div>
</div>
<div id="giftp">
<b>
<p class="headings">
GIFTING PARTNER</p>
</b>
<hr style="height:3px;border-width:0px;color:#fec023;background-color:#fec023;width:350px"
class="sline">
<div class="simgdiv">
<img src="https://static.wixstatic.com/media/b21544_da4d21035211410caa076a31bc31b8c9~mv2.png/v1/fill/w_690,h_388,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_da4d21035211410caa076a31bc31b8c9~mv2.png"
alt="" srcset="" class="simg39">
</div>
</div>
<div id="community">
<b>
<p class="headings">
COMMUNITY PARTNER </p>
</b>
<hr style="height:3px;border-width:0px;color:#fec023;background-color:#fec023;width:350px"
class="sline">
<div class="simgdiv">
<img src="https://static.wixstatic.com/media/b21544_4b89168c176345558d2c23cffc1483ef~mv2.png/v1/fill/w_668,h_90,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_4b89168c176345558d2c23cffc1483ef~mv2.png"
alt="" srcset="" class="simg40">
<img src="https://static.wixstatic.com/media/b21544_2e2aabb973b24127bc285ee837d8f177~mv2.png/v1/crop/x_119,y_119,w_660,h_658/fill/w_272,h_272,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_2e2aabb973b24127bc285ee837d8f177~mv2.png"
alt="" srcset="" class="simg41">
<img src="https://static.wixstatic.com/media/b21544_9e23c787f6c54463a350ec6a16c67a71~mv2.png/v1/fill/w_498,h_194,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_9e23c787f6c54463a350ec6a16c67a71~mv2.png"
alt="" srcset="" class="simg42">
<img src="https://static.wixstatic.com/media/b21544_2882cef5773b4d80a7657e3415f9b28f~mv2.png/v1/crop/x_434,y_15,w_598,h_293/fill/w_322,h_158,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_2882cef5773b4d80a7657e3415f9b28f~mv2.png"
alt="" srcset="" class="simg43">
</div>
<div class="simgdiv3">
<img src="https://static.wixstatic.com/media/b21544_610cd301995645c2b8c727fd090fa7ae~mv2.png/v1/fill/w_420,h_210,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_610cd301995645c2b8c727fd090fa7ae~mv2.png"
alt="" srcset="" class="simg44">
<img src="https://static.wixstatic.com/media/b21544_845a7cd3ca844377b9bf21f33fbad7bb~mv2.png/v1/fill/w_688,h_104,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_845a7cd3ca844377b9bf21f33fbad7bb~mv2.png"
alt="" srcset="" class="simg45">
<img src="https://static.wixstatic.com/media/b21544_daf42a788dbf4bd2827e224fb83a6832~mv2.jpg/v1/fill/w_546,h_134,al_c,q_80,usm_0.66_1.00_0.01,enc_auto/b21544_daf42a788dbf4bd2827e224fb83a6832~mv2.jpg"
alt="" srcset="" class="simg46">
</div>
<div class="simgdiv3">
<img src="https://static.wixstatic.com/media/b21544_bd3452d251274095b43882df0ed9eacd~mv2.png/v1/fill/w_584,h_194,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_bd3452d251274095b43882df0ed9eacd~mv2.png"
alt="" srcset="" class="simg47">
<img src="https://static.wixstatic.com/media/b21544_5ad6d25599fb49cebe9ebc3ba3901717~mv2.png/v1/fill/w_542,h_134,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/b21544_5ad6d25599fb49cebe9ebc3ba3901717~mv2.png"
alt="" srcset="" class="simg48">
</div>
</div>
</div>
</section>
<!-- Section 7 -->
<section id="pastspeakers">
<center>
<h1 id="headspeaker"> PAST SPEAKERS & JUDGES </h1>
<hr style="height:3px;border-width:0px;color:rgb(0, 0, 0);background-color:rgb(0, 0, 0);width:200px">
</center>
<center>
<div id="speakers">
<div id="speakerline1">
<div id="speaker1">
<img src="https://static.wixstatic.com/media/b21544_c1e81984fe1743dbac0b25ad60f5e62f~mv2.png/v1/fill/w_450,h_450,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/Aditya%20Oberai.png"
alt="" id="speakimg">
<h2> Aditya Oberai</h2>
<h3 class="desc">
MLH APAC Coach |<br>Dev Rel @Appwrite
</h3>
</div>
<div id="speaker2">
<img src="https://static.wixstatic.com/media/b21544_89226e2b04d343d5a820d0165312bef3~mv2.png/v1/fill/w_450,h_450,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/Khooshboo%20Verma.png"
alt="" id="speakimg">
<h2> Khushboo Verma</h2>
<h3 class="desc">
MLH APAC Coach |<br>Dev Rel @Appwrite
</h3>
</div>
<div id="speaker3">
<img src="https://static.wixstatic.com/media/b21544_79e2382abee947d188cf7ea3fa4855f3~mv2.png/v1/fill/w_450,h_450,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/Nikita%20Gandhi.png"
alt="" id="speakimg">
<h2> Nikita Gandhi</h2>
<h3 class="desc">
Community Manager<br>@Google Developers India
</h3>
</div>
<div id="speaker4">
<img src="https://static.wixstatic.com/media/b21544_25cd225df38941b5819fab708cac2f54~mv2.png/v1/fill/w_450,h_450,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/png_20220310_105851_0000.png"
alt="" id="speakimg">
<h2> Siddharth Dayalwal</h2>
<h3 class="desc">
Founder @Hack This Fall
</h3>
</div>
</div>
<div id="speakerline2">
<div id="speaker1">
<img src="https://static.wixstatic.com/media/b21544_455bc90a5eb0475db038de6618da8ebb~mv2.png/v1/fill/w_450,h_450,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/Kunal%20Kushwaha.png"
alt="" id="speakimg">
<h2> Kunal kushwaha</h2>
<h3 class="desc">
Founder @community <br> Classroom | YouTuber
</h3>
</div>
<div id="speaker2">
<img src="https://static.wixstatic.com/media/b21544_3b58e599822e49138b0a375cb423b03c~mv2.png/v1/fill/w_450,h_450,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/Yashovardhan%20Agrawal.png"
alt="" id="speakimg">
<h2> Yashovardhan Agrawal</h2>
<h3 class="desc">
DevRel @Web3Auth |<br>Developer Evangelist @Github
</h3>
</div>
<div id="speaker3">
<img src="https://static.wixstatic.com/media/b21544_5bd172b9b1f9417aa19fc293f8b16575~mv2.png/v1/fill/w_450,h_450,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/Alyssa%20Rose.png"
alt="" id="speakimg">
<h2> Alyssa Rose</h2>
<h3 class="desc">
Community Specialist <br>@vercel
</h3>
</div>
<div id="speaker4">
<img src="https://static.wixstatic.com/media/b21544_9a20e94c023048d89eb11469c552117f~mv2.png/v1/fill/w_450,h_450,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/Miri%20Rodriguez.png"
alt="" id="speakimg">
<h2> Miri Rodriguez</h2>
<h3 class="desc">
Story Teller @Microsoft
</h3>
</div>
</div>
</div>
</center>
</section>
<!-- Section 8 -->
<section id="sponus">
<div id="spontwo">
<div id="sponleft">
<p class="sponlefth"> Be a part of an <br> Impact. Be a Sponsor.</p>
<p class="sponleftp"> We believe in sharing our dream, organizing educational events for students,
work for humanitarian causes and to help companies communicate and impact at the same time. We
are looking for sponsors who are invested in our mission and willing to support our event to
make it another success story.</p>
<button id="btnspon"> Sponsor Us </button>
</div>
<div id="sponright">
<img src="https://static.wixstatic.com/media/b21544_35905735090649ca918249b1f5a37f37~mv2.png/v1/crop/x_0,y_157,w_1000,h_675/fill/w_922,h_622,al_c,q_90,usm_0.66_1.00_0.01,enc_auto/b21544_35905735090649ca918249b1f5a37f37~mv2.png"
alt="" srcset="" class="sponimg">
</div>
</div>
<div id="sponlast">
<center>
<p id="sponlastline"> *All Payments /Sponsorship will be eligible for deduction under Section 80G of
Income Tax Act , 1961 </p>
</center>
</div>
</section>
<!-- Section 9 -->
<section id="questions">
<center>
<p id="mainques"><b> HAVING QUESTIONS ? </b></p>
</center>
<div>
<center id="faqmain"><img src="Images/anyques.png" alt="" srcset="" id="faqlogo">
<button id="faq"> FAQ'S </button>
</center>
</div>
</section>
<section>
<div class="pg-footer">
<footer class="footer">
<svg class="footer-wave-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100"
preserveAspectRatio="none">
<path class="footer-wave-path"
d="M851.8,100c125,0,288.3-45,348.2-64V0H0v44c3.7-1,7.3-1.9,11-2.9C80.7,22,151.7,10.8,223.5,6.3C276.7,2.9,330,4,383,9.8 c52.2,5.7,103.3,16.2,153.4,32.8C623.9,71.3,726.8,100,851.8,100z">
</path>
</svg>
<div class="footer-content">
<div class="footer-content-column">
<div class="footer-logo">
<a class="footer-logo-link" href="#">
<span class="hidden-link-text">LOGO</span>
<img src="https://static.wixstatic.com/media/b21544_e279f3bad4be4c2b85033e1893ae4bd2~mv2.png/v1/crop/x_12,y_36,w_3704,h_2031/fill/w_614,h_338,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/HTM.png"
alt="" srcset="" width="250px" height="150px">
</a>
</div>
</div>
<div class="footer-content-column">
<div class="footer-menu">
<h2 class="footer-menu-name"> Contact</h2>
<ul id="menu-company" class="footer-menu-list">
<li class="menu-item menu-item-type-post_type menu-item-object-page">
<a>Mail Us :</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="mailto:[email protected]">[email protected]
</a>
</li>
</ul>
</div>
</div>
<div class="footer-content-column">
<div class="footer-menu">
<h2 class="footer-menu-name"> Quick Links</h2>
<ul id="menu-quick-links" class="footer-menu-list">
<li class="menu-item menu-item-type-custom menu-item-object-custom">
<a target="_blank" rel="noopener noreferrer" href="#">Contact Us </a>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom">
<a target="_blank" rel="noopener noreferrer" href="#">Team</a>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page">
<a href="#">Sudans Tech</a>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page">
<a href="#">Sponsor Us</a>
</li>
<li class="menu-item menu-item-type-post_type_archive menu-item-object-customer">
<a href="#">MLH Code of Conduct</a>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page">
<a href="#">Reviews</a>
</li>
</ul>
</div>
</div>
<div class="footer-content-column">
<div class="footer-call-to-action">
<h2 class="footer-call-to-action-title"> Let's Chat</h2>
<p class="footer-call-to-action-description"> Have a support question?</p>
<a class="footer-call-to-action-button button" href="#" target="_self"> Get in Touch
</a>
</div>
</div>
<div class="footer-social-links"> <svg class="footer-social-amoeba-svg"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 236 54">
<path class="footer-social-amoeba-path"
d="M223.06,43.32c-.77-7.2,1.87-28.47-20-32.53C187.78,8,180.41,18,178.32,20.7s-5.63,10.1-4.07,16.7-.13,15.23-4.06,15.91-8.75-2.9-6.89-7S167.41,36,167.15,33a18.93,18.93,0,0,0-2.64-8.53c-3.44-5.5-8-11.19-19.12-11.19a21.64,21.64,0,0,0-18.31,9.18c-2.08,2.7-5.66,9.6-4.07,16.69s.64,14.32-6.11,13.9S108.35,46.5,112,36.54s-1.89-21.24-4-23.94S96.34,0,85.23,0,57.46,8.84,56.49,24.56s6.92,20.79,7,24.59c.07,2.75-6.43,4.16-12.92,2.38s-4-10.75-3.46-12.38c1.85-6.6-2-14-4.08-16.69a21.62,21.62,0,0,0-18.3-9.18C13.62,13.28,9.06,19,5.62,24.47A18.81,18.81,0,0,0,3,33a21.85,21.85,0,0,0,1.58,9.08,16.58,16.58,0,0,1,1.06,5A6.75,6.75,0,0,1,0,54H236C235.47,54,223.83,50.52,223.06,43.32Z">
</path>
</svg>
<a class="footer-social-link linkedin"
href="https://www.linkedin.com/company/hackmountains/" target="_blank">
<span class="hidden-link-text">Linkedin</span>
<svg class="footer-social-icon-svg" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 30 30">
<path class="footer-social-icon-path"
d="M9,25H4V10h5V25z M6.501,8C5.118,8,4,6.879,4,5.499S5.12,3,6.501,3C7.879,3,9,4.121,9,5.499C9,6.879,7.879,8,6.501,8z M27,25h-4.807v-7.3c0-1.741-0.033-3.98-2.499-3.98c-2.503,0-2.888,1.896-2.888,3.854V25H12V9.989h4.614v2.051h0.065 c0.642-1.18,2.211-2.424,4.551-2.424c4.87,0,5.77,3.109,5.77,7.151C27,16.767,27,25,27,25z">
</path>
</svg>
</a>
<a class="footer-social-link twitter" href="https://twitter.com/HackMountains"
target="_blank">
<span class="hidden-link-text">Twitter</span>
<svg class="footer-social-icon-svg" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 26 26">
<path class="footer-social-icon-path"
d="M 25.855469 5.574219 C 24.914063 5.992188 23.902344 6.273438 22.839844 6.402344 C 23.921875 5.75 24.757813 4.722656 25.148438 3.496094 C 24.132813 4.097656 23.007813 4.535156 21.8125 4.769531 C 20.855469 3.75 19.492188 3.113281 17.980469 3.113281 C 15.082031 3.113281 12.730469 5.464844 12.730469 8.363281 C 12.730469 8.773438 12.777344 9.175781 12.867188 9.558594 C 8.503906 9.339844 4.636719 7.246094 2.046875 4.070313 C 1.59375 4.847656 1.335938 5.75 1.335938 6.714844 C 1.335938 8.535156 2.261719 10.140625 3.671875 11.082031 C 2.808594 11.054688 2 10.820313 1.292969 10.425781 C 1.292969 10.449219 1.292969 10.46875 1.292969 10.492188 C 1.292969 13.035156 3.101563 15.15625 5.503906 15.640625 C 5.0625 15.761719 4.601563 15.824219 4.121094 15.824219 C 3.78125 15.824219 3.453125 15.792969 3.132813 15.730469 C 3.800781 17.8125 5.738281 19.335938 8.035156 19.375 C 6.242188 20.785156 3.976563 21.621094 1.515625 21.621094 C 1.089844 21.621094 0.675781 21.597656 0.265625 21.550781 C 2.585938 23.039063 5.347656 23.90625 8.3125 23.90625 C 17.96875 23.90625 23.25 15.90625 23.25 8.972656 C 23.25 8.742188 23.246094 8.515625 23.234375 8.289063 C 24.261719 7.554688 25.152344 6.628906 25.855469 5.574219 ">
</path>
</svg>
</a>
<a class="footer-social-link youtube" href="https://www.youtube.com/c/HackTheMountains"
target="_blank">
<span class="hidden-link-text">Youtube</span>
<svg class="footer-social-icon-svg" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 30 30">
<path class="footer-social-icon-path"
d="M 15 4 C 10.814 4 5.3808594 5.0488281 5.3808594 5.0488281 L 5.3671875 5.0644531 C 3.4606632 5.3693645 2 7.0076245 2 9 L 2 15 L 2 15.001953 L 2 21 L 2 21.001953 A 4 4 0 0 0 5.3769531 24.945312 L 5.3808594 24.951172 C 5.3808594 24.951172 10.814 26.001953 15 26.001953 C 19.186 26.001953 24.619141 24.951172 24.619141 24.951172 L 24.621094 24.949219 A 4 4 0 0 0 28 21.001953 L 28 21 L 28 15.001953 L 28 15 L 28 9 A 4 4 0 0 0 24.623047 5.0546875 L 24.619141 5.0488281 C 24.619141 5.0488281 19.186 4 15 4 z M 12 10.398438 L 20 15 L 12 19.601562 L 12 10.398438 z">
</path>
</svg>
</a>
<a class="footer-social-link github" href="#" target="_blank">
<span class="hidden-link-text">Github</span>
<svg class="footer-social-icon-svg" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 32 32">
<path class="footer-social-icon-path"
d="M 16 4 C 9.371094 4 4 9.371094 4 16 C 4 21.300781 7.4375 25.800781 12.207031 27.386719 C 12.808594 27.496094 13.027344 27.128906 13.027344 26.808594 C 13.027344 26.523438 13.015625 25.769531 13.011719 24.769531 C 9.671875 25.492188 8.96875 23.160156 8.96875 23.160156 C 8.421875 21.773438 7.636719 21.402344 7.636719 21.402344 C 6.546875 20.660156 7.71875 20.675781 7.71875 20.675781 C 8.921875 20.761719 9.554688 21.910156 9.554688 21.910156 C 10.625 23.746094 12.363281 23.214844 13.046875 22.910156 C 13.15625 22.132813 13.46875 21.605469 13.808594 21.304688 C 11.144531 21.003906 8.34375 19.972656 8.34375 15.375 C 8.34375 14.0625 8.8125 12.992188 9.578125 12.152344 C 9.457031 11.851563 9.042969 10.628906 9.695313 8.976563 C 9.695313 8.976563 10.703125 8.65625 12.996094 10.207031 C 13.953125 9.941406 14.980469 9.808594 16 9.804688 C 17.019531 9.808594 18.046875 9.941406 19.003906 10.207031 C 21.296875 8.65625 22.300781 8.976563 22.300781 8.976563 C 22.957031 10.628906 22.546875 11.851563 22.421875 12.152344 C 23.191406 12.992188 23.652344 14.0625 23.652344 15.375 C 23.652344 19.984375 20.847656 20.996094 18.175781 21.296875 C 18.605469 21.664063 18.988281 22.398438 18.988281 23.515625 C 18.988281 25.121094 18.976563 26.414063 18.976563 26.808594 C 18.976563 27.128906 19.191406 27.503906 19.800781 27.386719 C 24.566406 25.796875 28 21.300781 28 16 C 28 9.371094 22.628906 4 16 4 Z ">
</path>
</svg>
</a>
</div>
</div>
<div class="footer-copyright">
<div class="footer-copyright-wrapper">
<p class="footer-copyright-text">
<a class="footer-copyright-link" href="#" target="_self"> Website is Made & Maintained
by <a href="https://www.sudanstech.com/" target="_blank">Sudans Technocarts
Foundation</a> ©2020.
</a>
</p>
</div>
</div>
</footer>
</div>
</section>
</div>
<script src="script.js"></script>
</body>
</html>