-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
823 lines (793 loc) · 32.9 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
<!DOCTYPE html>
<html lang=en>
<head>
<meta name="google-site-verification" content="rp2DfFK_iSAW48ZmK_ZoOKNj5LRjp71YUZddM1-cCGU" />
<meta charset="utf-8">
<title>UHACK19</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover"">
<meta name=" apple-mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#091822">
<meta name="apple-mobile-web-app-status-bar-style" content="#091822">
<script>
document.addEventListener("DOMContentLoaded", function () {
if (navigator.userAgent.indexOf('Safari') != -1
&& navigator.userAgent.indexOf('Chrome') == -1) {
let illustration = document.getElementById("landing-illustration");
illustration.setAttribute("src", "./assets/img/v6-tower.png")
}
});
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-109906061-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-109906061-2');
</script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css">
<link rel="stylesheet" href="assets/css/styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.9/typed.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.4.1/js/all.js"
integrity="sha384-L469/ELG4Bg9sDQbl0hvjMq8pOcqFgkSpwhwnslzvVVGpDjYJ6wJJyYjvG3u8XW7"
crossorigin="anonymous"></script>
<link rel="icon" type="image/png" href="img/RED.png" />
</head>
<body>
<progress value="0" id="progressBar">
<div class="progress-container"></div>
</progress>
<section class="landing-container justify-content-center" id="landing">
<div class="container-fluid">
<div class="row">
<div class="col-md-7 landing-left">
<img class="logo landing-logo Width40" src="img/RED.png" />
<div>
<div class="title">
<h1 id="hackdavis"><b>Usict Hack</b></h1>
</div>
<div class="details">
<code class="facts" id="typed" style="animation: fadeIn .5s both;animation-delay: .20s;"></code>
<code class="facts"
style="animation: fadeIn .5s both;animation-delay: .25s;"><br><br>October 12 – 13, 2019</code>
<code class="facts"
style="animation: fadeIn .5s both;animation-delay: 0.35s;"><br><a target="_blank" href="https://goo.gl/maps/X7176LrHky53Apr47">GGSIPU, Dwarka, Delhi-78</a></code>
</div>
</div>
<div>
<!--Email-->
<!-- <a href="index.html#sponsor" rel="noopener noreferrer">
<button class="sponsor-us">Sponsor Us</button>
</a> -->
<!--Application Form-->
<!-- <a id="apply-button" href="#" target="_blank" rel="noopener noreferrer">
<button disabled class="get-notified">Apply</button>
<!-- <code id="apply-hint">Hackers</code> -->
<!-- <code id="apply-hint">Applications Not Open Yet</code> -->
<!-- </a> -->
<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>
<a href="index.html#sponsor" rel="noopener noreferrer">
<button class="sponsor-us">Sponsor Us</button>
</a>
<a href="./code-of-conduct.html" rel="noopener noreferrer">
<button class="sponsor-us">Code Of Conduct</button>
</a>
</div>
</div>
<div class="col-md-4">
<div class="landing-picture">
<img id="landing-illustration" src="assets/img/v6-tower.svg" alt="tower" class="tower">
</div>
</div>
</div>
</div>
</section>
<section class="stats-container">
<div>
<div class="container">
<h1 class="social-good-text" data-entrance="fade" style="text-align:center; margin-bottom: 30px;">
<span class="underline hack">About UsictHACK</span>
</h1>
<h5 class="social-good-text" data-entrance="fade" style="color: white;margin-bottom: 100px">
At UsictHACK, we are aiming to provide a hacking and networking platform by bringing people from a multitude
of organisations,educational backgrounds ,belonging to different stratas of society for a whole new arena of
excitement,coding and sheer brilliance. And at what cost, Zero. Zip. Zilch. Nada. Nothing! Its a deliquescent
combination of Hackathon, DevRelCon and Hiring Fair, that serves to every kind of aspirations.
</h5>
<div class="row" style="margin-top: 30px">
<div class="col-md-4 readable-text-col" data-entrance="fade">
<div class="tracks-header">
<div class="tracks-picture">
<center>
<img src="assets/img/conference.svg" alt="conference" class="imgSize">
</center>
</div>
<h2 class="tracks-title">
<span class="underline health">DevRelConf</span>
</h2>
</div>
<p class="tracks-des">
An event aiming at the assimilation of developers advocates of multiple organisations, sharing their
knowledge and experiences.
</p>
</div>
<div class="col-md-4 readable-text-col" data-entrance="fade" data-entrance-delay="100">
<div class="tracks-header">
<div class="tracks-picture">
<center>
<img src="assets/img/hackathon.svg" alt="plant" class="imgSize">
</center>
</div>
<h2 class="tracks-title">
<span class="underline environment">Hackathon</span>
</h2>
</div>
<p class="tracks-des">
An event, typically lasting several days, in which a large number of people meet to engage in
collaborative computer programming.
</p>
</div>
<div class="col-md-4 readable-text-col" data-entrance="fade" data-entrance-delay="200">
<div class="tracks-header">
<div class="tracks-picture">
<center>
<img src="assets/img/hiring.svg" alt="book" class="imgSize">
</center>
</div>
<h2 class="tracks-title">
<span class="underline education">Hiring Fair</span>
</h2>
</div>
<p class="tracks-des">
A venue where the employer will witness the work of the foreseeable employees, and the attendees will be
able to choose the track and companies they see fit.
</p>
</div>
</div>
</div>
</div>
<p class="section-title" data-entrance="fade">
<span class="underline schedule">Glimpses of last UHACKs</span>
</p>
<div class="container stats-content">
<ul class="list-features justify-content-center row align-items-center">
<li class="col-lg-3 col-sm-6" data-entrance="fade">
<h2 class="stats">300<small>+</small></h2>
<code>Hackers</code>
</li>
<li class="col-lg-3 col-sm-6" data-entrance="fade" data-entrance-delay="100">
<h2 class="stats">30</h2>
<code>Hours</code>
</li>
<li class="col-lg-3 col-sm-6" data-entrance="fade" data-entrance-delay="200">
<h2 class="stats"><sup></sup>Prizes</h2>
<code>Prizes worth INR 1Lac</code>
</li>
<li class="col-lg-3 col-sm-6" data-entrance="fade" data-entrance-delay="300">
<h2 class="stats">100<small>+</small></h2>
<code>Projects</code>
</li>
</ul>
</div>
</section>
<section class="about-container">
<div class="container about-content" data-entrance="fade">
<div class="row">
<div class="col-md-7 readable-text-col social-good-left">
<h1 class="social-good-text" data-entrance="fade">
<span class="underline hack">Celebrating Diversity</span>
</h1>
<!-- <p class="about-text">
With the rapid advancement of technology, it is important to use its power in ways that benefit society.
</p> -->
<p class="about-text">
We create an environment that brings developers together irrespective of their
<strong>gender, race, sexual orientation, socioeconomic background or ethnicity.</strong>
Ever since its inception USICTHack has been extremely devoted to the cause of
<strong>celebrating diversity among its participants.</strong>
We wish to promote Girls in Tech , so we will be having an exclusive prize for the best Girl's team.
<strong>Also 30% of the spots are reserved for female participants.</strong>
</p>
</div>
<div class="col-md-5 social-good-right">
<img src="assets/img/v3-social-good-small.png" alt="social-good" class="social-good">
</div>
</div>
</div>
</section>
<section class="tracks-container" style="text-align:center">
<p class="section-title" data-entrance="fade">
<span class="underline schedule">Themes to be announced!!!</span>
</p>
<!-- <div class="container">
<div class="row">
<div class="col-md-4 readable-text-col" data-entrance="fade">
<div class="tracks-header">
<div class="tracks-picture">
<img src="assets/img/heart.svg" alt="heart" class="tracks-img">
</div>
<h2 class="tracks-title">
<span class="underline health">Health</span>
</h2>
</div>
<p class="tracks-des">
Develop a product that encourages people to live a healthier lifestyle. Help predict and prevent illnesses
before they affect the body.
</p>
</div>
<div class="col-md-4 readable-text-col" data-entrance="fade" data-entrance-delay="100">
<div class="tracks-header">
<div class="tracks-picture">
<img src="assets/img/plant.svg" alt="plant" class="tracks-img">
</div>
<h2 class="tracks-title">
<span class="underline environment">Environment</span>
</h2>
</div>
<p class="tracks-des">
Aggregate public data to analyze or improve government green energy policies. Design solutions to reduce
energy consumption in habitable spaces.
</p>
</div>
<div class="col-md-4 readable-text-col" data-entrance="fade" data-entrance-delay="200">
<div class="tracks-header">
<div class="tracks-picture">
<img src="assets/img/book.svg" alt="book" class="tracks-img">
</div>
<h2 class="tracks-title">
<span class="underline education">Education</span>
</h2>
</div>
<p class="tracks-des">
Discover new ways to faciliate learning within the classroom. Enable accessible education for individuals
with learning disabilities.
</p>
</div>
</div>
</div> -->
</section>
<section class="schedule-container">
<p class="section-title" data-entrance="fade">
<span class="underline schedule">schedule</span>
</p>
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="day" data-entrance="fade">
<div class="day-title">
Friday
</div>
<div class="day-date">
12 Oct,19
</div>
<div class="time-box">
<p>am</p>
</div>
<div class="event">
<div class="time">
10
</div>
<div class="details">
<div class="event-title">
check in
</div>
</div>
</div>
<div class="event">
<div class="time">
11
</div>
<div class="details">
<div class="event-title">
Briefing
</div>
</div>
</div>
<div class="time-box">
<p>pm</p>
</div>
<div class="event">
<div class="time">
12
</div>
<div class="details">
<div class="event-title">
Hacking Begins
</div>
</div>
</div>
<div class="event">
<div class="time">
2
</div>
<div class="details">
<div class="event-title">
Lunch
</div>
</div>
</div>
<div class="event">
<div class="time">
5
</div>
<div class="details">
<div class="event-title">
Snacks
</div>
</div>
</div>
<div class="event">
<div class="time">
9
</div>
<div class="details">
<div class="event-title">
Dinner
</div>
</div>
</div>
<div class="event">
<div class="time">
11
</div>
<div class="details">
<div class="event-title">
Mentoring & Midnight Evaluation
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="day" data-entrance="fade" data-entrance-delay="100">
<div class="day-title">
Saturday
</div>
<div class="day-date">
13 Oct,19
</div>
<div class="time-box">
<p>am</p>
</div>
<div class="event">
<div class="time">
3
</div>
<div class="details">
<div class="event-title">
Mid-Night Snacks
</div>
</div>
</div>
<div class="event">
<div class="time">
9
</div>
<div class="details">
<div class="event-title">
Breakfast
</div>
</div>
</div>
<div class="time-box">
<p>
pm
</p>
</div>
<div class="event">
<div class="time">
12
</div>
<div class="details">
<div class="event-title">
Pitching Starts
</div>
</div>
</div>
<div class="event">
<div class="time">
1
</div>
<div class="details">
<div class="event-title">
Winner Announced
</div>
</div>
<div class="event">
<div class="time">
2
</div>
<div class="details">
<div class="event-title">
lunch
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="faq-container">
<div class="container">
<p class="section-title" data-entrance="fade">
<span class="underline faq">FAQ</span>
</p>
<div class="faq-content center">
<div class="accordion">
<div class="accordion-item" data-entrance="fade">
<a class="question">What is a hackathon?</a>
<div class="content">
<p class="answer">
A hackathon (also known as a hack day, hackfest or codefest) is a design sprint-like event in which
computer programmers and others involved in software development,
including graphic designers, interface designers, project managers, and others, often including
subject-matter-experts, collaborate intensively on software projects.
</p>
</div>
</div>
<div class="accordion-item" data-entrance="fade">
<a class="question">Am I invited?</a>
<div class="content">
<p>
Anyone that is currently a college student or that has graduated in the past year is invited. High
schoolers can go ahead and apply and we'll notify you if any problems come
about.
<br> <br>
We will be holding workshops throughout the year for students to immerse themselves into the world of
hackathons and technology.
These workshops will be held by industry professionals and members of our team, who will teach new and
upcoming tools that assist with web development, mobile development,
and more.
</p>
</div>
</div>
<div class="accordion-item" data-entrance="fade">
<a class="question">What should I bring?</a>
<div class="content">
<p>
Bring your student ID, laptop, chargers. A pillow and sleeping bag may be useful as well. Please leave
anything illegal at home.
</p>
</div>
</div>
<div class="accordion-item" data-entrance="fade">
<a class="question">What if this is my first hackathon?</a>
<div class="content">
<p>
Awesome! We have prizes for newcomers, as the best way to learn is by building. There will be mentors
to help you every step of the way. We all start somewhere, why not here?
</p>
</div>
</div>
<div class="accordion-item" data-entrance="fade">
<a class="question">How long is it?</a>
<div class="content">
<p>
You will have 24 hours to build but we will also have opening and closing ceremonies as well as the
project expo. Prepare to spend your weekend with us starting Friday night and we’ll have you out around
midday on Sunday. A more detailed scheduled will be released closer to the event.
</p>
</div>
</div>
<div class="accordion-item" data-entrance="fade">
<a class="question">How much does it cost?</a>
<div class="content">
<p>
It is free for all admitted participants. Don’t sweat it! We will provide your WiFi, meals, caffeine,
swag, and workspace for the entire weekend.
</p>
</div>
</div>
<div class="accordion-item" data-entrance="fade">
<a class="question">How do teams work?</a>
<div class="content">
<p>
Teams have size of 3-4 members. If you don’t have a team, no sweat, we will have a mixer for you to discuss
ideas and meet other hackers to join forces.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="sponsors-container">
<div class="container">
<p class="section-title" data-entrance="fade">
<span class="underline sponsors sponsors-text">Past sponsors</span>
</p>
<!-- Sponser images -->
<div class="container" data-entrance="fade">
<!-- Diamond Sponsors -->
<div class="row">
<div class="col-sm-8 offset-sm-2">
<div class="cohost-line">CO-HOSTED BY</div>
<a class="sponsors-link" href="https://ultrahack.org">
<img class="img-fluid diamond-sponsor" src="sponsors/ultrahack.png">
</a>
</div>
</div>
<br>
<!-- Gold Sponsors -->
<div class="row">
<div class="col-sm-6">
<a class="sponsors-link" href="https://codingblocks.com">
<img class="img-fluid gold-sponsor" src="sponsors/cblogo.png">
</a>
</div>
<div class="col-sm-6">
<a class="sponsors-link" href="https://paytm.com">
<img class="img-fluid gold-sponsor" src="sponsors/Paytm_logo.png">
</a>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a class="sponsors-link" href="https://podio.com">
<img class="img-fluid silver-sponsor" src="sponsors/podio.png">
</a>
</div>
<div class="col-sm-6">
<a class="sponsors-link" href="https://events.earninglabs.com/">
<img class="img-fluid silver-sponsor" src="sponsors/earning_labs.png">
</a>
</div>
</div>
<!-- gold Sponsors -->
<div class="row">
<!-- <div class="col-lg-4 col-6">
<a class="sponsors-link" href="https://www.aorus.com">
<img class="img-fluid gold-sponsor" src="sponsors/aorus.png">
</a>
</div>
<div class="col-lg-4 col-6">
<a class="sponsors-link" href="https://iotw.io/">
<img class="img-fluid gold-sponsor" src="sponsors/iotw.png">
</a>
</div>
<div class="col-lg-4 col-6">
<a class="sponsors-link" href="https://estimote.com/">
<img class="img-fluid gold-sponsor" src="sponsors/estimote.png">
</a>
</div> -->
<div class="col-lg-4 col-6">
<!-- <a class="sponsors-link" href="https://get.tech"> -->
<img class="img-fluid gold-sponsor" src="sponsors/blogx.jpg">
</a>
</div>
<div class="col-lg-4 col-6">
<!-- <a class="sponsors-link" href="http://hackp.ac/mlh-stickermule-hackathons"> -->
<img class="img-fluid gold-sponsor" src="sponsors/barista_beverage.jpg">
</a>
</div>
<div class="col-lg-4 col-6">
<!-- <a class="sponsors-link" href="https://www.stickeryou.com"> -->
<img class="img-fluid gold-sponsor" src="sponsors/redbull.png">
</a>
</div>
<div class="col-lg-4 col-6">
<!-- <a class="sponsors-link" href="https://jetbrains.com"> -->
<img class="img-fluid gold-sponsor" src="sponsors/hoa.png">
</a>
</div>
<div class="col-lg-4 col-6">
<!-- <a class="sponsors-link" href="http://cloudsploit.com"> -->
<img class="img-fluid gold-sponsor" src="sponsors/domainX.png">
</a>
</div>
<div class="col-lg-4 col-6">
<!-- <a class="sponsors-link" href="https://zulipchat.com/"> -->
<img class="img-fluid gold-sponsor" src="sponsors/wild-water.png">
</a>
</div>
<div class="col-lg-4 col-6">
<!-- <a class="sponsors-link" href="https://www.sketch.com/"> -->
<img class="img-fluid gold-sponsor" src="sponsors/reappoint.jpg">
</a>
</div>
<div class="col-lg-4 col-6">
<!-- <a class="sponsors-link" href="hhttps://balsamiq.com/"> -->
<img class="img-fluid gold-sponsor" src="sponsors/agro.jpg">
</a>
</div>
<div class="col-lg-4 col-6">
<!-- <a class="sponsors-link" href="https://www.wolframalpha.com/"> -->
<img class="img-fluid gold-sponsor" src="sponsors/incubate-IND.png">
</a>
</div>
<div class="col-lg-4 col-6">
<!-- <a class="sponsors-link" href="https://www.wolframalpha.com/"> -->
<img class="img-fluid gold-sponsor" src="sponsors/gamex.jpg">
</a>
</div>
<div class="col-lg-4 col-6">
<!-- <a class="sponsors-link" href="https://www.wolframalpha.com/"> -->
<img class="img-fluid gold-sponsor" src="sponsors/mhost.png">
</a>
</div>
<div class="col-lg-4 col-6">
<!-- <a class="sponsors-link" href="https://www.wolframalpha.com/"> -->
<img class="img-fluid gold-sponsor" src="sponsors/walls.png">
</a>
</div>
<div class="col-lg-4 col-6">
<!-- <a class="sponsors-link" href="https://www.wolframalpha.com/"> -->
<img class="img-fluid gold-sponsor" src="sponsors/herm-logo2.png">
</a>
</div>
<!-- <
<div class="col-lg-4 col-6">
<a class="sponsors-link" href="https://www.kindsnacks.com">
<img class="img-fluid gold-sponsor" src="sponsors/kind.png">
</a>
</div>
<div class="col-lg-4 col-6">
<a class="sponsors-link" href="https://www.popchips.com/">
<img class="img-fluid gold-sponsor" src="sponsors/popchips.png">
</a>
</div>
<div class="col-lg-4 col-6">
<a class="sponsors-link" href="https://insomniacookies.com/">
<img class="img-fluid gold-sponsor" src="sponsors/insomnia_cookies.png">
</a>
</div>
<div class="col-lg-4 offset-lg-4 col-6">
<a class="sponsors-link" href="https://emmysorganics.com">
<img class="img-fluid gold-sponsor" src="sponsors/emmys_organics.png">
</a>
</div>
</div>
--->
<!-- Partners -->
<!-- <br><br><br>
<p class="section-title" data-entrance="fade">
<span class="underline sponsors">partners</span>
</p>
<div class="container" data-entrance="fade">
<div class="row">
<div class="col-lg-4 col-6">
<a class="sponsors-link" href="https://mlh.io">
<img class="img-fluid gold-sponsor" src="sponsors/mlh.png">
</a>
</div>
<div class="col-lg-4 col-6">
<a class="sponsors-link" href="http://drakontasconsulting.com/">
<img class="img-fluid gold-sponsor" src="sponsors/drakontas.png">
</a>
</div>
<div class="col-lg-4 col-6">
<a class="sponsors-link" href="https://citris-uc.org">
<img class="img-fluid gold-sponsor" src="sponsors/citris.png">
</a>
</div>
<div class="col-lg-4 col-6">
<a class="sponsors-link" href="https://csi.ucdavis.edu/">
<img class="img-fluid gold-sponsor" src="sponsors/csi.png">
</a>
</div>
<div class="col-lg-4 col-6">
<a class="sponsors-link" href="https://csi.ucdavis.edu/cfc/">
<img class="img-fluid gold-sponsor" src="sponsors/cfc.png">
</a>
</div>
<div class="col-lg-4 col-6">
<a class="sponsors-link" href="https://csi.ucdavis.edu/programs/beyond-tolerance/">
<img class="img-fluid gold-sponsor" src="sponsors/beyond_tolerance.png">
</a>
</div>
<div class="col-lg-4 col-6">
<a class="sponsors-link" href="https://www.ece.ucdavis.edu/">
<img class="img-fluid gold-sponsor" src="sponsors/davis_ece.png">
</a>
</div>
<div class="col-lg-4 col-6">
<a class="sponsors-link" href="https://siss.ucdavis.edu/">
<img class="img-fluid gold-sponsor" src="sponsors/siss.png">
</a>
</div>
<div class="col-lg-4 col-6">
<a class="sponsors-link" href="https://lettersandscience.ucdavis.edu/">
<img class="img-fluid gold-sponsor" src="sponsors/davis_lns.png">
</a>
</div>
<div class="col-lg-4 offset-lg-4 col-6">
<a class="sponsors-link" href="https://cosaf.ucdavis.edu">
<img class="img-fluid gold-sponsor" src="sponsors/cosaf.png">
</a>
</div>
</div>
</div> -->
<!-- Nonprofits
<br><br><br>
<p class="section-title" data-entrance="fade">
<span class="underline sponsors">nonprofits</span>
</p>
<div class="container" data-entrance="fade">
<div class="row">
<div class="col-lg-4 col-6">
<a class="sponsors-link" href="http://www.sassna.org">
<img class="img-fluid gold-sponsor" src="sponsors/wwcd.png">
</a>
</div>
<div class="col-lg-4 col-6">
<a class="sponsors-link" href="https://www.communitywatercenter.org/">
<img class="img-fluid gold-sponsor" src="sponsors/ilugd.png">
</a>
</div>
<div class="col-lg-4 offset-lg-0 col-6 offset-3">
<a class="sponsors-link" href="https://beyond12.org/">
<img class="img-fluid gold-sponsor" src="sponsors/beyond12.png">
</a>
</div>
</div>
</div> -->
<br><br>
</section>
<section id="sponsor" class="sponsors-container">
<div class="container" data-entrance="fade">
<p class="section-title">
<span class="underline sponsors">sponsors us</span>
</p>
<div class="container">
<!-- <div style="display: flex; justify-content: space-evenly;">
<a href="./assets/pdf/HackDelhiIndiaBrochure.pdf" download><button
<a href="#" download><button
style="background: yellow;margin-bottom: 2px;margin-top: 2px" onMouseOver="this.style.background='gray'"
onMouseOut="this.style.background='yellow'"><i class="icon-download-alt"></i> Sponsorship
Brochure-India</button></a>
<a href="./assets/pdf/HackDelhiInternationalBrochure.pdf" download><button
<a href="#" download><button
style="background: yellow; margin-top: 2px;margin-bottom: 2px" onMouseOver="this.style.background='gray'"
onMouseOut="this.style.background='yellow'"><i class="icon-download-alt"></i> Sponsorship
Brochure-International</button></a>
</div> -->
<p class="sponsors-text">If you're interested in sponsoring us, please contact us at <a
href="mailto:[email protected]">[email protected]</a></p>
</div>
</section>
<section class="contact-container">
<img src="img/RED.png" alt="logo" class="logo-picture">
<div id="footer-content">
<a href="mailto:[email protected]">
<i class="fa fa-envelope fa-sm" aria-hidden="true"></i>
</a>
<a href="https://www.facebook.com/infoxpression" target="_blank" rel="noopener noreferrer">
<i class="fab fa-facebook fa-sm" aria-hidden="true"></i>
</a>
<a href="https://www.instagram.com/infoxggsipu/" target="_blank" rel="noopener noreferrer">
<i class="fab fa-instagram fa-sm" aria-hidden="true"></i>
</a>
</div>
<!-- <div id="copyright">
<span>Made with ☕️ & 💛 By HackDelhi</span>
</div> -->
</section>
<a href="index.html#landing" id="scroll-to-top">
<i class="icon-chevron-up"></i>
</a>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="assets/js/bundle.js"></script>
<script> document.addEventListener('DOMContentLoaded', function () {
let devfolioOptions = {
buttonSelector: '#devfolio-apply-now',
key: 'uhack',
}
let script = document.createElement('script');
script.src = "https://apply.devfolio.co";
document.head.append(script);
script.onload = function () {
new Devfolio(devfolioOptions);
}
script.onerror = function () {
document.querySelector(devfolioOptions.buttonSelector).addEventListener('click', function () {
window.location.href = 'https://devfolio.co/external-apply/' + devfolioOptions.key;
});
}
});
</script>
</body>
</body>
</html>