-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
927 lines (841 loc) · 44.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Product-HACK 2020</title>
<!-- <style>
html,
body {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
overflow-x: hidden;
}
</style> -->
<meta name="description" content="">
<meta name="author" content="">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge, chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link href='https://fonts.googleapis.com/css?family=Poppins:400,500,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/png" href="images/Asset 9.png">
<style>
/* .title-sponsor {
height:150px;
width: 150px;
} */
/* .text-btw-sponsor {
margin-top: 150px;
} */
/* .title-sponsor {
text-align: center;
} */
.github {
height: auto;
/* width: 270px; */
margin-top: 0px;
}
ul.timeline {
list-style-type: none;
position: relative;
}
ul.timeline:before {
content: ' ';
background: #d4d9df;
display: inline-block;
position: absolute;
left: 29px;
width: 2px;
height: 100%;
z-index: 400;
}
ul.timeline>li {
margin: 20px 0;
padding-left: 20px;
}
ul.timeline>li:before {
content: ' ';
background: white;
display: inline-block;
position: absolute;
border-radius: 50%;
border: 3px solid #be1754;
left: 20px;
width: 20px;
height: 20px;
z-index: 400;
}
@media only screen and (max-width: 800px) {
.im {
width: 180px;
height: 230px;
}
.im2 {
padding-top: 25px;
padding-bottom: 20px;
height: 200px;
width: 200px;
}
.im3 {
margin-top: 10px;
}
.inf1 {
padding-top: 25px;
}
}
@media only screen and (min-width: 780px) and (max-width: 1000px) {
.im {
margin-top: 90px;
width: 300px;
height: 400px;
}
.im2 {
padding-top: 30px;
height: 250px;
width: 250px;
}
}
/* @media only screen and (min-width: 1001px) and {
.im3 {
margin-top: 90px;
padding-top: 90px;
} */
/* .im2 {
padding-top: 30px;
height: 250px;
width: 250px;
} */
}
h3 {
font-size: 20px;
color: #ffffff
}
</style>
</head>
<body data-spy="scroll" data-offset="50" data-target=".navbar-collapse">
<div class="preloader">
<div class="spinner">
<div class="cube1"></div>
<div class="cube2"></div>
</div>
</div>
<div class="navbar custom-navbar" role="navigation">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
</button>
<a href="index.html" class="navbar-brand scroll-to"><img src="images/Asset 201.svg" width="50"
height="50" alt=""></a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#home">Home</a></li>
<li><a href="#overview">Overview</a></li>
<li><a href="#program">Schedule</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#venue">Venue</a></li>
<li><a href="#speakers">Our Team</a></li>
</ul>
</div>
</div>
</div>
<section id="home" class="parallax-section overlay">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-4 justify-content-center align-self-center sponsor-title">
<img class="wow fadeInUp title-sponsor im2" data-wow-delay="1.6s" src="images/DIC.png" width="400"
height="400">
<h4> DESIGN INNOVATION CENTER</h4>
</div>
<div class="col-md-4 col-sm-4 center-block text-center text-align: center">
<h2 class="im3">
<!-- <br> -->
<!-- <br> -->
PRESENTS</h2>
</div>
<!-- <div class="col-md-4 col-sm-4">
<img class="wow fadeInUp title-sponsor" data-wow-delay="1.6s" src="images/IIII.png">
<h4>IIIC ALLAHABAD</h4>
</div> -->
<!-- </div>
<div class="row"> -->
<div class="col-md-4 col-sm-12">
<img class="landing-logo wow fadeInUp im" data-wow-delay="1.6s" src="images/Asset 11.png"
width="300" height="500">
<!-- <h3 class="wow bounceIn" data-wow-delay="0.9s">Feb 7th in Indian Institute of Information
Technology, Allahabad</h3>
<a href="#" class="btn btn-lg btn-danger smoothScroll wow fadeInUp"
data-wow-delay="2.3s">Registrations opening soon</a>
<a href="docs/brochure2020.pdf" class="btn btn-lg btn-danger smoothScroll wow fadeInUp"
data-wow-delay="2.3s">SPONSOR US</a> -->
</div>
<div class="row inf1">
<div class="col justify-content-center align-self-center sponsor-title>
<h3 class=" wow bounceIn" data-wow-delay="0.9s">Feb 7th in Indian Institute of Information
Technology, Allahabad</h3>
<br>
<!-- <br> -->
<a href="https://forms.gle/3kdgECyWars68fju5"
class="btn btn-lg btn-danger smoothScroll wow fadeInUp" data-wow-delay="2.3s">Register
Here!</a>
<!-- <a href="docs/brochure2020.pdf" class="btn btn-lg btn-danger smoothScroll wow fadeInUp"
data-wow-delay="2.3s">SPONSOR US</a>
<a href="docs/iedcformat.pdf" class="btn btn-lg btn-danger smoothScroll wow fadeInUp"
data-wow-delay="2.3s">FORMAT</a> -->
</div>
</div>
<!-- </div> -->
</div>
</section>
<section id="overview" class="parallax-section">
<div class="container">
<div class="row">
<div class="wow fadeInUp col-md-6 col-sm-6" data-wow-delay="0.6s">
<h3>What is Product-HACK?</h3>
<p>Product Hack is the collaboration of programmers and designers to
code, design, and build innovative solutions that tackle real-world
problems.
<br>
It will be a 36 hours hackathon and will be held during
IIITA’s incubation center - IIIC’s annual flagship entrepreneurial
event: E-Summit.
<br>
It provides venue for self-expression and creativity.
It is one of a kind hackathon where we’re trying a new format to build
products that would be bought by people or businesses. Most products
built at the hackathon are never used in the future. But, this is the sole
purpose of this hackathon, we stress at building products that are
usable and complete.
</p>
</div>
<div class="wow fadeInUp col-md-6 col-sm-6" data-wow-delay="0.9s">
<img src="images/hacksat.jpg" class="img-responsive" alt="Overview">
</div>
</div>
</div>
</section>
<section id="overview" class="parallax-section" style="background-color:#f9f9f9;">
<div class="container">
<div class="row">
<div class="wow fadeInUp col-md-6 col-sm-6" data-wow-delay="0.9s">
<img src="images/present2.jpg" class="img-responsive" alt="Overview" style="margin-top:0px;">
</div>
<div class="wow fadeInUp col-md-6 col-sm-6" data-wow-delay="0.6s">
<h3>Format of Product-HACK?</h3>
<p>This hackathon would be carried out in three phases:
<br>
1.<b> Brainstorming</b> - In this phase, all the participants would be brainstorming
for the idea of the product that they’ll be developing in the hackathon.
They will be developing their idea with their mentors to know their idea
inside out, so as to overcome difficulties and have a full-proof plan.
<br>
2.<b> Coding</b> - This is the phase where the development of the product
happens along with evaluations in between the development.
<br>
3. <b> Pitching</b> - In this phase, the team has to pitch the idea to the judging panel
as to why they should use and buy this product and what are it’s features
</p>
</div>
</div>
</div>
</section>
<section id="overview" class="parallax-section">
<div class="container">
<div class="row">
<div class="wow fadeInUp col-md-6 col-sm-6" data-wow-delay="0.6s">
<h3>Diversity</h3>
<p>Over the time, we have strived to make sure that women get
a chance to showcase their experience with all fairness.
We took our commitment a step further by Introducing
prizes for best Girl Team and organising workshop for Girls
to encourage development.</p>
</div>
<div class="wow fadeInUp col-md-6 col-sm-6" data-wow-delay="0.9s">
<img src="images/women.jpg" class="img-responsive" alt="Overview">
</div>
</div>
</div>
</section>
<!-- <section id="overview" class="parallax-section">
<div class="container">
<div class="row">
<div class="wow fadeInUp col-md-6 col-sm-6" data-wow-delay="0.6s">
<h3>Format of Product-HACK?</h3>
<p>This hackathon would be carried out in three phases:
1.<b>Brainstorming</b> - In this phase, all the participants would be brainstorming
for the idea of the product that they’ll be developing in the hackathon.
They will be developing their idea with their mentors to know their idea
inside out, so as to overcome difficulties and have a full-proof plan.
<br>
2.<b>Coding</b> - This is the phase where the development of the product
happens along with evaluations in between the development.
<br>
3. <b>Pitching</b> - In this phase, the team has to pitch the idea to the judging panel
as to why they should use and buy this product and what are it’s features
</p>
</div>
<div class="wow fadeInUp col-md-6 col-sm-6" data-wow-delay="0.9s">
<img src="images/about.svg" class="img-responsive" alt="Overview">
</div>
</div>
</div>
</section> -->
<section id="program" class="parallax-section">
<div class="container">
<div class="row">
<div class="wow fadeInUp col-md-12 col-sm-12" data-wow-delay="0.6s">
<div class="section-title">
<h2>Schedule</h2>
<p>Will be updated soon...</p>
</div>
</div>
<div class="wow fadeInUp col-md-10 col-sm-10" data-wow-delay="0.9s">
<!-- <ul class="nav nav-tabs" role="tablist">
<li class="active"><a href="#main" aria-controls="main" role="tab" data-toggle="tab">SCHEDULE</a></li>
</ul> -->
<div class="tab-content">
<div class="row">
<div class="col-md-6 offset-md-3">
<ul class="timeline">
<li>
<!-- <a target="_blank" href="https://www.totoprayogo.com/#">New Web Design</a> -->
<h3 class="float-right">9:00pm Feb 7th</h3>
<p>Registration begins</p>
</li>
<li>
<!-- <a target="_blank" href="https://www.totoprayogo.com/#">New Web Design</a> -->
<h3 class="float-right">10:00pm Feb 7th</h3>
<p>Product-Hack Begins at Lab 5421</p>
</li>
<li>
<!-- <a target="_blank" href="https://www.totoprayogo.com/#">New Web Design</a> -->
<h3 class="float-right">3:00am Feb 8th</h3>
<p>Snacks</p>
</li>
<li>
<!-- <a target="_blank" href="https://www.totoprayogo.com/#">New Web Design</a> -->
<h3 class="float-right">8:00am Feb 8th</h3>
<p>Breakfast break</p>
</li>
<li>
<!-- <a target="_blank" href="https://www.totoprayogo.com/#">New Web Design</a> -->
<h3 class="float-right">1:30pm Feb 8th</h3>
<p>Lunch</p>
</li>
<li>
<!-- <a target="_blank" href="https://www.totoprayogo.com/#">New Web Design</a> -->
<h3 class="float-right">5:00pm Feb 8th</h3>
<p>Product-Hack ends</p>
</li>
<li>
<!-- <a target="_blank" href="https://www.totoprayogo.com/#">New Web Design</a> -->
<h3 class="float-right">11:00am Feb 9th</h3>
<p>Product-Hack presentations at CC-3</p>
</li>
</ul>
</div>
</div>
<!-- <h1> COMING SOON </h1> -->
<!-- <div role="tabpanel" class="tab-pane active" id="main">
<div class="col-md-2 col-sm-2">
<img src="images/program-img1.png" class="img-responsive" alt="program">
</div>
<div class="col-md-10 col-sm-10">
<h6>
<span><i class="fa fa-clock-o"></i> 08:00 AM</span>
</h6>
<h4>Doors Open</h3>
<p>Students will be allowed to enter the venue from 08:00 AM to 09:00 AM. During this time, we will be checking high school IDs and collecting an admission fee of $3.</p>
</div>
<div class="program-divider col-md-12 col-sm-12"></div>
<div class="col-md-2 col-sm-2">
<img src="images/program-img2.png" class="img-responsive" alt="program">
</div>
<div class="col-md-10 col-sm-10">
<h6>
<span><i class="fa fa-clock-o"></i> 09:00 AM</span>
</h6>
<h3>Opening Ceremony / Keynote Speech</h3>
<p>During the Opening Ceremony, we will introduce the event to students, along with information regarding hacking, food, and awards. A keynote speech will be delivered, as well, by Jody Jankovsky. Jody Jankovsky is a Managing
Member at Black Line Consulting. Students will also form teams (if they have not already) during this time.</p>
</div>
<div class="program-divider col-md-12 col-sm-12"></div>
<div class="col-md-2 col-sm-2">
<img src="images/program-img3.png" class="img-responsive" alt="program">
</div>
<div class="col-md-10 col-sm-10">
<h6>
<span><i class="fa fa-clock-o"></i> 10:00 AM</span>
</h6>
<h3>Hacking Begins</h3>
<p>Students will be allowed to begin creating their projects.</p>
</div>
<div class="program-divider col-md-12 col-sm-12"></div>
<div class="col-md-2 col-sm-2">
<img src="images/program-img4.png" class="img-responsive" alt="program">
</div>
<div class="col-md-10 col-sm-10">
<h6>
<span><i class="fa fa-clock-o"></i> 01:00 PM</span>
</h6>
<h3>Lunch</h3>
<p>At this time, free pizza, along with snacks and drinks, will be served for students.</p>
</div>
<div class="program-divider col-md-12 col-sm-12"></div>
<div class="col-md-2 col-sm-2">
<img src="images/program-img5.png" class="img-responsive" alt="program">
</div>
<div class="col-md-10 col-sm-10">
<h6>
<span><i class="fa fa-clock-o"></i> 05:00 PM</span>
</h6>
<h3>Hacking Concludes / Expo Begins</h3>
<p>Students will now have to stop hacking and become ready for the expo, where their work will be judged by professionals and seen by their peers.</p>
</div>
<div class="program-divider col-md-12 col-sm-12"></div>
<div class="col-md-2 col-sm-2">
<img src="images/program-img6.png" class="img-responsive" alt="program">
</div>
<div class="col-md-10 col-sm-10">
<h6>
<span><i class="fa fa-clock-o"></i> 06:00 PM</span>
</h6>
<h3>Awards</h3>
<p>Awards will be given to those who have exceeded expectations and this event will be concluded. Before they leave, students will receive swag from numerous companies and organizations.</p>
</div>
</div> -->
<!-- <div role="tabpanel" class="tab-pane" id="workshops">
<div class="col-md-2 col-sm-2">
<img src="images/program-img7.png" class="img-responsive" alt="program">
</div>
<div class="col-md-10 col-sm-10">
<h6>
<span><i class="fa fa-clock-o"></i> 10:00 AM and 11:00 AM</span>
</h6>
<h3>App Development</h3>
<h4>Optional</h4>
<p>For beginners or those who wish to participate, the App Development workshop will demonstrate how to make apps and emulate them on computers. This workshop is great for those who are new to and interested in app development.</p>
</div>
<div class="program-divider col-md-12 col-sm-12"></div>
<div class="col-md-2 col-sm-2">
<img src="images/program-img8.png" class="img-responsive" alt="program">
</div>
<div class="col-md-10 col-sm-10">
<h6>
<span><i class="fa fa-clock-o"></i> 10:00 AM and 11:00 AM</span>
</h6>
<h3>Website Design</h3>
<h4>Optional</h4>
<p>For beginners or those who wish to participate, the Website Design workshop will demonstrate how to create a website using HTML and CSS, along with how to learn more regarding the creation of websites.</p>
</div>
</div> -->
</div>
</div>
</div>
</section>
<section id="faq" class="parallax-section">
<div class="container">
<div class="row">
<div class="wow bounceIn col-md-offset-2 col-md-8 col-sm-offset-1 col-sm-10 text-center">
<div class="section-title">
<h2>Frequently Asked Questions</h2>
<p>If you have any questions or concerns, you might find your answers below!</p>
</div>
</div>
<div class="wow fadeInUp col-md-offset-1 col-md-10 col-sm-offset-1 col-sm-10" data-wow-delay="0.9s">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion"
href="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
What is a Hackathon?
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in" role="tabpanel"
aria-labelledby="headingOne">
<div class="panel-body">
<p>A hackathon is an event where individuals can learn more about computer science
or programming and enhance their skills by creating unique projects and
attending workshops. At HackTogether, students will be creating
projects and competing with each other in order to win prizes and receive
recognition.</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingTwo">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion"
href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Is there any eligibility criteria for P-thon20?
</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingTwo">
<div class="panel-body">
<p>If you are a college student and have the passion for building something
productive out of technology,you're good to go</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion"
href="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
What about the accommadation and food?
</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingThree">
<div class="panel-body">
<p>We will be providing you with mattresses at the venue of the hackathon and the
food provision is on us.</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingFour">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion"
href="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
What do I benefit from being part of a hackathon?
</a>
</h4>
</div>
<div id="collapseFour" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingFour">
<div class="panel-body">
<p>You get to learn new skills on-the-go,learn to debug errors efficiently,learn how
to coordinate among a team and gain inspiration and ideas from other projects.
</p>
</div>
</div>
</div>
<div id="collapseNine" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingNine">
<div class="panel-body">
<p>If you have any other questions or concerns, please email <a
href="mailto:[email protected]"
style="color: #be1754">[email protected]</a> and we'll get back to you as
soon as possible!</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="sponsors" class="parallax-section">
<div class="container">
<div class="row">
<div class="wow bounceIn col-md-12 col-sm-12">
<div class="section-title">
<h2>OUR SPONSORS</h2>
</div>
</div>
<div class="wow fadeInUp col-md-12 " data-wow-delay="0.3s">
<a href="www.codingblocks.com"><img src="images/cblogo.png" class="github" alt="sponsors"></a>
<h3
style="font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; font-weight: 300;">
CODING PARTNER</h3>
</div>
<div class="wow bounceIn col-md-12 col-sm-12">
<div class="section-title">
<h2>Past Sponsors</h2>
<p>These are some of past our sponsors</p>
<p><a href="docs/brochure2020.pdf">Download brochure</a></p>
</div>
</div>
<div class="wow fadeInUp col-md-12 " data-wow-delay="0.3s">
<a href="www.github.com"><img src="images/github.png" class="github" alt="sponsors"></a>
</div>
<div class="wow fadeInUp col-md-12" data-wow-delay="0.3s">
<a href="https://www.infotechhub.in/"><img src="images/infotechhubwhite.png" class="ih"
alt="sponsors" height="300px" width="350px"></a>
</div>
<div class="row">
<div class="wow fadeInUp col-md-6 " data-wow-delay="0.3s">
<a href="https://codingblocks.com/"><img src="images/cblogo.png" class="cb" alt="sponsors"
height="300px" width="400px"></a>
</div>
<div class="wow fadeInUp col-md-6 " data-wow-delay="0.3s">
<a href="https://www.infotechhub.in/"><img src="images/ithlogo.png" class="cb" alt="sponsors"
height="300px" width="350px"></a>
</div>
</div>
<div class="row">
<div class="wow fadeInUp col-md-6" data-wow-delay="0.3s">
<a href="https://zulipchat.com/"><img src="images/zulip-icon-512x512.png" class="zulip"
style="height: 200px; width:200px;" alt="sponsors"></a>
</div>
<div class="wow fadeInUp col-md-6" data-wow-delay="0.3s">
<a href="https://get.tech/"><img src="images/meta-logo.png" style="height: 150px; width:250px;"
class="tech" alt="sponsors"></a>
</div>
</div>
<div class="row">
<div class="wow fadeInUp col-md-4" data-wow-delay="0.3s">
<a href=""><img src="images/brainalive-2.png"
style=" padding : 20px; height: 160px; width:250px;" class="tech" alt="sponsors"></a>
</div>
<div class="wow fadeInUp col-md-4" data-wow-delay="0.3s">
<a href=""><img src="images/newlogo2.png" style="height: 200px; width:250px;" class="tech"
alt="sponsors"></a>
</div>
<div class="wow fadeInUp col-md-4 data-wow-delay=" 0.3s">
<a href="https://developers.google.com/programs/dsc/"><img src="images/DSC_badge_Color.svg"
style=" height: 200px; width:300px;" class="tech" alt="sponsors"></a>
</div>
</div>
</div>
</div>
</section>
<section id="detail" class="parallax-section">
<div class="container">
<div class="row">
<div class="wow bounceIn col-md-12 col-sm-12">
<div class="section-title">
<h2>Problem statements</h2>
<p>These are the problem statements for this hackathon.</p>
</div>
</div>
<div class="wow fadeInLeft col-md-12 col-sm-12" data-wow-delay="0.3s">
<a href="#venue" class="btn btn-lg btn-danger smoothScroll wow " data-wow-delay="2.3s">Coming
Soon...</a>
</div>
</div>
</div>
</section>
<!-- <section id="detail" class="parallax-section">
<div class="container">
<div class="row">
<div class="wow bounceIn col-md-12 col-sm-12">
<div class="section-title">
<h2>Format of Hack</h2>
<p>This hackathon would be carried out in three phases</p>
</div>
</div>
<div class="points wow fadeInLeft col-md-12 col-sm-12" data-wow-delay="0.3s">
<li>Brainstorming - In this phase, all the participants would be brainstorming
for the idea of the product that they’ll be developing in the hackathon.
They will be developing their idea with their mentors to know their idea
inside out, so as to overcome difficulties and have a full-proof plan.</li>
<li>Coding - This is the phase where the development of the product
happens along with evaluations in between the development.</li>
<li>Pitching - In this phase, the team has to pitch the idea to the judging panel
as to why they should use and buy this product and what are it’s features.</li>
<!-- <li>Accommodation and refreshments will be provided.</li>
<li>Also <strong>Certificates</strong> will be provided to all the participants of Product-Hack20</li> -->
<br>
<!-- <p class="quote"> So get ready to <strong>Code</strong>,<strong>Build</strong> and
<strong>Hack</strong> !</p> -->
</div>
</div>
</div>
</section>
<section id="venue" class="parallax-section">
<div class="container">
<div class="row">
<div class="wow fadeInLeft col-md-offset-1 col-md-5 col-sm-8" data-wow-delay="0.9s">
<h2>Venue</h2>
<h4>CC3 Buliding</h4>
<h4>Indian Institute of Information Technology</h4>
<h4>Allahabad</h4>
<h4>Jhalwa, 211012</h4>
<h4>Uttar Pradesh, India </h4>
</div>
<div class="wow fadeInLeft col-md-offset-1 col-md-5 col-sm-8" data-wow-delay="0.9s">
<h2>Contact us</h2>
<h4>Aadya Mishra</h4>
<h4>+91-88406 26829 </h4>
<h4>[email protected]</h4>
<!-- <h4>https://iiic.iiita.ac.in</h4> -->
<br>
<h4>Sagar Lakhani</h4>
<h4>+91-91385 79761 </h4>
<h4>[email protected]</h4>
<br>
<h4>Tanmay Mittal</h4>
<h4>+91-87558 53305 </h4>
<h4>[email protected]</h4>
</div>
</div>
</div>
</section>
<section id="detail" class="parallax-section">
<div class="container">
<div class="row">
<div class="wow bounceIn col-md-12 col-sm-12">
<div class="section-title">
<h2>Perks</h2>
<p>These are some of the perks if you attend Product-HACK 2020</p>
</div>
</div>
<div class="points wow fadeInLeft col-md-12 col-sm-12" data-wow-delay="0.3s">
<li>Amazing cash prizes worth 40k.</li>
<li>Stickers, goodies and t-shirts are waiting for you.</li>
<li>Special prize for best hardware hack and all girls team.</li>
<li>Accommodation and refreshments will be provided.</li>
<li>Also <strong>Certificates</strong> will be provided to all the participants of Product-Hack20.
</li>
<br>
<p class="quote"> So get ready to <strong>Code</strong>,<strong>Build</strong> and
<strong>Hack</strong> !</p>
</div>
</div>
</div>
</section>
<section id="speakers" class="parallax-section">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 wow bounceIn">
<div class="section-title">
<h2>Our Team</h2>
<p>This is our team</p>
</div>
</div>
<div id="owl-speakers" class="owl-carousel">
<div class="item wow fadeInUp col-md-3 col-sm-3">
<div class="speakers-wrapper">
<img src="images/team/sagar.jpg" class="img-responsive" alt="speakers">
</div>
<div class="speakers-thumb">
<h3>Sagar Lakhani</h3>
</div>
</div>
<div class="item wow fadeInUp col-md-3 col-sm-3">
<div class="speakers-wrapper">
<img src="images/team/aadya.jpg" class="img-responsive" alt="speakers">
</div>
<div class="speakers-thumb">
<h3>Aadya Mishra</h3>
</div>
</div>
<div class="item wow fadeInUp col-md-3 col-sm-3">
<div class="speakers-wrapper">
<img src="images/team/tanmay.jpg" class="img-responsive" alt="speakers">
</div>
<div class="speakers-thumb">
<h3>Tanmay Mittal</h3>
</div>
</div>
<div class="item wow fadeInUp col-md-3 col-sm-3">
<div class="speakers-wrapper">
<img src="images/team/mudit.jpg" class="img-responsive" alt="speakers">
</div>
<div class="speakers-thumb">
<h3>Mudit Goyal</h3>
</div>
</div>
<div class="item wow fadeInUp col-md-3 col-sm-3">
<div class="speakers-wrapper">
<img src="images/team/javed.jpg" class="img-responsive" alt="speakers">
</div>
<div class="speakers-thumb">
<h3>Javed Ali</h3>
</div>
</div>
<div class="item wow fadeInUp col-md-3 col-sm-3">
<div class="speakers-wrapper">
<img src="images/team/priyesh.jpg" class="img-responsive" alt="speakers">
</div>
<div class="speakers-thumb">
<h3>Priyesh Raj</h3>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section id="detail" class="parallax-section">
<div class="container">
<div class="row">
<div class="wow bounceIn col-md-12 col-sm-12">
<div class="section-title">
<h2>Adding webhook in Github</h2>
<p>All the participants of Product-Hack are requested to follow these steps so that we can
track all
the commits in your project repository.</p>
</div>
</div>a
<div class="points wow fadeInLeft col-md-12 col-sm-12" data-wow-delay="0.3s">
<li>Join the zulip chat using the link :
<a href="https://bhacks.zulipchat.com">https://bhacks.zulipchat.com</a>
</li>
<li>Go to your repository on GitHub and click on the <b>Settings</b> tab. Select <b>Webhooks</b>.
Click on <b>Add webhook</b>. GitHub may prompt you for your password.</li>
<li>Set <b>Payload URL</b> to <br>
<div style="background-color: rgb(223, 43, 73); font-size: 17px;">
https://bhacks.zulipchat.com/api/v1/external/github?api_key=tWwKmlSUEpuhrdLR6c4YJPgvhPoVrxbf&stream=github
</div>
Set Content type to <b>application/json</b>. Select <b>Just the push event</b> and click <b>Add
Webhook</b>.
</li>
</div>
</div>
</div>
</section> -->
<footer>
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<p class="wow fadeInUp" data-wow-delay="0.6s">Website Designed by <i class="fa fa-love"></i><a
style="color: #be1754;">IIIC Team</a>
<p class="wow fadeInUp" data-wow-delay="0.6s">© PRODUCT-HACK 2020. All Rights Reserved. <i
class="fa fa-love"></i>
<ul class="social-icon">
<li><a href="" class="fa fa-envelope wow fadeInUp" data-wow-delay="1.3s"></a></li>
<li><a href="" class="fa fa-twitter wow fadeInUp" data-wow-delay="1.6s"></a></li>
</ul>
</div>
</div>
</div>
</footer>
<a href="#back-top" class="go-top"><i class="fa fa-angle-up"></i></a>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
// Add smooth scrolling to all links
$("a").on('click', function (event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 1000, function () {
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
});
});
</script>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.parallax.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/smoothscroll.js"></script>
<script src="js/wow.min.js"></script>
<script src="js/custom.js"></script>
</body>
</html>