-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
1273 lines (1156 loc) · 76.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head lang="en">
<title>HackVSIT - 2020</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"/>
<meta name="description" content="ACE - The Technical Society of VSIT, VIPS presents the third edition of HackVSIT under the CSI-National Student Convention. We at VIPS believe in encouraging the growing talent and by HackVSIT we bring together people with different outlook and solutions for already existing problem using technology and design.
For 24 hours, you will work together in your teams to envision and develop the technology of tomorrow for solving the problems of today.">
<meta name="keywords" content="Hackathon, ideas, startup, hackathon events, hackathon projects, start up, hacker, hacking, startup leadership program, coding challenge, what is hackathon, hackathon meaning, Facebook hackathon, google hackathon, coding events, Hackathon, HackVSIT, Hack@VSIT, HackVIPS, VIPS, hacksociety, dottech, vivekananda institute of professional studies, Pitampura, CSI, ACE, ACE - CSI, ACE - Association of Computer Enthusiasts, Association of Computer Enthusiasts, NSC, National Student Convention, Hacked, HackVSIT 2018, 2018, 2019, HackVSIT 2019, Hack-vsit.tech, srijitcoder, sameer, ashish, appy, srijit s madhavan, sam, ashish pahwa, sameer kumar, anukriti, Khushi, Aayush, Rohan,Kamal Nanda, kamal nanda, aditya dhawan, xd, ACE, vipsace, vipsace.org, srijit, hacked, fest, technical, cultural, technology, design, oyo rooms, aws, digital ocean, NSC 2018, NSC 2K19">
<meta name="robots" content="index,follow">
<link rel="icon" type="image/png" href="img/fav_icon-01.jpg">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<!-- custom style -->
<link rel="stylesheet" href="css/pattern.css">
<link rel="stylesheet" href="css/timeline.css">
<link rel="stylesheet" href="css/main.min.css?v1">
<!-- for Facebook -->
<meta property="og:title" content="HackVSIT - 2020 | Powered by ACE - The Technical Society of VSIT,VIPS"/>
<meta property="og:type" content="website"/>
<meta property="og:image" content="https://hack-vsit.tech/img/cover.jpg"/>
<meta property="og:image:width" content="470"/>
<meta property="og:image:height" content="250"/>
<meta property="og:image:type" content="image/png"/>
<meta property="og:url" content="https://hack-vsit.tech/"/>
<meta property="og:description" content="ACE - The Technical Society of VSIT, VIPS presents the third edition of HackVSIT. We at VIPS believe in encouraging the growing talent and by HackVSIT we bring together people with different outlook and solutions for already existing problem using technology and design.
For 24 hours, you will work together in your teams to envision and develop the technology of tomorrow for solving the problems of today."/>
<!-- for Twitter -->
<meta name="twitter:card" content="ACE - The Technical Society of VSIT, VIPS presents the third edition of HackVSIT under the CSI-National Student Convention.">
<meta name="twitter:site" content="@VIPS_ACE">
<meta name="twitter:title" content="HackVSIT - 2020 | Powered by ACE - The Technical Society of VSIT, VIPS">
<meta name="twitter:description" content="ACE - The Technical Society of VSIT, VIPS presents the third edition of HackVSIT. We at VIPS believe in encouraging the growing talent and by HackVSIT we bring together people with different outlook and solutions for already existing problem using technology and design. For 24 hours, you will work together in your teams to envision and develop the technology of tomorrow for solving the problems of today.">
<meta name="twitter:image" content="https://hack-vsit.tech/img/cover.jpg">
<meta name="twitter:image:width" content="512"/>
<meta name="twitter:image:height" content="512"/>
</head>
<body>
<lines>
<div class="wrap"></div>
<div class="wrap"></div>
<div class="wrap"></div>
<div class="wrap"></div>
<div class="wrap"></div>
</lines>
<content>
<div class="header">
<div class="shape shape-1">
<img src="img/blue/blueShape1.png">
</div>
<div class="shape shape-2">
<img src="img/blue/blueShape2.png" class="rellax" data-rellax-speed="-5">
</div>
<div class="shape shape-10">
<img src="img/blue/tech2.png" class="rellax" data-rellax-speed="-5">
</div>
<div class="shape shape-11">
<img src="img/blue/tech1.png" class="rellax" data-rellax-speed="-5">
</div>
</div>
<div class="main">
<div class="main-cent animated fadeInDown">
<img src="img/logo-2020.png" class="logo" alt="">
<br>
<p class="power" href="#sponsors">31<sup>st</sup> January - 01<sup>st</sup> February 2020</p>
<br>
<!-- <a href="#"><button>REGISTRATION OPENING SOON</button></a> -->
<button id="devfolio-apply-now" style="text-transform: none;"><svg class="logo" xmlns="http://www.w3.org/2000/svg" fill="#fff"viewBox="0 0 115.46 123.46" style="height:24px;width:24px;margin-right:8px"><path d="M115.46 68a55.43 55.43 0 0 1-50.85 55.11S28.12 124 16 123a12.6 12.6 0 0 1-10.09-7.5 15.85 15.85 0 0 0 5.36 1.5c4 .34 10.72.51 20.13.51 13.82 0 28.84-.38 29-.38h.26a60.14 60.14 0 0 0 54.72-52.47c.05 1.05.08 2.18.08 3.34z" /><path d="M110.93 55.87A55.43 55.43 0 0 1 60.08 111s-36.48.92-48.58-.12C5 110.29.15 104.22 0 97.52l.2-83.84C.38 7 5.26.94 11.76.41c12.11-1 48.59.12 48.59.12a55.41 55.41 0 0 1 50.58 55.34z"/></svg>Apply with Devfolio</button>
</div>
</div>
<div class="main-wrap">
<div class="content rellax" data-rellax-speed="-4" data-rellax-percentage="0.5">
<h1 style="background: linear-gradient(0deg, #145DBB,#28B9EE);background-clip: border-box;background-clip: border-box;-webkit-background-clip: text;-webkit-text-fill-color: transparent;">24.</h1>
<div class="head">
<p>HOURS</p>
<div class="line"></div>
</div>
<div class="text">
ACE - The Technical Society of VSIT, VIPS presents the third edition of HackVSIT under the banner of CSI - Students' Convention 2020. We at VIPS believe in encouraging the growing talent and by HackVSIT we bring together, people with different outlook and solutions for already existing problems using technology and design.
For 24 hours, you will work together with your teams to envision and develop the technology of tomorrow for solving the problems of today.
<br><br>
Some facts and numbers about HackVSIT:<br>
<i class="fa fa-dot-circle-o" style="margin-left: 20px;"></i> Over 1500 students registered for HackVSIT 2019 and 250 were shortlisted.<br>
<i class="fa fa-dot-circle-o" style="margin-left: 20px;"></i> Prizes worth 1 Lakh were distributed.<br>
<i class="fa fa-dot-circle-o" style="margin-left: 20px;"></i> Over 25+ brand sponsors helped us make our event a great success.<br><br>
<a href="http://bit.ly/hackathon-hackvsit" target="_blank">Know more about hackathons</a>
</div>
<div>
<ul class="timeline">
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">DAY 1</span>
</div>
</div>
</li>
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">Registration</span>
<span class="time-wrapper"><span class="time">9AM - 10AM</span></span>
</div>
<div class="desc">This site requires two factor authentication : college ID & invitation email.</div>
</div>
</li>
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">Inauguration Ceremony</span>
<span class="time-wrapper"><span class="time">10AM</span></span>
</div>
<div class="desc">Opening speech, Mentor and Judges introduction, general instructions.</div>
</div>
</li>
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">Hack Begins</span>
<span class="time-wrapper"><span class="time">11AM</span></span>
</div>
<div class="desc">First solve the problem. Then, write the code.</div>
</div>
</li>
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">Lunch</span>
<span class="time-wrapper"><span class="time">2PM</span></span>
</div>
<div class="desc">Tag a food lover :P.</div>
</div>
</li>
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">1st Sprint</span>
<span class="time-wrapper"><span class="time">5PM</span></span>
</div>
<div class="desc">1st Sprint activity</div>
</div>
</li>
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">Evening Snacks</span>
<span class="time-wrapper"><span class="time">6PM</span></span>
</div>
<div class="desc">I do it for the cookies!</div>
</div>
</li>
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">Mentor Session - Idea Validation</span>
<span class="time-wrapper"><span class="time">8PM</span></span>
</div>
<div class="desc">How about calling it a requirements festival?</div>
</div>
</li>
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">Dinner</span>
<span class="time-wrapper"><span class="time">10PM</span></span>
</div>
<div class="desc">There is no “we” in food.</div>
</div>
</li>
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">DAY 2
</div>
</div>
</li>
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">Midnight Snacks</span>
<span class="time-wrapper"><span class="time">2AM</span></span>
</div>
<div class="desc">Such snacks, much wow.</div>
</div>
</li>
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">Breakfast</span>
<span class="time-wrapper"><span class="time">8:30AM</span></span>
</div>
<div class="desc">More food? I don’t mind.</div>
</div>
</li>
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">Hack Ends - Final Evaluation Begins</span>
<span class="time-wrapper"><span class="time">9AM</span></span>
</div>
<div class="desc">Release your hack :D</div>
</div>
</li>
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">Declaration of selected teams</span>
<span class="time-wrapper"><span class="time">10AM</span></span>
</div>
<div class="desc">Don't worry, we won't keep you waiting.</div>
</div>
</li>
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">Final Round (Presentation)</span>
<span class="time-wrapper"><span class="time">10:15AM</span></span>
</div>
<div class="desc">Time to rock ! May the code be with you!</div>
</div>
</li>
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">Result and Prize Distribution</span>
<span class="time-wrapper"><span class="time">11:15AM</span></span>
</div>
<div class="desc">Congrats! You all made it to the end.</div>
</div>
</li>
</ul>
</div>
</div>
<div class="title">ABOUT</div>
<div class="juggad">
CODE WITH <span>JUGAAD</span> <div class="line"></div>
</div>
<div class="shape shape-5 rellax" data-rellax-speed="5" data-rellax-percentage="0.5">
<img src="img/blue/blueShapeSide2.png">
</div>
</div>
<div class="main-wrap">
<!--<div class="content rellax" data-rellax-speed="-4" data-rellax-percentage="0.5">-->
<div class="content">
<h1 id="tracks" style="background: linear-gradient(0deg, #145DBB,#28B9EE);background-clip: border-box;background-clip: border-box;-webkit-background-clip: text;-webkit-text-fill-color: transparent;"> 2 </h1>
<div class="head">
<p>SPRINTS</p>
<div class="line"></div>
</div>
<div class="text">
To make HackVSIT even more fun, we are introducing Sprints this year.<br>
Sprints will be separate mini competitions/activities that the participants can participate in, to relax and enjoy some fun mind exercises.<br>
Each sprint will feature task(s) related to a particular skill-set and points will be awarded to each participant based on the completion of these task(s).<br>
The winner would be awarded a cash prize and swags from a variety of collection.<br>
<br>
NOTE: Sprints are optional and separate mini events that will not affect the judgement of a participant in HackVSIT.
</div>
</div>
<div class="title">SPRINTS</div>
<div class="shape shape-4 rellax" data-rellax-speed="5" data-rellax-percentage="0.5">
<img src="img/blue/blueShapeSide.png">
</div>
</div>
<div class="main-wrap" style="margin-top:100px;">
<!--<div class="content rellax" data-rellax-speed="-4" data-rellax-percentage="0.5">-->
<div class="content">
<h1 id="tracks" style="background: linear-gradient(0deg, #145DBB,#28B9EE);background-clip: border-box;background-clip: border-box;-webkit-background-clip: text;-webkit-text-fill-color: transparent;"> 4 </h1>
<div class="head">
<p>Themes</p>
<div class="line"></div>
</div>
<div class="track">
<div class="track-wrap">
<h1>Sustainable Development Goals</h1>
<p>
The Sustainable Development Goals (SDGs) are a collection of 17 global goals designed to be a "blueprint to achieve a better and more sustainable future for all.'' The SDGs, set in 2015 by the United Nations General Assembly and intended to be achieved by the year 2030, are part of UN Resolution 70/1, the 2030 Agenda. We have divided them into 5 groups for a better understanding of the goals as a big problem statement for our participants.
<br>You can choose to cater to one or more of the 17 SDGs with your solution/product in HackVSIT.
</p>
</div>
<div class="track-wrap">
<h1>Animal Welfare</h1>
<p>
Global Wildlife population has dropped by over 60 percent since the 1970s. According to a report published by the World Wildlife Fund, ‘Earth is losing biodiversity at a rate seen only during mass extinctions.’ Around 93 percent of wild cats have been lost in the past half-century, 100 million sharks and 85 thousand elephants are killed every year for illegal supply in the animal trade market. Talking about the present scenario, more than 500 million animals lost their lives in the Australian wildfires. And, these numbers are still increasing day by day. If this trend continues, the earth would lose all of its wildlife in a very short time.
</p>
</div>
<div class="track-wrap">
<h1>Women Safety</h1>
<p>
Among the worst countries in crime, India has a heinous track record in all forms of sexual abuse. In homes, on streets, in public transports and even offices. Indian women are in a perpetual plight of alertness, like a country on terrorist alert. There have been freakish cases of rapes of toddlers, gang rapes and women trafficking. Women's safety involves strategies, practices, and policies which aim to reduce gender-based violence (or violence against women), including women's fear of crime. Are there any innovative and implementable objectives, through which we can build an effective, fast and reliant system to make women of India feel safe and empowered?
</p>
</div>
<div class="track-wrap">
<h1>Open Innovation</h1>
<p>
Open Innovation is the use of internal and other companies' ideas to develop new businesses. It is a co-creative process that requires excellent innovation capability including rich connectivity of people in their roles within the community. Users, all with different knowledge, skills, experiences, roles, points of view and needs, can contribute positively to the innovation process. Ideas do not come when we are bound to think, they come when we are free to think. Open innovation offers the most appropriate platform for creativity. It does not bind the hands of a developer but gives them a wide platform to use their creativity to the fullest and make innovations in already existing ideas.
</p>
</div>
<div style="width:70%;margin:0 40px;text-align:center;">
<a href="./HackVSIT-themes-2020.pdf" style="text-decoration: none;" target="_blank">
<button>Themes & Tracks</button>
</a>
</div>
<!-- <h2 style="width:70%;margin:0 40px;text-align:center;">Special Prizes</h2>
<div class="track-wrap">
<img src="img/sponsors/mlh.png" alt="MLH" style="max-width: 100px;">
<p>
● Best Beginner: best hack by a team made up of at least 50% first-time hackathon attendees.<br>
● Best Jugaad: Silly and innovative, a hack that makes you say "I can't believe that works".<br>
● Best use of Microsoft Azure: Best use of any product in the Microsoft Azure cloud platform.
</p>
</div>
<div class="track-wrap">
<img src="img/sponsors/voiceflow.png" alt="Voiceflow" style="max-width: 100px;">
<p>
</p>
</div>
<div class="track-wrap">
<h1>IoT - Internet of Things</h1>
<p>The Internet of Things or IoT, is a system of interrelated computing devices, mechanical and digital machines, objects, animals or people that are provided with unique identifiers (UIDs) and the ability to transfer data over a network without requiring human-to-human or human-to-computer interaction.<br>It is simply <i>"A network of Internet-connected objects able to collect and exchange data."</i><br>It is also one of the fastest growing industry right now. Can you use this amazing concept and implement something useful or creative?
</p>
</div>
<div class="track-wrap">
<h1>Computer Vision</h1>
<p>Computer vision is the science that aims to give a similar to humans, if not better, ‘seeing’ capabilities to a machine or computer.<br>Computer vision is concerned with the automatic extraction, analysis and understanding of useful information from a single image or a sequence of images. It involves the development of a theoretical and algorithmic basis to achieve automatic visual understanding.<br>There are numerous applications of computer vision, like agriculture, augmented reality, biometrics, character recognition, etc.
</p>
</div> -->
</div>
</div>
<div class="title">TRACKS</div>
<div class="shape shape-4 rellax" data-rellax-speed="5" data-rellax-percentage="0.5">
<img src="img/blue/blueShapeSide.png">
</div>
</div>
<div class="main-wrap">
<div class="content rellax" data-rellax-speed="-4" data-rellax-percentage="0.5">
<h1 class="spons_numb" style="background: linear-gradient(0deg, #145DBB,#28B9EE);background-clip: border-box;background-clip: border-box;-webkit-background-clip: text;-webkit-text-fill-color: transparent;">27.</h1>
<div class="head">
<p>SPONSORS</p>
<div class="line"></div>
</div>
<div class="sponsors">
<!-- <a href="hacksociety.tech" target="_blank"><img src="https://vips-events.in/static/css/img/rsz_hacksociety.png"></a>
<a href="https://balsamiq.com" target="_blank"><img src="https://media.balsamiq.com/files/company/balsamiq-logo-screen.png"></a>
<a href="https://zebronics.com" target="_blank"><img src="https://static.digit.in/default/84c0680cda26471d041d29b64d33971d57b1c205.jpeg"></a>
<a href="www.codechef.com" target="_blank"><img src="https://vips-events.in/static/css/img/code.png"></a>
<a href="https://flock.com/" target="_blank"><img src="img/flock.png"></a>
<a href="https://www.facebook.com/groups/DevCDelhiNCR/" target="_blank"><img src="img/facebook.png" class="fdc"></a>
<a href="https://www.meetup.com/Paytm-Build-for-India" target="_blank"><img src="img/paytm.png"></a>
<a href="https://aws.amazon.com/" target="_blank"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1d/AmazonWebservices_Logo.svg/2000px-AmazonWebservices_Logo.svg.png"></a>
<a href="http://thegrapevine.co.in" target="_blank"><img src="img/Grapevine.png"></a>
<a href="http://www.advantedge.vc/" target="_blank"><img src="https://vips-events.in/static/css/img/rsz_advantedge.png"></a>
<a href="https://uploadcare.com/" target="_blank"><img src="https://vips-events.in/static/css/img/rsz_uploadcare.png"></a>
<a href="https://digitalocean.com" target="_blank"><img src="https://dwa5x7aod66zk.cloudfront.net/assets/pack/logo-digitalocean-3d328c1d6619d314d47aab1259c1235b1339c343e12df62a688076bf6ceac866.jpg"></a>
<a href="http://get.tech/" target="_blank"><img src="https://www.101domain.com/images/flags/large/TECH.png"></a>
<a href="http://jetbrains.com/" target="_blank"><img src="https://vips-events.in/static/css/img/rsz_jetbrains.png"></a>
<a href="#" target="_blank"><img src="https://vips-events.in/static/css/img/rsz_1sfi.jpg"></a>
<a href="https://www.vlccpersonalcare.com/" target="_blank"><img src="https://vips-events.in/static/css/img/rsz_vlcc.jpg"></a>
<a href="#" target="_blank"><img src="https://vips-events.in/static/css/img/waldrof.c94c8a72e3a3.jpg"></a>
<a href="#" target="_blank"><img src="https://vips-events.in/static/css/img/next.png"></a>
<a href="#" target="_blank"><img src="https://vips-events.in/static/css/img/fa.jpeg"></a>
<a href="#" target="_blank"><img src="https://vips-events.in/static/css/img/idk_name.jpg"></a>
<a href="www.aapkatimes.com" target="_blank"><img src="https://vips-events.in/static/css/img/times.jpg"></a>
<a href="#" target="_blank"><img src="img/wm.jpeg"></a> -->
<!-- <a href="https://www.codingninjas.in/" target="_blank"><img src="https://www.codingninjas.in/assets-landing/images/CNLOGO.svg" style="width: 150px;"></a>
<a href="https://www.facebook.com/groups/DevCDelhiNCR/" target="_blank"><img src="img/facebook.png" class="fdc"></a>
<a href="http://hackdelhi.in" target="_blank"><img src="../img/hackdelhi.jpg"></a>
<a href="https://github.com" target="_blank"><img src="https://github.githubassets.com/images/modules/logos_page/GitHub-Logo.png"></a>
<a href="https://mozilla.org" target="_blank"><img src="https://www.underconsideration.com/brandnew/archives/mozilla_2017_logo.png"></a>
<a href="https://novuse.com" target="_blank"><img src="./img/novuse.png"></a>
<a href="http://telio.in/" target="_blank"><img src="./img/telio.png"></a>
<a href="http://aamnews.co.in" target="_blank"><img src="./img/aam.png"></a>
<a href="https://www.wolfram.com" target="_blank"><img src="https://www.raspberrypi.org/magpi/wp-content/uploads/2018/01/wolfram-language-text-logo-copy-1.png"></a>
<a href="https://www.npmjs.com/" target="_blank"><img src="https://github.com/npm/logos/raw/master/npm%20logo/npm-logo-red.png"></a>
<a href="https://fossasia.org" target="_blank"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/FOSSASIA_Logo.svg/400px-FOSSASIA_Logo.svg.png"></a>
<a href="https://balsamiq.com/" target="_blank"><img src="https://media.balsamiq.com/files/company/balsamiq-logo-screen.png"></a>
<a href="http://jetbrains.com/" target="_blank"><img src="https://vips-events.in/static/css/img/rsz_jetbrains.png"></a>
<a href="https://zulipchat.com" target="_blank"><img src="https://avatars0.githubusercontent.com/u/4921959?s=200&v=4"></a>
<a href="http://www.sanmacs.com" target="_blank"><img src="https://www.sanmacs.com/MCA/mca_images2/mca_sanmacslogo.gif"></a>
<a href="https://www.bobble.ai" target="_blank"><img src="https://bobbleapp.asia/images/logo-final.7c541b7e.png"></a> -->
<div class="spon-title p-1">Event Partner</div>
<a href="https://mlh.io/seasons/apac-2020/events?utm_source=apac-hackathon&utm_medium=TrustBadge&utm_campaign=2020-season&utm_content=white" style="margin:0 auto" target="_blank"><img src="img/sponsors/mlh.svg" alt="Major League Hacking" class="fdc" style="margin:0;"></a>
<div class="premium-sponsors">
<div class="spon-title p-1">Premium Sponsor</div>
<a href="https://devfolio.co" target="_blank"><img src="img/sponsors/devfolio.png" class="fdc" style="width:400px;"></a>
</div>
<div class="associate-sponsors">
<div class="spon-title p-1">Associate Sponsors</div>
<a href="http://www.csi-india.org" target="_blank"><img src="img/csi.jpg" alt="CSI"></a>
<a href="https://gatsbyjs.org" target="_blank"><img src="img/sponsors/Gatsby-Monogram.svg" alt="GatsbyJs" /></a>
<a href="https://linode.com" target="_blank"><img src="img/sponsors/linode-L_rsz.png" alt="Linode"></a>
<a href="https://matic.network/" target="_blank"><img src="./img/matic.png" style="width:180px"></a>
<a href="https://bobble.ai/" target="_blank"><img src="img/sponsors/bobble.png" alt="Bobble"></a>
<a href="https://fold.money/" target="_blank"><img src="img/sponsors/Logo Dark Blue.svg" alt="Fold"></a>
<!-- <a href="#"><img src="img/sponsors/dsc.png" alt="DSC VIPS" style="width:180px;"></a> -->
<div class="spon-title p-1">Sustainability Partner</div>
<a href="http://iycn.in/" target="_blank"><img src="img/sponsors/iycn.jpg" alt="IYCN"></a>
<a href="http://www.indiaat75.in/#" target="_blank"><img src="img/sponsors/indiaat75.jpg" alt="India@75"></a>
<a href="https://www.sustainabledevelopment.in/" target="_blank"><img src="img/sponsors/cii-itc.jpg" alt="CII-ITC Centre of Excellence for Sustainable Development"></a>
</div>
<div class="community-sponsors">
<div class="spon-title p-1">Community Sponsors</div>
<a href="https://www.bugsee.com/" target="_blank" ><img src="img/sponsors/bugsee-cropped.png" alt="Bugsee" /></a>
<a href="https://www.wolfram.com" target="_blank"><img src="img/sponsors/wolfram.png"></a>
<a href="https://www.facebook.com/groups/DevCDelhiNCR/" target="_blank"><img src="img/facebook.png" alt="Developer Circles Delhi by Facebook" class="fdc"></a>
<a href="https://www.voiceflow.com/" target="_blank"><img src="img/sponsors/voiceflow.png" alt="Voiceflow India Community"></a>
<a href="https://progate.com" target="_blank"><img src="img/sponsors/progate.png" alt="Progate" style="width:160px;"></a>
<a href="https://www.lestransformations.com/" target="_blank"><img src="img/sponsors/suraasaa.png" alt="Suraasa"></a>
<a href="https://codingblocks.com/" target="_blank"><img src="img/sponsors/cblogo.png" alt="Coding Blocks"></a>
<!-- <span style="display: inline-flex; flex-wrap: wrap; flex-flow: column; justify-content: center; align-items: center;">
Security Partner
</span> -->
<div class="row">
<div class="col">
<div class="spon-title p-1">Knowledge Partner</div>
<a href="#"><img src="img/sponsors/SmartEdgeLogo.jpg" alt="SmartEdge" style="width:180px;"></a>
</div>
<div class="col" style='text-align: center;'>
<div class="spon-title p-1">Security Partner</div>
<a href="https://cloudsploit.com" target="_blank"><img src="img/sponsors/cloudsploit.png" alt="Cloudsploit"></a>
</div>
</div>
</div>
<div class="event-supporters">
<div class="spon-title p-1">Event Supporter</div>
<a href="https://creative-tim.com" target="_blank"><img src="img/sponsors/creative-tim.png" alt="Creative Tim" /></a>
<a href="https://www.strikingly.com/" target="_blank"><img src="img/sponsors/strikingly-new.png" alt="Strikingly"></a>
<a href="https://dev.to" target="_blank"><img src="img/sponsors/dev.to.webp" alt="Dev.to"></a>
<a href="https://hackr.io" target="_blank"><img src="img/sponsors/hackr.io.svg" alt="Hackr.io"></a>
<a href="https://linktr.ee/kdmdelhincr" target="_blank"><img src="img/sponsors/kaggle-days-2.png" alt="Kaggle Days Meetup Delhi NCR"></a>
<a href="https://balsamiq.com" target="_blank"><img src="img/sponsors/balsamiq.svg" alt="Balsamiq"></a>
<a href="https://www.mapmyindia.com/" target="_blank"><img src="img/sponsors/rsz_mmi-logo.png" alt="MapMyIndia"></a>
<!-- </div>
<div class="media-supporters">
<div class="spon-title p-1">Media Partners</div> -->
<a href="https://noteslelo.com" target="_blank"><img src="img/sponsors/noteslelo.png" alt="Noteslelo"></a>
<a href="https://stickeryou.com" target="_blank"><img src="img/sponsors/stickeryou.png" alt="StickerYou.com"></a>
</div>
</div>
</div>
<div class="title">SPONSORS</div>
<div class="collab">
<a href="mailto:csi-sb-ace@vips.edu">COLLAB WITH <span>US</span> <div class="line"></div></a>
</div>
<div class="shape shape-5 rellax" data-rellax-speed="5" data-rellax-percentage="0.5">
<img src="img/blue/blueShapeSide2.png">
</div>
</div>
<div class="main-wrap">
<div class="content rellax" data-rellax-speed="-4" data-rellax-percentage="0.5">
<h1 style="background: linear-gradient(0deg, #145DBB,#28B9EE);background-clip: border-box;background-clip: border-box;-webkit-background-clip: text;-webkit-text-fill-color: transparent;">
10.
</h1>
<div class="head">
<p>FAQs</p>
<div class="line"></div>
</div>
<div class="track">
<div class="track-wrap">
<h1>How big can my team be?</h1>
<p>The maximum team size allowed is 4. </p>
</div>
<div class="track-wrap">
<h1>Can I register individually?</h1>
<p>Yes, but you are required to make a team for the event beforehand.</p>
</div>
<div class="track-wrap">
<h1>When?</h1>
<p>HackVSIT 2020 will be a 24 hours hackathon which will stretch from 31st January to 01st February 2020.</p>
</div>
<div class="track-wrap">
<h1>Where?</h1>
<p>HackVSIT is at Vivekananda Institute of Professional Studies AU- Block (Outer Ring Road), Pitampura, Delhi - 110034.</p>
</div>
<div class="track-wrap">
<h1>Will there be food arrangement?</h1>
<p>Yes. Sure. Sí. हाँ. Absolutely.You will be provided with proper meals. Thanks to our sponsors.</p>
</div>
<div class="track-wrap">
<h1>How much does it cost?</h1>
<p>Zero. Zip. Zilch. Nada. Nothing. Admission to HackVSIT is completely free, thanks to our sponsors.</p>
</div>
<div class="track-wrap">
<h1>What are the criteria of short listing the teams?</h1>
<p>The registered participants will be shortlisted on the basis of their GitHub and LinkedIn profiles.</p>
</div>
<div class="track-wrap">
<h1>What do I bring with me to the event?</h1>
<p>You are required to bring your school/college ID, laptops, phone, chargers. A pillow and sleeping bag may be useful as well.</p>
</div>
<div class="track-wrap">
<h1>What is the eligibility criteria?</h1>
<p>You must be a student from any University/College or Higher Secondary School in India.</p>
</div>
<div class="track-wrap">
<h1>Do you provide Travel reimbursement?</h1>
<p>Top 10 teams (from outside delhi) will be reimbursed a certain amount. We'll keep you posted on our social media handles. Stay tuned!</p>
</div>
</div>
</div>
<div class="title">FAQ</div>
<div class="shape shape-4 rellax" data-rellax-speed="5" data-rellax-percentage="0.5">
<img src="img/blue/blueShapeSide.png">
</div>
</div>
<div class="main-wrap" style="display:none;" >
<!--<div class="content rellax" data-rellax-speed="-4" data-rellax-percentage="0.5">-->
<div class="content">
<h1 style="background: linear-gradient(0deg, #145DBB,#28B9EE);background-clip: border-box;background-clip: border-box;-webkit-background-clip: text;-webkit-text-fill-color: transparent;">-</h1>
<div class="head">
<p>COMMITTEE COMING SOON</p>
<div class="line"></div>
</div>
<!--<div class="track">
<div class="track-wrap">
<h1>CHIEF CONVENER</h1>
<p class="name">Prof. (Dr.) Supriya Madan</p>
<p class="designation">Dean, <br>School of Information Technology, VIPS</p>
</div>
<div class="track-wrap">
<h1>CONVENER</h1>
<p class="name">Prof. (Dr.) Deepali Kamthania</p>
<p class="designation">Professor, <br>School of Information Technology, VIPS</p>
</div>
<div class="track-wrap">
<h1>CO-CONVENER</h1>
<p class="name">Ms. Alpana Sharma</p>
<p class="designation">Assistant Professor, <br>School of Information Technology, VIPS</p>
<p class="name">Ms. Indu Sahu</p>
<p class="designation">Assistant Professor, <br>School of Information Technology, VIPS</p>
</div>
<div class="track-wrap">
<h1>ORGANIZING COMMITTEE</h1>
<p class="name">Ms. Iti Batra</p>
<p class="designation">Assistant Professor, <br>School of Information Technology, VIPS</p>
<p class="name">Ms. Chhaya Gupta</p>
<p class="designation">Assistant Professor, <br>School of Information Technology, VIPS</p>
<p class="name">Ms. Kirti Sharma</p>
<p class="designation">Assistant Professor, <br>School of Information Technology, VIPS</p>
</div>
<div class="track-wrap">
<h1>ADVISORY COMMITTEE</h1>
<p class="name">Prof. (Dr.) Rattan Sharma</p>
<p class="designation">President, Association of Indian Management Schools</p>
<p class="name">Prof A K Nayak</p>
<p class="designation">Vice President & Chairman Conference Committee, CSI</p>
<p class="name">Dr Santosh Kumar Yadav</p>
<p class="designation">Hon Secretary, CSI</p>
<p class="name">Mr Manas Ranjan Pattnaik</p>
<p class="designation">Hon Treasurer, CSI</p>
<p class="name">Mr Sanjay Mohapatra</p>
<p class="designation">Immediate Past President, CSI</p>
<p class="name">Mr Arvind Sharma</p>
<p class="designation">Regional Vice President, Region-I, CSI</p>
</div>
<div class="track-wrap">
<h1>FINANCE COMMITTEE</h1>
<p class="name">Dr. M. Bala Subramanian</p>
<p class="designation">Professor, <br>School of Information Technology, VIPS</p>
<p class="name">Ms. Nivedita Palia</p>
<p class="designation">Assistant Professor, <br>School of Information Technology, VIPS</p>
</div>
<div class="track-wrap">
<h1>TECHNICAL COMMITTEE</h1>
<p class="name">Mr. Upender Chauhan</p>
<p class="designation">System Administrator, VIPS</p>
<p class="name">Mr. Ashok Kumar</p>
<p class="designation">System Administrator, VIPS</p>
</div>
</div> -->
</div>
<div class="title">COMMITTEE</div>
<div class="shape shape-4 rellax" data-rellax-speed="5" data-rellax-percentage="0.5">
<img src="img/blue/blueShapeSide.png">
</div>
</div>
<div class="main-wrap">
<div class="title">Judges</div>
<div class="content">
<h1 style="background: linear-gradient(0deg, #145DBB,#28B9EE);background-clip: border-box;background-clip: border-box;-webkit-background-clip: text;-webkit-text-fill-color: transparent;">9.</h1>
<div class="head">
<p>JUDGES & MENTORS</p>
<div class="line"></div>
</div>
<div class="team-row">
<div class="judges img ">
<img src="judge/ankit_k.jpg">
<div class="team-content">
<h1>Ankit Khanna</h1><br>
<p><br>Co-Founder, Les Transformations</p><br>
<p>Judge</p>
</div>
</div>
<div class="judges img right">
<img src="judge/satyadeep.jpg">
<div class="team-content">
<h1 >Satyadeep Karnati</h1><br>
<p>CTO, Sheroes</p><br>
<p>Judge</p>
</div>
</div>
<div class="judges img">
<img src="judge/annsh.jpg">
<div class="team-content">
<h1>Annsh Singh</h1><br>
<p>Product Lead, So Delhi</p><br>
<p>Judge</p>
</div>
</div>
<div class="judges img right">
<img src="judge/dolly.jpg">
<div class="team-content">
<h1>Dolly Bhasin</h1><br>
<p>Co-Founder, SmartEdge</p><br>
<p>Judge</p>
</div>
</div>
<div class=" judges img">
<img src="judge/joe.jpg">
<div class="team-content">
<h1>Joe Nash</h1><br>
<p><br>APAC Head, MLH</p><br>
<p>Judge</p>
</div>
</div>
<div class=" judges img right">
<img src="judge/chitra.jpg">
<div class="team-content">
<h1>Chitra Sharma</h1><br>
<p><br>QA Manager, Bobble</p><br>
<p>Judge</p>
</div>
</div>
<div class=" judges img">
<img src="judge/ANUP.jpg">
<div class="team-content">
<h1>Dr. Anup Girdhar</h1><br>
<p><br>CEO, Sedulity Solutions and Technologies</p><br>
<p>Judge</p>
</div>
</div>
<div class="judges img right">
<img src="judge/ankan.jpg">
<div class="team-content">
<h1>Ankan De</h1><br>
<p>Innovation Lead, Niti Aayog & Board Member, IYCN</p><br>
<p>Judge</p>
</div>
</div>
<div class=" judges img">
<img src="judge/pinaki.jpg">
<div class="team-content">
<h1>Pinaki Dasgupta</h1><br>
<p><br>Director, GreenFaith & Board Member, IYCN</p><br>
<p>Judge</p>
</div>
</div>
<div class=" judges img right">
<img src="judge/chetan.jpg">
<div class="team-content">
<h1>Chetan Kothari</h1><br>
<p><br>Software Engineer, GrapeCity</p><br>
<p>Judge</p>
</div>
</div>
<div class="judges img">
<img src="judge/akanksha.jpg">
<div class="team-content">
<h1>Akanksha Bhasin </h1><br>
<p>Organiser, Voiceflow</p><br>
<p>Mentor</p>
</div>
</div>
<div class="judges img right">
<img src="judge/divyansh.jpg">
<div class="team-content">
<h1>Divyansh Chaurasia</h1><br>
<p>Community Lead India, Voiceflow</p><br>
<p>Mentor</p>
</div>
</div>
<div class=" judges img">
<img src="judge/hunar.jpg">
<div class="team-content">
<h1>Hunar Batra</h1><br>
<p>Co-Founder, HushTech AI</p><br>
<p>Mentor</p>
</div>
</div>
<div class="judges img right">
<img src="judge/raunak.jpg">
<div class="team-content">
<h1>Raunak Sinha</h1><br>
<p>Staff Research Engineer for Artificial Intelligence, IBM Research</p><br>
<p>Mentor</p>
</div>
</div>
<div class="judges img ">
<img src="judge/pranshu.jpg">
<div class="team-content">
<h1>Pranshu Khanna</h1><br>
<p>Resource Rep, Mozilla</p><br>
<p>Mentor</p>
</div>
</div>
<div class="judges img right">
<img src="judge/nimit.jpg">
<div class="team-content">
<h1>Nimit Pahwa</h1><br>
<p>Content Head, Bobble.ai</p><br>
<p>Mentor</p>
</div>
</div>
<div class="judges img">
<img src="judge/kaushik_roy.jpg">
<div class="team-content">
<h1>Kaushik Roy</h1><br>
<p>Principal Architect, Incubate IND</p><br>
<p>Mentor</p>
</div>
</div>
<div class="judges img right">
<img src="judge/sidhant.jpg">
<div class="team-content">
<h1>Sidhant Gupta</h1><br>
<p>Senior Security Consultant, EY</p><br>
<p>Speaker</p>
</div>
</div>
<div class="judges img">
<img src="judge/Subhi.jpg">
<div class="team-content">
<h1>Subhi Dhupar</h1><br>
<p>Regional Coordinator for URI-Asia: Afghanistan and India, North Zone
</p><br>
<p>Speaker</p>
</div>
</div>
<div class="judges img right">
<img src="judge/supriya.jpg">
<div class="team-content">
<h1>Supriya Singh</h1><br>
<p>Senior Manager, Iora Ecological Solutions</p><br>
<p>Speaker</p>
</div>
</div>
<div class="judges img ">
<img src="judge/Sashrika.jpg">
<div class="team-content">
<h1>Sashrika Kaur</h1><br>
<p>MLH APAC Coach at Major League Hacking</p><br>
<p>MLH Coach</p>
</div>
</div>
</div>
<!-- <div class="judges">
<img src="judge/Harshit Juneja.jpg">
<div class="team-content">
<h1>Nimit Pahwa</h1><br>
<p>Content Head<br>Bobble.ai</p><br>
<p>Mentor</p>
</div>
</div>
<div class="judges">
<img src="judge/Ashish Pahwa.jfif">
<div class="team-content">
<h1>Ashish Pahwa</h1><br>
<p>Data Engineer at Novuse,<br> Alumni VIPS, Ex-President ACE</p><br>
<p>Mentor</p>
</div>
</div>
<div class="judges">
<img src="judge/Aditya Dhawan.jfif">
<div class="team-content">
<h1>Aditya Dhawan</h1><br>
<p>Frontend Developer at Novuse,<br> Alumni VIPS, Ex-President ACE</p><br>
<p>Mentor</p>
</div>
</div>-->
</div>
</div>
<div class="main-wrap" style="margin-top: 200px;">
<!--<div class="title">CORE TEAM</div>-->
<div class="content">
<h1 style="background: linear-gradient(0deg, #145DBB,#28B9EE);background-clip: border-box;background-clip: border-box;-webkit-background-clip: text;-webkit-text-fill-color: transparent;">2.</h1>
<div class="head">
<p>CONTACT US</p>
<div class="line"></div>
</div>
<br><br><br><br><br><br>
<div class="team-row">
<!--
<div class="img">
<img src="team/chirag.jpg">
<div class="team-content">
<h1>Chirag Jain</h1>
<div class="line"></div>
<p>@ChirgJin</p>
<div class="team-social">
<ul>
<li><a href="https://www.facebook.com/chiraggjainn" target="_blank"><i class="fa fa-facebook-square"></i></a>
</li>
<li><a href="https://www.linkedin.com/in/chirgjin/" target="_blank"><i class="fa fa-linkedin"></i></a>
</li>
<li><a href="https://github.com/chirgjin" target="_blank"><i class="fa fa-github"></i></a>
</li> </ul>
</div>
</div>
</div>-->
<div class="img ">
<img src="team/shreyans.jpg">
<div class="team-content">
<h1>Shreyans Jain</h1>
<p>@shreyansdjp</p>
<div class="line"></div>
<div class="team-social">
<ul>
<li><a href="https://www.facebook.com/shreyans.jain.777" target="_blank"><i class="fa fa-facebook-square"></i></a>
</li>
<li><a href="https://www.linkedin.com/in/sj-68/" target="_blank"><i class="fa fa-linkedin"></i></a>
</li>
<li><a href="https://github.com/shreyansdjp" target="_blank"><i class="fa fa-github"></i></a>
</li> </ul>
</div>
<br><a href="tel:8800865832"><p class="phoneNo" style="margin-top:12px"><i class="fa fa-phone" aria-hidden="true"style="margin-right:8px"></i>8800865832</p></a>
</div>
</div>
<!-- <div class="img right ">
<img src="team/gautam.jpeg">
<div class="team-content">
<h1>Gautam</h1>
<div class="line"></div>
<p>@seriousjoker</p>
<div class="team-social">
<ul>
<li><a href="https://www.facebook.com/gautam.chawla.56" target="_blank"><i class="fa fa-facebook-square"></i></a>
</li>
<li><a href="https://www.linkedin.com/in/gautam-chawla-cr7/" target="_blank"><i class="fa fa-linkedin"></i></a>
</li>
<li><a href="https://github.com/gautamchawlacr7" target="_blank"><i class="fa fa-github"></i></a>
</li> </ul>
</div>
<br><a href="tel:9971166359"><p class="pNR" style="margin-top:20px"><i class="fa fa-phone" aria-hidden="true" style="margin-right:8px"></i>9971166359</p></a>
</div>
</div> -->
<!--
<div class="img right">
<img src="team/lakshay.jpg">
<div class="team-content" data-rellax-speed="-4">
<h1>Lakshay Kapoor</h1>
<p>@ShawnMendes</p>
<div class="line"></div>
<div class="team-social">
<ul>
<li><a href="https://www.facebook.com/lakshayk99" target="_blank"><i class="fa fa-facebook-square"></i></a>
</li>
<li><a href="https://www.linkedin.com/in/lakshay-kapoor-19b09b134/" target="_blank"><i class="fa fa-linkedin"></i></a>
</li>
<li><a href="https://github.com/lakshayk99" target="_blank"><i class="fa fa-github"></i></a>
</li> </ul>
</div>
</div>
</div>
<div class="img">
<img src="team/tejus.jpg">
<div class="team-content">
<h1>Tejus Sahi</h1>
<div class="line"></div>
<p>@TS</p>
<div class="team-social">
<ul>
<li><a href="https://www.facebook.com/tejus.sahi" target="_blank"><i class="fa fa-facebook-square"></i></a>
</li>
<li><a href="https://www.linkedin.com/in/tejussahi/" target="_blank"><i class="fa fa-linkedin"></i></a>
</li>
<li><a href="https://github.com/tejus07" target="_blank"><i class="fa fa-github"></i></a>
</li>
</ul>
</div>
</div>
</div>
<div class="img right">
<img src="team/jai.jpg">
<div class="team-content" data-rellax-speed="-4">
<h1>Jay Singh Tomar</h1>
<p>@JayKayLMAO</p>
<div class="line"></div>
<div class="team-social">
<ul>
<li><a href="https://www.facebook.com/Jaytomar26" target="_blank"><i class="fa fa-facebook-square"></i></a>
</li>
<li><a href="http://linkedin.com/in/jaytomar" target="_blank"><i class="fa fa-linkedin"></i></a>
</li>
<li><a href="http://github.com/jaytomar" target="_blank"><i class="fa fa-github"></i></a>