-
Notifications
You must be signed in to change notification settings - Fork 6
/
hackNSUT.html
846 lines (704 loc) · 40.7 KB
/
hackNSUT.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>hackNSUT</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" href="hacknsut/images/hackNSUT19logo.png">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<link rel="stylesheet" href="hacknsut/fonts/icomoon/style.css">
<link rel="stylesheet" href="hacknsut/css/bootstrap.min.css">
<link rel="stylesheet" href="hacknsut/css/magnific-popup.css">
<link rel="stylesheet" href="hacknsut/css/jquery-ui.css">
<link rel="stylesheet" href="hacknsut/css/owl.carousel.min.css">
<link rel="stylesheet" href="hacknsut/css/owl.theme.default.min.css">
<link rel="stylesheet" href="hacknsut/css/bootstrap-datepicker.css">
<link rel="stylesheet" href="hacknsut/fonts/flaticon/font/flaticon.css">
<link rel="stylesheet" href="hacknsut/css/aos.css">
<link href="https://www.jqueryscript.net/css/jquerysctipttop.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="hacknsut/css/style.css">
<style>
#devfolio-apply-now {
-ms-flex-align: center;
-webkit-box-align: center;
align-items: center;
background-color: #3770FF;
border-radius: 3px;
border: none;
color: #FFFFFF;
cursor: pointer;
display: -ms-flexbox;
display: -webkit-box;
display: flex;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe 2UI Emoji', 'Segoe UI Symbol';
font-size: 18px;
font-weight: 600;
padding: 12px 20px;
text-align: center;
text-transform: none;
}
#devfolio-apply-now:not([disabled]) {
cursor: pointer;
}
#devfolio-apply-now:hover {
background-color: #2954BF !important;
}
#devfolio-apply-now .logo {
fill: white;
}
</style>
</head>
<body>
<div class="site-wrap">
<div class="site-mobile-menu">
<div class="site-mobile-menu-header">
<div class="site-mobile-menu-close mt-3">
<span class="icon-close2 js-menu-toggle"></span>
</div>
</div>
<div class="site-mobile-menu-body"></div>
</div>
<header class="site-navbar py-3" role="banner">
<div class="container-fluid">
<div class="row align-items-center">
<div class="col-11 col-xl-2">
<h1 class="mb-0"><a href="#" class="text-white h2 mb-0">hack<span class="text-primary">NSUT</span>
</a></h1>
</div>
<div class="col-12 col-md-10 d-none d-xl-block">
<nav class="site-navigation position-relative text-right" role="navigation">
<ul class="site-menu js-clone-nav mx-auto d-none d-lg-block">
<li><a href="#program">Program</a></li>
<!-- <li class="active"><a href="#">Tracks</a></li> -->
<li><a href="#tracks">Tracks</a></li>
<!-- <li class="cta"><a href="buy-tickets.html">Sponsors</a></li> -->
<li><a href="#sponsor">Sponsors</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#gallery">Gallery</a></li>
</ul>
</nav>
</div>
<div class="d-inline-block d-xl-none ml-md-0 mr-auto py-3" style="position: relative; top: 3px;"><a href="#"
class="site-menu-toggle js-menu-toggle text-white"><span class="icon-menu h3"></span></a></div>
</div>
</div>
</div>
</header>
<div class="site-section site-hero">
<div class="container">
<div class="row align-items-center">
<div class="col-md-10">
<span class="d-block mb-3 caption" data-aos="fade-up" data-aos-delay="100">NSUT TechWeek'19</span>
<h1 class="d-block mb-4" data-aos="fade-up" data-aos-delay="200">hackNSUT</h1>
<span class="d-block mb-5 caption" data-aos="fade-up" data-aos-delay="300">March 30-31, NSUT, Dwarka</span>
<!-- <button id="devfolio-apply-now" data-aos="fade-up" data-aos-delay="400"><svg class="logo" xmlns="htt
p://www.w3.org/2000/svg" viewBox="0 0 115.46 123.46" style="he
ight: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-1
0.09-7.5 15.85 15.85 0 0 0 5.36 1.5c4 .34 10.72.51 20.13.51 1
3.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 5
5.41 0 0 1 50.58 55.34z"/></svg>Apply with Devfolio</button> -->
<!-- <button id="devfolio-apply-now" type="button" data-aos="fade-up" data-aos-delay="400">
<svg class="logo" xmlns="http://www.w3.org/2000/svg" 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> -->
<!-- <button id="devfolio-apply-now" data-aos="fade-up" data-aos-delay="400"><svg class="logo" xmlns="htt p://www.w3.org/2000/svg" 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-1 0.09-7.5 15.85 15.85 0 0 0 5.36 1.5c4 .34 10.72.51 20.13.51 1 3.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.283.84C.38 7 5.26.94 11.76.41c12.11-1 48.59.12 48.59.12a55.41 5 5.41 0 0 1 50.58 55.34z"/></svg>Apply with Devfolio</button> -->
<!-- <a href="#" class="btn-custom" data-aos="fade-up" data-aos-delay="400"><span>Register</span></a> -->
</div>
</div>
</div>
</div>
<div class="site-section" id="program">
<div class="container" >
<div class="row mb-5">
<div class="col-lg-4" data-aos="fade-up">
<div class="site-section-heading" \>
<h2>Timeline</h2>
</div>
</div>
<!--<div class="col-lg-6 mt-5 pl-lg-5" data-aos="fade-up" data-aos-delay="100">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus error deleniti dolores necessitatibus eligendi. Nesciunt repellendus ab voluptatibus.</p>
</div>-->
</div>
<div class="row align-items-stretch program">
<div class="col-12 border-top border-bottom py-5" data-aos="fade" data-aos-delay="200">
<div class="row align-items-stretch">
<h1 class="text-uppercase text-primary d-block mb-3" data-aos="fade-left" data-aos-delay="300">30th March</h1>
<div class="col-md-9">
<h2 class="text-white">
<div class="bio pl-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-right" data-aos-delay="300">Web Designer</span> -->
<p class="mb-4" data-aos="fade-right" data-aos-delay="400"> 8:00 AM - Registration </p>
</div>
<div class="bio pl-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-right" data-aos-delay="300">Web Designer</span> -->
<p class="mb-4" data-aos="fade-right" data-aos-delay="400"> 9:00 AM - Inauguration </p>
</div>
<div class="bio pl-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-right" data-aos-delay="300">Web Designer</span> -->
<p class="mb-4" data-aos="fade-right" data-aos-delay="400"> 10:00 AM - Hacking Begins </p>
</div>
<div class="bio pl-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-right" data-aos-delay="300">Web Designer</span> -->
<p class="mb-4" data-aos="fade-right" data-aos-delay="400"> 4:00 PM - Ice Breaking Session </p>
</div>
<div class="bio pl-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-right" data-aos-delay="300">Web Designer</span> -->
<p class="mb-4" data-aos="fade-right" data-aos-delay="400"> 7:00 PM - Mentoring Session 0 </p>
</div>
</h2>
</div>
</div>
</div>
<div class="col-12 border-bottom py-5" data-aos="fade" data-aos-delay="300">
<div class="row align-items-stretch">
<h1 class="text-uppercase text-primary d-block mb-3" data-aos="fade-left" data-aos-delay="300">31st March</h1>
<div class="col-md-9">
<h2 class="text-white">
<div class="bio pl-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-right" data-aos-delay="300">Web Designer</span> -->
<p class="mb-4" data-aos="fade-right" data-aos-delay="400"> 12:00 AM - Fun Activities </p>
</div>
<div class="bio pl-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-right" data-aos-delay="300">Web Designer</span> -->
<p class="mb-4" data-aos="fade-right" data-aos-delay="400"> 3:00 AM - Mentoring Session 1 </p>
</div>
<div class="bio pl-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-right" data-aos-delay="300">Web Designer</span> -->
<p class="mb-4" data-aos="fade-right" data-aos-delay="400"> 9:00 AM - Mentoring Session 2 </p>
</div>
<div class="bio pl-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-right" data-aos-delay="300">Web Designer</span> -->
<p class="mb-4" data-aos="fade-right" data-aos-delay="400"> 10:00 AM - Final Evaluation </p>
</div>
</h2>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="site-section" id="tracks">
<div class="container" >
<div class="row mb-5">
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="100">
<div class="site-section-heading">
<h2>Tracks</h2>
</div>
</div>
<!-- <div class="col-lg-5 mt-5 pl-lg-5" data-aos="fade-up" data-aos-delay="200">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus error deleniti dolores necessitatibus eligendi. Nesciunt repellendus ab voluptatibus. Minima architecto impedit eaque molestiae dicta quam. Cum ducimus. Culpa distinctio aperiam</p>
</div> -->
</div>
<div class="row align-items-center speaker">
<div class="col-lg-6 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="100">
<!-- <img src="images/person_1.jpg" alt="Image" class="img-fluid"> -->
</div>
<div class="col-lg-6 ml-auto">
<h2 class="text-white mb-4 name" data-aos="fade-right" data-aos-delay="200">Artificial Intelligence</h2>
<div class="bio pl-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-right" data-aos-delay="300">Track_1</span> -->
<p class="mb-4" data-aos="fade-right" data-aos-delay="400">From bots, to personal assistants, and shopping automation, what the future holds for artificial intelligence can be described for sure with at least one word; Exciting. Our machines and devices are getting faster, more efficient and slowly learning to do things on their own.</p>
<!-- <p data-aos="fade-right" data-aos-delay="500">
Follow Emely —
<a href="#" class="p-2"><span class="icon-facebook"></span></a>
<a href="#" class="p-2"><span class="icon-twitter"></span></a>
<a href="#" class="p-2"><span class="icon-github"></span></a>
</p> -->
</div>
</div>
</div>
<div class="row align-items-center speaker">
<div class="col-lg-6 mb-5 mb-lg-0 order-lg-2" data-aos="fade" data-aos-delay="100">
<!-- <img src="images/person_2.jpg" alt="Image" class="img-fluid"> -->
</div>
<div class="col-lg-6 ml-auto order-lg-1">
<h2 class="text-white mb-4 name" data-aos="fade-left" data-aos-delay="200">Blockchain</h2>
<div class="bio pr-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-left" data-aos-delay="300">Web Designer</span> -->
<p class="mb-4" data-aos="fade-left" data-aos-delay="400">Today's most exciting use cases for blockchain technology extend far beyond payments and digital currency. With the advent of "smart contracts" and turing-complete frameworks, blockchain technology has evolved far beyond just bitcoins. It is time to join the Web 3.0 revolution!</p>
</div>
</div>
</div>
<div class="row align-items-center speaker">
<div class="col-lg-6 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="100">
<!-- <img src="images/person_3.jpg" alt="Image" class="img-fluid"> -->
</div>
<div class="col-lg-6 ml-auto">
<h2 class="text-white mb-4 name" data-aos="fade-right" data-aos-delay="200">Internet of Things</h2>
<div class="bio pl-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-right" data-aos-delay="300">Web Designer</span> -->
<p class="mb-4" data-aos="fade-right" data-aos-delay="400">A world of devices connected by internet opens up opportunities for us that were previously unthinkable. Innovative apps can be built that can allow devices to share data and take intelligent decisions.</p>
</div>
</div>
</div>
<div class="row align-items-center speaker">
<div class="col-lg-6 mb-5 mb-lg-0 order-lg-2" data-aos="fade" data-aos-delay="100">
<!-- <img src="images/person_4.jpg" alt="Image" class="img-fluid"> -->
</div>
<div class="col-lg-6 ml-auto order-lg-1">
<h2 class="text-white mb-4 name" data-aos="fade-left" data-aos-delay="200">Machine Learning</h2>
<div class="bio pr-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-left" data-aos-delay="300">Web Designer</span> -->
<p class="mb-4" data-aos="fade-left" data-aos-delay="400">Are you fascinated by how Netflix recommends the movies you’ll like? Have you wondered what is the Google algorithm that shows you such accurate search results? Machine Learning is behind these innovations. It represents a key evolution in the fields of computer science, data analysis, software engineering, and artificial intelligence.</p>
</div>
</div>
</div>
<div class="row align-items-center speaker">
<div class="col-lg-6 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="100">
<!-- <img src="images/person_3.jpg" alt="Image" class="img-fluid"> -->
</div>
<div class="col-lg-6 ml-auto">
<h2 class="text-white mb-4 name" data-aos="fade-right" data-aos-delay="200">Healthcare</h2>
<div class="bio pl-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-right" data-aos-delay="300">Web Designer</span> -->
<p class="mb-4" data-aos="fade-right" data-aos-delay="400">None of us need to search far for a friend or family member impacted by sickness or injury. At our most vulnerable moments, we are confronted with a healthcare system woefully incapable of meeting the current demands. We are calling on all hackers and sponsors to innovate for a healthier future.</p>
</div>
</div>
</div>
<div class="row align-items-center speaker">
<div class="col-lg-6 mb-5 mb-lg-0 order-lg-2" data-aos="fade" data-aos-delay="100">
<!-- <img src="images/person_4.jpg" alt="Image" class="img-fluid"> -->
</div>
<div class="col-lg-6 ml-auto order-lg-1">
<h2 class="text-white mb-4 name" data-aos="fade-left" data-aos-delay="200">Fintech</h2>
<div class="bio pr-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-left" data-aos-delay="300">Web Designer</span> -->
<p class="mb-4" data-aos="fade-left" data-aos-delay="400">The financial services industry is facing a wave of digital disruption that is starting to reshape the sector. This industry is currently the second-biggest target for disruption, after health care.</p>
</div>
</div>
</div>
<div class="row align-items-center speaker">
<div class="col-lg-6 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="100">
<!-- <img src="images/person_3.jpg" alt="Image" class="img-fluid"> -->
</div>
<div class="col-lg-6 ml-auto">
<h2 class="text-white mb-4 name" data-aos="fade-right" data-aos-delay="200">Future Mobility</h2>
<div class="bio pl-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-right" data-aos-delay="300">Web Designer</span> -->
<p class="mb-4" data-aos="fade-right" data-aos-delay="400">From self driving cars to smart cities software and sensor technology is changing the way we move around. Hate traffic? We too. Hate pollution? Same. Hate finding a parking spot? Yep. Join the Future Mobility track and solve these problems.</p>
</div>
</div>
</div>
<div class="row align-items-center speaker">
<div class="col-lg-6 mb-5 mb-lg-0 order-lg-2" data-aos="fade" data-aos-delay="100">
<!-- <img src="images/person_4.jpg" alt="Image" class="img-fluid"> -->
</div>
<div class="col-lg-6 ml-auto order-lg-1">
<h2 class="text-white mb-4 name" data-aos="fade-left" data-aos-delay="200">AR/VR</h2>
<div class="bio pr-lg-5">
<!-- <span class="text-uppercase text-primary d-block mb-3" data-aos="fade-left" data-aos-delay="300">Web Designer</span> -->
<p class="mb-4" data-aos="fade-left" data-aos-delay="400">VR and AR is the extension of our minds, and is meant for those interested in building immersive, engaging experiences for real industry applications. From fashion and sports to data visualisation and engineering to education and healthcare, every sector will be impacted by the rise of VR & AR.</p>
</div>
</div>
</div>
</div>
</div>
<div class="site-section" id="sponsor">
<div class="container">
<div class="row mb-5">
<div class="col-lg-4 ">
<div class="site-section-heading" data-aos="fade-up">
<h2>Sponsors</h2>
</div>
</div>
<!--<div class="col-lg-6 mt-5 pl-lg-5" data-aos="fade-up" data-aos-delay="100">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus error deleniti dolores necessitatibus eligendi. Nesciunt repellendus ab voluptatibus.</p>
</div>-->
</div>
<!-- <div class="row align-items-stretch program">
<div class="col-12 border-top border-bottom py-5" data-aos="fade" data-aos-delay="200">
<div class="row align-items-stretch">
<div class="col-md-3 text-white mb-3 mb-md-0"><span class="h4"><h3><b>Platinum <br>Sponsor</b></h3></span> </div>
<div class="col-md-9">
</div>
</div>
</div>
<div class="col-12 border-top border-bottom py-5" data-aos="fade" data-aos-delay="200">
<div class="row align-items-stretch">
<div class="col-md-3 text-white mb-3 mb-md-0"><span class="h4"><h3><b>Gold <br>Sponsors</b></h3></span> </div>
<div class="col-md-9">
<a class="" href="https://github.com/"><img class="myimg"
src="hackNSUT/images/GitHub_Logo.png"
alt="sponsor" style="height:90%;background-color: white;width: 40%;padding: 1rem;
margin: 1%;
float: left;"></a>
</div>
</div>
<div class="row align-items-stretch">
<div class="col-md-3 text-white mb-3 mb-md-0"></div>
<div class="col-md-4" style="margin-left: 1rem">
<a class="" href="https://github.com/"><img class="myimg2"
src="hackNSUT/images/GitHub_Logo.png"
alt="sponsor" style="height:90%;margin-left: 18px;margin-top: 5px;background-color: white;padding: 1rem"></a>
</div>
</div>
</div>
<div class="col-12 border-top border-bottom py-5" data-aos="fade" data-aos-delay="200">
<div class="row align-items-stretch">
<div class="col-md-3 text-white mb-3 mb-md-0"><span class="h4"><h3><b>Silver <br>Sponsor</b></h3></span> </div>
<div class="col-md-9">
<a class="" href="https://matic.network/"><img class="myimg3"
src="hackNSUT/images/codingblocks.png"
alt="sponsor" style="height:90%;width: 35%;margin:1%;background-color: white;padding: 1rem"></a>
</div>
</div>
</div>
</div> -->
<!-- <div class="col-lg-5" style="background-color: khaki">
<a class="" href="https://devfolio.co/"><img src="https://d33wubrfki0l68.cloudfront.net/d8b32bfa2344a602354f9c321849652d09bb6d63/6a067/assets/img/sponsors/logo-devfolio.svg" alt="sponsor"></a>
</div>
<div class="col-lg-5" style="background-color: white; float:right" >
<div class="col-lg-5" style="background-color: khaki">
<a class="" href="https://devfolio.co/"><img src="https://d33wubrfki0l68.cloudfront.net/d8b32bfa2344a602354f9c321849652d09bb6d63/6a067/assets/img/sponsors/logo-devfolio.svg" alt="sponsor"></a>
</div>
<div class="single" style="display:inline-block">
<a class="" href="https://devfolio.co/"><img src="https://d33wubrfki0l68.cloudfront.net/d8b32bfa2344a602354f9c321849652d09bb6d63/6a067/assets/img/sponsors/logo-devfolio.svg" alt="sponsor"></a>
</div>-->
<!-- <br>
<h1 style="text-align: center">Our Partners</h1>
<br> -->
<div class="row mb-5" style="background-color: white">
<div class="d-flex justify-content-center bd-highlight flex-wrap">
<div class="single">
<a class="" href="https://qainfotech.com/"><img class="myimg"
src="hackNSUT/images/qa.png"
alt="sponsor" style="height:90%;width:110%; float:left; background-color: white;"></a>
</div>
<div class="single">
<a class="" href="https://devfolio.co/"><img class="myimg"
src="https://d33wubrfki0l68.cloudfront.net/d8b32bfa2344a602354f9c321849652d09bb6d63/6a067/assets/img/sponsors/logo-devfolio.svg"
alt="sponsor" style="height:90%;width:110%; float:left; background-color: white;"></a>
</div>
<div class="single">
<a class="" href="https://matic.network/"><img class="myimg3"
src="https://d33wubrfki0l68.cloudfront.net/fea58bd42f834625b5a9dca3f073043282ac1127/6e1f8/assets/img/sponsors/matic.png"
alt="sponsor" style="height:90%;background-color: white;float:left; width: 90%;padding: 1rem;
margin: 1%;
float: left;"></a>
</div>
<div class="single">
<a class="" href=""><img style="width:200px; margin-top:30px"
src="assets/images/zeit-black-full-logo.png"
alt="sponsor" ></a>
</div>
<div class="single">
<a class="" href="https://www.wolframalpha.com/"><img style="width:200px; margin-top:30px"
src="hacknsut/images/wolfram.png"
alt="sponsor" ></a>
</div>
<div class="single">
<a class="" href="https://balsamiq.com/"><img style="width:200px; margin-top:30px"
src="hacknsut/images/balsamiq.png"
alt="sponsor" ></a>
</div>
<div class="single">
<a class="" href="https://www.bugsee.com/"><img
src="hacknsut/images/bugsee.png"
alt="sponsor" ></a>
</div>
<div class="single">
<a class="" href="https://dev.to/" ><img src="hacknsut/images/devBig.png" style="width:120px" alt="sponsor" ></a>
</div>
<div class="single">
<a class="" ><img style="width:250px"
src="hacknsut/images/CreativeTim.png"
alt="sponsor" ></a>
</div>
<div class="single">
<a class=""><img style="width:200px; margin-top:30px"
src="hacknsut/images/temboo.png"
alt="sponsor" ></a>
</div>
<div class="single">
<a class="" href="http://www.girlscript.tech/"><img
src="hacknsut/images/girlscript.png"
alt="sponsor" ></a>
</div>
<div class="single">
<a class="" href="http://bit.ly/2SrWE82"><img
src="hacknsut/images/ChallengeRocket.png"
alt="sponsor"></a>
</div>
<div class="single">
<a class="" href="https://cloudsploit.com/"><img src="hacknsut/images/cloud.png"
alt="sponsor"></a>
</div>
<div class="single d-flex justify-content-center" style="align-content:center">
<a class="" href="https://www.invisionapp.com/about" style="align:center"><img src="hacknsut/images/invision.png"
alt="sponsor" ></a>
</div>
<div class="single">
<a class="" href="https://www.elastic.co"><img src="assets/images/elastic-logo-H-full color.jpg" style="width:200px"
alt="sponsor"></a>
</div>
</div>
</div>
<div class="frame5-text" style="text-align:center">
Interested in making 'hackNSUT' a huge success.<br>
Come join us by sponsoring us. Check the <a
href="https://drive.google.com/file/d/19VOR0XfqZ_kypChiDn37bDfSwl8gJ2ek/view?usp=sharing"
target="__blank">Sponsorship Brochure</a> for more details.
</div>
<div class="row" data-aos="fade-up" data-aos-delay="500">
<div class="col-12 text-center pt-5">
<a href="https://goo.gl/forms/tAP1zmYwLl11kNNJ2" class="btn-custom" data-aos="fade-up" data-aos-delay="800"><span>Be a Sponsor</span></a>
</div>
</div>
</div>
</div>
<!--<div class="site-section">
<div class="container">
<div class="row mb-5">
<div class="col-lg-4">
<div class="site-section-heading" data-aos="fade-up">
<h2>News</h2>
</div>
</div>
<div class="col-lg-6 mt-5 pl-lg-5" data-aos="fade-up" data-aos-delay="100">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus error deleniti dolores necessitatibus eligendi. Nesciunt repellendus ab voluptatibus.</p>
</div>
</div>
<div class="row mb-5">
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0 blog-entry" data-aos="fade-up" data-aos-delay="200">
<a href="#" class="d-block mb-4">
<img src="hacknsut/images/person_1.jpg" alt="Image" class="img-fluid">
</a>
<h2 class="mb-4"><a href="#">Design your open source strategy</a></h2>
<div class="mb-4 post-meta d-flex align-items-center">
<div class="mr-2"><img src="hacknsut/images/person_1.jpg" alt="Image" class="img-fluid"></div>
<div><span>By <a href="#">Emely Peters</a></span> — <span>Sep. 10, 2019</span></div>
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus error deleniti dolores necessitatibus eligendi. Nesciunt repellendus ab voluptatibus.
</div>
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0 blog-entry" data-aos="fade-up" data-aos-delay="300">
<a href="#" class="d-block mb-4">
<img src="hacknsut/images/person_1.jpg" alt="Image" class="img-fluid">
</a>
<h2 class="mb-4"><a href="#">Design your open source strategy</a></h2>
<div class="mb-4 post-meta d-flex align-items-center">
<div class="mr-2"><img src="hacknsut/images/person_1.jpg" alt="Image" class="img-fluid"></div>
<div><span>By <a href="#">Emely Peters</a></span> — <span>Sep. 10, 2019</span></div>
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus error deleniti dolores necessitatibus eligendi. Nesciunt repellendus ab voluptatibus.
</div>
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0 blog-entry" data-aos="fade-up" data-aos-delay="400">
<a href="#" class="d-block mb-4">
<img src="hacknsut/images/person_1.jpg" alt="Image" class="img-fluid">
</a>
<h2 class="mb-4"><a href="#">Design your open source strategy</a></h2>
<div class="mb-4 post-meta d-flex align-items-center">
<div class="mr-2"><img src="hacknsut/images/person_1.jpg" alt="Image" class="img-fluid"></div>
<div><span>By <a href="#">Emely Peters</a></span> — <span>Sep. 10, 2019</span></div>
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus error deleniti dolores necessitatibus eligendi. Nesciunt repellendus ab voluptatibus.
</div>
</div>
<div class="row" data-aos="fade-up" data-aos-delay="500">
<div class="col-12 text-center">
<a href="#" class="btn-custom" data-aos="fade-up" data-aos-delay="400"><span>More Blog Posts</span></a>
</div>
</div>
</div>
</div>-->
<div class="site-section" id="faq">
<div class="container" >
<div class="row mb-5">
<div class="col-lg-4">
<div class="site-section-heading" data-aos="fade-up">
<h2>FAQ</h2>
</div>
</div>
<!--<div class="col-lg-6 mt-5 pl-lg-5" data-aos="fade-up" data-aos-delay="100">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus error deleniti dolores necessitatibus eligendi. Nesciunt repellendus ab voluptatibus.</p>
</div>-->
</div>
<section class="cd-faq">
<div class="cd-faq-items">
<ul id="basics" class="cd-faq-group">
<li>
<a class="cd-faq-trigger" href="#0">Is this hackathon an online event or offline?</a>
<div class="cd-faq-content">
<p>hackNSUT is an offline event and as a participant you need to be present at NSUT campus.</p>
</div> <!-- cd-faq-content -->
</li>
<li>
<a class="cd-faq-trigger" href="#0">How is your event promoting diversity?</a>
<div class="cd-faq-content">
<p>We have special prizes for an all girls team.</p>
</div> <!-- cd-faq-content -->
</li>
<li>
<a class="cd-faq-trigger" href="#0">Participation fee?</a>
<div class="cd-faq-content">
<p>Zero. Zip. Zilch. Nada. Nothing. Thanks to our sponsors.
</div> <!-- cd-faq-content -->
</li>
<li>
<a class="cd-faq-trigger" href="#0">Will there be food arrangement?</a>
<div class="cd-faq-content">
<p>Yes. Sure. Sí. हाँ. Absolutely.You will be provided with proper meals. Thanks to our sponsors.</p>
</div> <!-- cd-faq-content -->
</li>
<li>
<a class="cd-faq-trigger" href="#0">Are there any rules?</a>
<div class="cd-faq-content">
<p>There are as such no particular rules to be followed. But all the participants do need to follow a <a href="https://devfolio.co/code-of-conduct" target="_blank">code of conduct</a>.</p>
</div> <!-- cd-faq-content -->
</li>
<li>
<a class="cd-faq-trigger" href="#0">How big can a team be?</a>
<div class="cd-faq-content">
<p>You can form teams of up to 4 people. Most teams aim to have a mix of people with both design and developer skills.</p>
</div> <!-- cd-faq-content -->
</li>
<li>
<a class="cd-faq-trigger" href="#0">What should I do if I do not have any team yet?</a>
<div class="cd-faq-content">
<p>Just fill out the application form and we will match you with the best team possible during Pre-hackathon meeting</p>
</div> <!-- cd-faq-content -->
</li>
<li>
<a class="cd-faq-trigger" href="#0">What are the Perks and Benefits of Participating in this
Hackathon?</a>
<div class="cd-faq-content">
<p>Hackathon Provide hands on experience with the experts from different field working on the Projects
like Blockchain, AI, Machine Learning, etc. This will help to give a head start if any one want to
make project on the field. Along with that the participant will be provided with cool swags, stickers
and refreshments to keep them up.</p>
</div> <!-- cd-faq-content -->
</li>
<li>
<a class="cd-faq-trigger" href="#0">How to reach NSUT for the event?</a>
<div class="cd-faq-content">
<p>The nearest airport station is Indira Gandhi International Airport (New Delhi). <br>
The nearest metro station is Dwarka Mor. One can also take DTC bus no-764,727 which leads to main gate
of NSUT campus.
</p>
</div> <!-- cd-faq-content -->
</li>
<li>
<a class="cd-faq-trigger" href="#0">I have a question related to hackathon which is not listed above. What
should I do?</a>
<div class="cd-faq-content">
<p>Feel free to reach us out.
You can drop a message on facebook, twitter or just drop an email at ieeehacknsut@gmail.com</p>
</div> <!-- cd-faq-content -->
</li>
</ul> <!-- cd-faq-group -->
</div>
</section>
</div>
</div>
<div class="container" >
<div class="row mb-5">
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="100">
<div class="site-section-heading">
<h2>Gallery</h2>
</div>
</div>
<!-- <div class="col-lg-5 mt-5 pl-lg-5" data-aos="fade-up" data-aos-delay="200">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus error deleniti dolores necessitatibus eligendi. Nesciunt repellendus ab voluptatibus. Minima architecto impedit eaque molestiae dicta quam. Cum ducimus. Culpa distinctio aperiam</p>
</div> -->
</div>
</div>
<section id="gallery">
<div id="main">
<section id="content">
<div id="gallery_img">
<div id="image"></div>
<img src="hackNSUT/images/icons/close.png" id="lefty">
<img src="hackNSUT/images/icons/right.png" id="righty">
<img src="hackNSUT/images/icons/play.png" id="play">
<img src="hackNSUT/images/icons/pause.png" id="pause">
<img src="hackNSUT/images/icons/expand.png" id="expand">
</div>
<div id="thumbs">
<div class="thumbs_style"> <img src="hackNSUT/images/thumbs/a.jpeg"> </div>
<div class="thumbs_style"> <img src="hackNSUT/images/thumbs/b.jpeg"> </div>
<div class="thumbs_style"> <img src="hackNSUT/images/thumbs/c.jpeg"> </div>
<div class="thumbs_style"> <img src="hackNSUT/images/thumbs/d.jpeg"> </div>
<div class="thumbs_style"> <img src="hackNSUT/images/thumbs/e.jpeg"> </div>
<div class="thumbs_style"> <img src="hackNSUT/images/thumbs/f.jpeg"> </div>
<div class="thumbs_style"> <img src="hackNSUT/images/thumbs/g.jpeg"> </div>
<div class="thumbs_style"> <img src="hackNSUT/images/thumbs/h.jpeg"> </div>
<div class="thumbs_style"> <img src="hackNSUT/images/thumbs/i.jpeg"> </div>
<div class="thumbs_style"> <img src="hackNSUT/images/thumbs/j.jpeg"> </div>
</div>
</section>
</div>
</section>
<footer class="site-footer">
<div class="container" id="contact">
<div class="row mb-1">
<div class="col-md-6">
<h2 class="footer-heading text-uppercase mb-4">About Event</h2>
<p>hackNSUT aims to build an environment of collaborative growth amongst all the participants regardless of
their gender, caste, creed, sexual preference, socioeconomic background or cultural belief. hackNSUT is open
to everyone with a crazy idea and a will to implement it into a working prototype.</p>
</div>
<div class="col-md-4">
<h2 class="footer-heading text-uppercase mb-4">Connect with Us</h2>
<p>
<a href="https://www.facebook.com/hacknsut" class="p-2 pl-0"><span class="icon-facebook"></span></a>
<a href="https://twitter.com/hacknsut" class="p-2"><span class="icon-twitter"></span></a>
<!-- <a href="#" class="p-2"><span class="icon-youtube"></span></a> -->
<a href="https://www.instagram.com/hacknsut/" class="p-2"><span class="icon-instagram"></span></a>
</p>
<p>KARTIK - 9871304599</p>
<p>MRIDUL - 9034451260</p>
<p>ANISH - 8587054236</p>
</div>
</div>
</div>
</footer>
</div>
<script src="hacknsut/js/jquery-3.3.1.min.js"></script>
<script src="hacknsut/js/jquery-migrate-3.0.1.min.js"></script>
<script src="hacknsut/js/jquery-ui.js"></script>
<script src="hacknsut/js/popper.min.js"></script>
<script src="hacknsut/js/bootstrap.min.js"></script>
<script src="hacknsut/js/owl.carousel.min.js"></script>
<script src="hacknsut/js/jquery.stellar.min.js"></script>
<script src="hacknsut/js/jquery.countdown.min.js"></script>
<script src="hacknsut/js/jquery.magnific-popup.min.js"></script>
<script src="hacknsut/js/bootstrap-datepicker.min.js"></script>
<script src="hacknsut/js/aos.js"></script>
<script src="hacknsut/js/jquery.nicescroll.min.js"></script>
<!--<script src="hacknsut/js/gallery.js"></script>-->
<script src="hacknsut/js/main.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('.carousel').carousel();
});
document.addEventListener('DOMContentLoaded', function () {
let devfolioOptions = {
buttonSelector: '#devfolio-apply-now',
key: 'hacknsut',
}
let script = document.createElement('script');
script.src = "https://apply.devfolio.co";
document.head.append(script);
script.onload = function () {
new Devfolio(devfolioOptions);
}
// document.getElementById("devfolio-apply-now").textContent = "Register Now";
// console.log(document.getElementById("devfolio-apply-now").textContent, document.getElementById("text"));
// script.on
script.onerror = function () {
document.querySelector(devfolioOptions.buttonSelector).addEventListener('click', function () {
// window.open('https://devfolio.co/external-apply/', '_blank')
window.location.href = 'https://devfolio.co/external-apply/' + devfolioOptions.key;
});
}
});
</script>
</body>
</html>