-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
1129 lines (876 loc) · 46 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 lang="en">
<head>
<meta charset="utf-8">
<title>Code-N-Build</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="Code-N-Build, hackathon,hackathon 2019,hackathon 2020,SIH 2019,Sih 2020,Jecrc University,
Smart india hackathon, tech hackathons in India, upcoming hackathons in india, upcoming hackathons in
india 2020" name="keywords">
<meta content=" Code-N-Build is going to be a 30 hours hackathon that will expose students to an environment that is optimal for exploring new Voice Interface techniques and for problem-solving. It will allow students to experience the ideation workflow & designing roadmap necessary for building software products using Voice Interface that tackles real-life issues. " name="description">
<!-- Favicons -->
<link href="img/logo.png" rel="icon">
<link href="img/logo.png" rel="apple-touch-icon">
<!-- Font Awesome Icons -->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Raleway:300,400,500,700,800" rel="stylesheet">
<!-- Plugin CSS -->
<link href="vendor/magnific-popup/magnific-popup.css" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/venobox/venobox.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<link href="css/creative.css" rel="stylesheet">
</head>
<body>
<!--chatbot
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/5df9f1b9d96992700fccd445/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script-->
<!--==========================
Header
============================-->
<header id="header">
<div class="container">
<div id="logo" class="pull-left">
<!-- Uncomment below if you prefer to use a text logo -->
<!-- <h1><a href="#main">C<span>o</span>nf</a></h1>-->
<a href="index.php" class="scrollto"><img src="img/logo.png" alt="" title=""></a>
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="menu-active"><a href="#intro">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#speakers">Speakers</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#awards">Prize</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#supporters">Sponsors</a></li>
<li><a href="#faq">FAQ's</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav><!-- #nav-menu-container -->
</div>
</header><!-- #header -->
<!--==========================
Intro Section
============================-->
<section id="intro">
<div class="intro-container wow fadeIn">
<h1 class="mb-4 pb-0">Code-N-Build<br><span>Jan 25-26 2020</span></h1>
<p class="mb-4 pb-0">JECRC University, Jaipur</p>
<p class="mb-4 pb-0">Thank you, everyone who have been part this year</p>
<p class="mb-4 pb-0">We will see you Next Year</p>
<p class="mb-4 pb-0">Till then - Keep Hacking & Keep Hustling</p>
<!--<a href="https://www.youtube.com/watch?v=jDDaplaOz7Q" class="venobox play-btn mb-4" data-vbtype="video"
data-autoplay="true"></a> -->
<a href="https://skillenza.com/challenge/codenbuild" class="about-btn scrollto">Register Now</a>
<a href="https://sites.google.com/view/problemstatements/home" class="about-btn-ps scrollto">Problem Statements</a>
</div>
</section>
<main id="main">
<!--==========================
About Section
============================-->
<section id="about" style="background-color: #FFFFFF !important">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2>About The Event</h2>
<h4 style="color: #FFAABB !important">JECRC University's Largest Hackathon</h4>
<p>Code-N-Build is going to be a 30 hours hackathon that will expose students to an environment that is optimal for exploring new Voice Interface techniques and problem-solving. It will allow students to experience the ideation workflow & designing roadmap necessary for building software products that tackle real-life issues.</P>
<p>CodeNBuild invites designers, programmers, and inventors to code, build and design innovative solutions to tackle the real-world problems. It provides a venue and platform for creativity and self-expression through technology. It doesn't matter if someone is writing the code for their 1st website or 100th. One can always work and improve a lot. The only constraint here is time.</p>
<p>Some Tracks are VUI, AI, IoT, Machine Learning, Computer Vision, etc. Some of the tracks mentioned above will have dedicated problem statements and prizes.</p>
<div class="row justify-content-center">
<div class="col-lg-3" style="text-align: center !important">
<img class="img-responsive" src="img/cashprize.png" style="width:21%;height:auto" />
<h5 style="font-weight: 500; color: white; margin-top: 5% !important">Cash Prizes</h5>
</div>
<div class="col-lg-3" style="text-align: center !important">
<img class="img-responsive" src="img/24hack.png" style="width:21%;height:auto" />
<h5 style="font-weight: 500; color: white; margin-top: 5% !important">30-Hour Hackathon</h5>
</div>
<div class="col-lg-3" style="text-align: center !important">
<img class="img-responsive" src="img/stick.png" style="width:21%;height:auto" />
<h5 style="font-weight: 500; color: white; margin-top: 5% !important">Unlimited Swags
</h5>
</div>
<div class="col-lg-3" style="text-align: center !important">
<img class="img-responsive" src="img/snaks.png" style="width:21%;height:auto" />
<h5 style="font-weight: 500; color: white; margin-top: 5% !important">Free Snacks
</h5>
</div>
<!-- <div class="col-lg-3">
<h3>Where</h3>
<p>LNMIIT, JAIPUR</p>
</div> -->
<!-- <div class="col-lg-3">
<h3>When</h3>
<p>Monday to Wednesday<br>10-12 December</p>
</div> -->
</div>
</div>
</section>
<!--<div class="container">
<div class="row">
<div class="col-lg-6">
<h2 center>About The Event</h2>
<p>Code-N-Build is going to be a 30 hours hackathon that will expose students to an environment that is optimal for exploring new Voice Interface techniques and problem-solving. It will allow students to experience the ideation workflow & designing roadmap necessary for building software products that tackle real-life issues.
</p>
</div>
<!--<div class="col-lg-3">
<h3>Where</h3>
<p>Downtown Conference Center, New York</p>
</div>
<div class="col-lg-3">
<h3>When</h3>
<p>Monday to Wednesday<br>10-12 December</p>
</div>
</div>
</div> -->
</section>
<!--==========================
Speakers Section
============================-->
<section id="speakers" class="wow fadeInUp" style="visibility: visible; animation-name: fadeInUp;">
<div class="container">
<div class="section-header">
<h2>Event Speakers</h2>
<p>Here are some of our speakers</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="speaker">
<img src="img/speakers/1.jpg" alt="Speaker 1" class="img-fluid">
<div class="details">
<h3><a href="speaker-details.html">Munish Jindal</a></h3>
<p>Founder & CEO Hover Robotix</p>
<p>Founding President MENTORx Global</p>
<!--<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div> -->
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<img src="img/speakers/7.jpg" alt="Speaker 3" class="img-fluid">
<div class="details">
<h3><a href="speaker-details.html">Nancy Juneja</a></h3>
<p>Founder RevUp Life Skills</p>
<p>Co-Founder MENTORx Global</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<img src="img/speakers/8.jpeg" alt="Speaker 4" class="img-fluid">
<div class="details">
<h3><a href="speaker-details.html">Dhrumil Shah</a></h3>
<p>Senior Mobile App Developer</p>
<p>GDE Flutter & Dart</p>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Schedule Section
============================-->
<section id="schedule" class="section-with-bg">
<div class="container wow fadeInUp">
<div class="section-header">
<h2>Event Schedule</h2>
<p>Here is the event schedule</p>
</div>
<ul class="nav nav-tabs" role="tablist">
<li class="nav-item">
<a class="nav-link active" href="#day-1" role="tab" data-toggle="tab">Day 1</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#day-2" role="tab" data-toggle="tab">Day 2</a>
</li>
</ul>
<h3 class="sub-heading">Let's Get The Codes Out</h3>
<div class="tab-content row justify-content-center">
<!-- Schdule Day 1 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade show active" id="day-1">
<div class="row schedule-item">
<div class="col-md-2"><time>7:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Registration</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>8:00AM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Orientation<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>9:00AM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Hacking Start<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>2:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Lunch<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>03:30 PM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Workshop 1<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>05:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Evaluation with snacks break<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>6:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Hacking Continues<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>7:30 PM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Workshop 2<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>09:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Dinner<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>11:30 PM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Fun Activities<span></span></h4>
</div>
</div>
</div>
<!-- End Schdule Day 1 -->
<!-- Schdule Day 2 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade" id="day-2">
<div class="row schedule-item">
<div class="col-md-2"><time>12:30 AM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Hacking continues</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>1:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Midnight Snacks<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>4:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Fun Activities Round 2<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>7:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Evaluation Round 2 + Elimination Round<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>8:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Breakfast<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>9:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Hacking Continues<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>11:30 AM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Final Judging Round + Pitching<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>2:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Lunch<span></span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>3:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Result Declaration<span></span></h4>
</div>
</div>
<!--<div class="row schedule-item">
<div class="col-md-2"><time>2:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
</div>
<h4>Lunch<span></span></h4>
</div>
</div> -->
<!-- End Schdule Day 2 -->
</div>
</div>
</section>
<section class="page-section bg-white text-black" id="awards">
<div class="container ">
<h2 class="text-center mt-0 ">What's in it for you?</h2>
<hr class="divider my-4 ">
<div class="row ">
<div class="col-lg-4 col-md-4 text-center ">
<div class="mt-5 ">
<i class="fas fa-4x fa-trophy golden mb-4 "></i>
<h3 class="h4 mb-2 ">1st Prize</h3>
<p class="text-primary mb-0" style="font-size:1.3rem;">Worth 80,000</p>
</div>
</div>
<div class="col-lg-4 col-md-4 text-center ">
<div class="mt-5 ">
<i class="fas fa-4x fa-trophy silver mb-4 "></i>
<h3 class="h4 mb-2 ">2nd Prize</h3>
<p style="font-size:1.3rem;" class="text-primary mb-0 ">Worth 60,000</p>
</div>
</div>
<div class="col-lg-4 col-md-4 text-center ">
<div class="mt-5 ">
<i class="fas fa-4x fa-trophy bronze mb-4 "></i>
<h3 class="h4 mb-2 ">3rd Prize</h3>
<p class="text-primary mb-0 " style="font-size:1.3rem;">Worth 40,000</p>
</div>
</div>
</div>
<h5 style="padding-top: 3%" class="text-center mt-0">Teams with 4th-7th position will also receive convincing rewards. </h5>
</div>
</section>
<!--==========================
Gallery Section
============================-->
<section id="gallery" class="wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Gallery</h2>
<p>Check our gallery from the recent events</p>
</div>
</div>
<div class="owl-carousel gallery-carousel">
<a href="img/gallery/11.jpg" class="venobox" data-gall="gallery-carousel"><img src="img/gallery/11.jpg" alt=""></a>
<a href="img/gallery/12.jpg" class="venobox" data-gall="gallery-carousel"><img src="img/gallery/12.jpg" alt=""></a>
<a href="img/gallery/13.jpg" class="venobox" data-gall="gallery-carousel"><img src="img/gallery/13.jpg" alt=""></a>
<a href="img/gallery/4.jpg" class="venobox" data-gall="gallery-carousel"><img src="img/gallery/4.jpg" alt=""></a>
<a href="img/gallery/5.jpg" class="venobox" data-gall="gallery-carousel"><img src="img/gallery/5.jpg" alt=""></a>
<a href="img/gallery/6.jpg" class="venobox" data-gall="gallery-carousel"><img src="img/gallery/6.jpg" alt=""></a>
<a href="img/gallery/7.jpg" class="venobox" data-gall="gallery-carousel"><img src="img/gallery/7.jpg" alt=""></a>
<!-- <a href="img/gallery/8.jpg" class="venobox" data-gall="gallery-carousel"><img src="img/gallery/8.jpg" alt=""></a> -->
</div>
</section>
<!--Title Sponser-->
<section id="supporters" class="section-with-bg wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Title Sponsor</h2>
</div>
<div class="d-flex justify-content-center border border-light p-5" >
<div class="supporter-logo ">
<img src="img/supporters/3.png" class="img-fluid" width="400px" alt="">
</div>
</div>
</div>
</div>
</section>
<!--==========================
Sponsors Section
============================-->
<section id="supporters" class="section-with-bg wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Our Partners</h2>
</div>
<div class="row no-gutters supporters-wrap clearfix">
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/supporters/1.png" class="img-fluid" width="100px" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/supporters/9.png" class="img-fluid" width="120px" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/supporters/5.png" class="img-fluid" width="100px" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/supporters/7.png" class="img-fluid" width="120px" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/supporters/14.png" class="img-fluid" width="120px" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/supporters/10.png" class="img-fluid" width="120px" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/supporters/11.png" class="img-fluid" width="120px" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/supporters/009.png" class="img-fluid" width="120px" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/supporters/2.png" class="img-fluid" width="120px" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/supporters/4.png" class="img-fluid" width="120px" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/supporters/13.png" class="img-fluid" width="120px" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/supporters/17.png" class="img-fluid" width="120px" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/supporters/15.png" class="img-fluid" width="120px" alt="">
</div>
</div>
</div>
</div>
</section>
<!--==========================
Buy Ticket Section
============================-->
<section id="buy-tickets" class="section-with-bg wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Sponsor Us</h2>
<p>Interested in becoming a sponsor? Email us at [email protected]</p>
</div>
<div class="row justify-content-center">
<div class="col-lg-4">
<div class="card mb-5 mb-lg-0 center">
<div class="card-body center">
<h5 class="card-title text-muted text-uppercase text-center">Benefits</h5>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>Put your business front and center</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Emotional connection</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Awesome experience</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Brand awareness</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Media exposure</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Great ROI</li>
</ul>
<hr>
<div class="text-center">
<button type="button" onclick="window.location.href='tel:+917895439553'" class="btn">Sponsor Us</button> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==========================
F.A.Q Section
============================-->
<section id="faq" class="wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>F.A.Q. </h2>
</div>
<div class="row justify-content-center">
<div class="col-lg-9">
<ul id="faq-list">
<li>
<a data-toggle="collapse" class="collapsed" href="#faq1">Who can apply?<i class="fa fa-minus-circle"></i></a>
<div id="faq1" class="collapse" data-parent="#faq-list">
<p>
It is open to all for those who are tech geeky.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq2" class="collapsed">How to form a team?<i class="fa fa-minus-circle"></i></a>
<div id="faq2" class="collapse" data-parent="#faq-list">
<p>
Register individually to the event and create the team.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq3" class="collapsed">Who will judge the teams? <i class="fa fa-minus-circle"></i></a>
<div id="faq3" class="collapse" data-parent="#faq-list">
<p>
The teams will be judged by the jury from the industry experts and professionals
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq4" class="collapsed">What are the evaluation criterias for the selection of the winning team?<i class="fa fa-minus-circle"></i></a>
<div id="faq4" class="collapse" data-parent="#faq-list">
<p>
<b>Concept</b><br>
For Voice Platform - Alexa (using Alexa will have add-ons)<br>
Design<br>
Development<br>
Presentation.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" class="collapsed" href="#faq5">Do I need to pay any money to register for the Hackathon?
<i class="fa fa-minus-circle"></i></a>
<div id="faq5" class="collapse" data-parent="#faq-list">
<p>
Admission to CodeNBuild is completely free, thanks to our sponsors! We'll provide you with a weekend's worth of schwag, meals, drinks, snacks and a place to crash when you need a break from coding.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq6" class="collapsed">How big can a team be?
<i class="fa fa-minus-circle"></i></a>
<div id="faq6" class="collapse" data-parent="#faq-list">
<p>
You can form teams of up to 5 people. Most teams aim to have a mix of people with both design and developer skills.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq7" class="collapsed">What if I’ve never been to a hackathon before?
<i class="fa fa-minus-circle"></i></a>
<div id="faq7" class="collapse" data-parent="#faq-list">
<p>
Then we're so glad CodeNBuild will be your first ever! It’s helpful to have some programming or technical experience, but it’s not a requirement. We’ll have talks, mentors and workshops to help you with your project.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq8" class="collapsed">Are there prizes for the girls’ team?
<i class="fa fa-minus-circle"></i></a>
<div id="faq8" class="collapse" data-parent="#faq-list">
<p>
CodeNBuild has always been a huge supporter of gender equality and empowerment. We've treasured swag and prizes exclusively for girls to promote and encourage their participation. Gotta grab em' all girls!
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq9" class="collapsed">
Can I start working on my hack before the event?
<i class="fa fa-minus-circle"></i></a>
<div id="faq9" class="collapse" data-parent="#faq-list">
<p>
No. In the interest of fairness, students should not be working on their projects before CodeNBuild begins and we do not allow participants to work on pre-existing projects. However, you can familiarize yourself with all the tools and technologies you intend
to use beforehand!
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq10" class="collapsed">How Does Judging works?
<i class="fa fa-minus-circle"></i></a>
<div id="faq10" class="collapse" data-parent="#faq-list">
<p>CodeNBuild
A panel of some of the biggest names in tech will evaluate hacks based on creativity, technical difficulty, design, and usefulness. The top 10 overall projects will demo what they have built-in front of all of the during our closing ceremonies.
New judges will be announced on a rolling basis on Twitter and Facebook, so make sure to follow us!
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq11" class="collapsed">
Do I need to have any specific qualifications to be a participant for the Hackathon?
<i class="fa fa-minus-circle"></i></a>
<div id="faq11" class="collapse" data-parent="#faq-list">
<p>
If you love to code, you are more than welcome to participate in the Hackathon. Though we may screen applications to maintain high standards.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq12" class="collapsed">Is it necessary to be present at the venue to participate in the hackathon?
<i class="fa fa-minus-circle"></i></a>
<div id="faq12" class="collapse" data-parent="#faq-list">
<p>
Yes. The event is entirely on-site. Only the registrations and submissions are to be made online. We have also planned a plethora of other activities to keep you engaged.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq13" class="collapsed">Don't find my question listed here. What can I do?
<i class="fa fa-minus-circle"></i></a>
<div id="faq13" class="collapse" data-parent="#faq-list">
<p>
You can always contact us at [email protected]. We would be more than happy to help you.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq14" class="collapsed">Who will own the IP (Intellectual Property) Rights to the product that I have built?
<i class="fa fa-minus-circle"></i></a>
<div id="faq14" class="collapse" data-parent="#faq-list">
<p>
The developer/developers of the web/mobile application will have all rights and own the IP of the product. However, all code needs to be in public domain (open source) so that it can be evaluated by the judges.
</p>
</div>
</li>
<!--<li>
<a data-toggle="collapse" href="#faq5" class="collapsed">Is travel reimbursement provided? <i class="fa fa-minus-circle"></i></a>
<div id="faq5" class="collapse" data-parent="#faq-list">
<p>
Extremely sorry this year we are short of funds but we will make sure its provided from codenbuild 2.0.
</p>
</div>
</li> zz>
<!--<li>
<a data-toggle="collapse" href="#faq6" class="collapsed">Tortor vitae purus faucibus ornare. Varius vel pharetra vel turpis nunc eget lorem dolor? <i class="fa fa-minus-circle"></i></a>
<div id="faq6" class="collapse" data-parent="#faq-list">
<p>
Laoreet sit amet cursus sit amet dictum sit amet justo. Mauris vitae ultricies leo integer malesuada nunc vel. Tincidunt eget nullam non nisi est sit amet. Turpis nunc eget lorem dolor sed. Ut venenatis tellus in metus vulputate eu scelerisque. Pellentesque diam volutpat commodo sed egestas egestas fringilla phasellus faucibus. Nibh tellus molestie nunc non blandit massa enim nec.
</p>
</div>
</li> -->
<!--</ul>
</div>
</div>
</div>
</section>
<!--<section id="faq" class="wow fadeInUp" style="background-color: #FFFFFF !important">
<div class="container">
<div class="section-header">
<h2>F.A.Q </h2>
</div>
<!-- <div class="col-md-12 " style="text-align: center">
</div> -->
<div class="row justify-content-center">
<div class="col-lg-6">
<ul id="faq-list">
</ul>
</div>
<div class="col-lg-6">
<ul id="faq-list">
<!--<li>
<a data-toggle="collapse" href="#faq10" class="collapsed">
Is there any travel reimbursement?
<i class="fa fa-minus-circle"></i></a>
<div id="faq10" class="collapse" data-parent="#faq-list">
<p>
Yes, we are providing travel reimbursement on case to case basis. Hope you hack well.
</p>
</div>
</li>-->
</ul>
</div>
</div>
</div>
</section>
<!--==========================
Contact Section
============================-->
<section id="contact" class="section-bg wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Contact Us</h2>
<p>Any query? Feel free to contact us.</p>
</div>
<div class="row contact-info">
<div class="col-md-4">
<div class="contact-address">
<i class="ion-ios-location-outline"></i>
<h3>Address</h3>
<address>JECRC University, Vidhani, Jaipur 303905</address>
</div>
</div>
<div class="col-md-4">
<div class="contact-phone">
<i class="ion-ios-telephone-outline"></i>
<h3>Phone Number</h3>
<p><a href="tel:+919829599750">+91 98295 99750</a></p>