-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
835 lines (693 loc) · 27.8 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
<!DOCTYPE html>
<html>
<head>
<title>Octahacks 2.0</title>
<!-- meta tags for the charset different browser support and the sco and the website description -->
<meta charset="utf-8" />
<meta
name="keywords"
content="Octahacks, hackathon chitkara university, coding event summer, 36 hours of code"
/>
<meta
name="Description"
content="Octahacks is a 2 days coding event happen at chitkara university where students uses differnt fields from the given fields and then find a solution to the problems"
/>
<meta name="Author" content="Lord Abhay Sharma Himself" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Link the stylesheet -->
<link rel="stylesheet" href="./css/style.css" />
<!-- Animation on scroll library -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<!-- Baffle js for the text animations -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/baffle.min.js"></script>
<!-- Animation on scroll js framework cdn -->
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<!-- Jquery Cdn Do not remove -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/parallax/3.1.0/parallax.min.js"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<!-- jQuery Modal -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css" />
<link rel="stylesheet" href="./css/main.css">
<link rel="shortcut icon" href="./images/octahacks old logo.png">
</head>
<body>
<!-- <header>
<div class="top-bar">
<div class="top-bar-logo">
<div class="left">
<h1 id="octahacks-animations" class="data">
Octahacks
</h1>
</div>
</div>
</div>
<div class="nav">
<nav>
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#">Events</a>
</li>
<li>
<a href="#">Schedule</a>
</li>
</ul>
</nav>
</div>
</header> -->
<section id="Homepage">
<div class="Container">
<div class="homepage">
<div id="particles-js"></div>
<div class="Home-logo">
<div class="logo-image">
<div class="Image">
<img src="./images/img2.jpeg" />
</div>
</div>
</div>
<div class="content">
<div class="Heading-text">
<div class="Image-logo">
<img src="./images/octahacks old logo.png">
</div>
<div class="center-box">
<h1 class="Branding">
<Octahacks/>
</h1>
<p class="icon">
<i class="fa fa-calendar-o"></i>
<br>
<strong>
20-21 Sep
</strong>
<br>
<i class="fa fa-map-marker"></i>
<br>
<strong>
Chitkara University
</strong>
</p>
<a class="button down" id="yellow" href="#" onClick='alert("Registeration Closed ")'>
Registration closed
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="about-page" id="about">
<div class="container">
<div class="master-box" data-aos="fade-up" data-aos-duration="1500">
<div class="text-headline">
<h1>
In association with
</h1>
</div>
<div class="powered-by" id="top-sec">
<div class="image-con">
<img src="./images/iedc.jpeg">
</div>
<div class="image-con">
<img src="./images/tt.jpg">
</div>
<div class="image-con">
<img src="./images/ceed.jpeg">
</div>
<div class="image-con">
<img src="./images/iee.jpeg">
</div>
<div class="image-con">
<img src="./images/curin.png">
</div>
<div class="image-con" >
<img src="./images/ieee-woman.png">
</div>
<div class="image-con">
<img src="./images/iei.png">
</div>
<div class="image-con">
<img src="./images/acm.png">
</div>
</div>
<div class="text-headline">
<h1>
What is Octahacks ?
</h1>
</div>
<div class="head-box">
<div class="text-details">
<p>
OctaHacks 2.0 is an annual flagship 30 hours hackathon conducted by Developer Student Clubs (DSC)
. OctaHacks provides the participants with a unique opportunity to merge their creative ideas with their technical skills to build something new and exemplary. At OctaHacks, participants can meet fellow hackers, learn new technologies, and hone their skills alongside seasoned mentors.
Participants will be building a prototype in this 30 hour event. At the end, they will pitch and showcase their ideas which will be evaluated by a panel of judges to declare the top 3 teams. This is a hackathon for out-of-the-box thinkers, creatives, and innovators. It's scheduled on 20 and 21 September 2019.
</p>
</div>
</div>
<div class="Image-box" id="scene1">
<div class="Image-alignment" data-depth="1">
<img src="./manav/s1.jpg" alt="thinkers and doers" />
</div>
</div>
</div>
<div class="foot-text">
<div class="text-headline">
<h2>
......................................................
</h2>
<h3>
Only Constraint Is Time
</h3>
</div>
</div>
</div>
</section>
<article class="tracks-article">
<div class="container">
<div class="track-container">
<div class="text-headline">
<h1 class="white-text" id="this-head">
The 8 tracks of the Octahacks
</h1>
</div>
<div class="tracks-box">
<div class="tracks-row">
<div id="#ex1" class="modal:open tracks">
<img src="./images/tracks/smartcity.svg">
<div class="caption">
<p>
Smart City
<br>
<a class="link" href="#ex1" rel="modal:open">Read More</a>
</p>
</div>
</div>
<div class="tracks">
<img src="./images/tracks/security.svg">
<div class="caption">
<p>
Security
<br>
<a class="link" href="#ex2" rel="modal:open">Read More</a>
</p>
</div>
</div>
<div class="tracks">
<img src="./images/tracks/banking.svg">
<div class="caption">
<p>
Banking and Finance
<br>
<a class="link" href="#ex3" rel="modal:open">Read More</a>
</p>
</div>
</div>
</div>
<div class="tracks-row">
<div class="tracks">
<img src="./images/tracks/healthcare.svg">
<div class="caption">
<p>
HealthCare
<br>
<a class="link" href="#ex4" rel="modal:open">Read More</a>
</p>
</div>
</div>
<div class="tracks" id="tracks-mid-div">
<img src="./images/octahacks old logo.png" id="tracks-mid">
</div>
<div class="tracks">
<img src="./images/tracks/environment.svg">
<div class="caption">
<p>
Environment
<br>
<a class="link" href="#ex5" rel="modal:open">Read More</a>
</p>
</div>
</div>
</div>
<div class="tracks-row">
<div class="tracks">
<img src="./images/tracks/business.svg">
<div class="caption">
<p>
Business
<br>
<a class="link" href="#ex7" rel="modal:open">Read More</a>
</p>
</div>
</div>
<div class="tracks">
<img src="./images/tracks/education.png">
<div class="caption">
<p>
Education
<br>
<a class="link" href="#ex8" rel="modal:open">Read More</a>
</p>
</div>
</div>
<div class="tracks">
<img src="./images/tracks/farming.png">
<div class="caption">
<p>
Agriculture
<br>
<a class="link" href="#ex6" rel="modal:open">Read More</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<article class="code-of-conduct">
<div class="container">
<div class="wave"></div>
<div
class="master-box"
id="master-id"
data-aos="fade-up"
data-aos-duration="1500"
>
<div class="Heading-right">
<div class="text-right-headline">
<h1 class="white" id="F">
Code of Conduct
</h1>
</div>
</div>
<div class="Image-box-left" id="scene">
<div class="Image-alignment conduct-image" data-depth="1" id="hack">
<img src="./images/er.gif" alt="thinkers and doers" />
</div>
</div>
<div class="Heading-right">
<div class="text-details">
<p class="white center-align-text">
This Hackathon event is intended for learning and engagement in the developer community. We value everyone's participation. All the students are expected to show respect and courtesy to others throughout the event. Be kind to everyone. Behave in a nice manner. Any type of harassment is not welcomed in the event.
This is an educational event. Keep this in mind while speaking.
Hackathon staff will always be happy to help participants.Sponsors and partners are also subject to the anti-harassment policy. We expect everyone to follow these rules and make this event friendly for all.
</p>
</div>
<div class="wrapper">
<a href="#rules" class="button" rel="modal:open" >View Rules</a>
</div>
<div class="wrapper">
<a href="https://docs.google.com/document/d/1AZRRYnBqOkOgLqTJCn61p_yrKGcjQAPOzLj2--IX-Js/edit?usp=sharing" class="button" target="_blank">Read More..</a>
</div>
</div>
</div>
</div>
</article>
<article>
<div class="container">
<div
class="Full-body-container"
data-aos="fade-up"
>
<img src="./images/st.jpeg" alt="group-photo" />
</div>
</div>
</article>
<article class="timeline-container">
<div class="container">
<div class="master-box">
<div class="text-headline">
<h1>
Schedule
</h1>
</div>
<div class="Image-box-trophy">
<img src="images/x.gif">
</div>
<div class="Image-box-timeline">
<img src="images/timeline.png">
</div>
</div>
</div>
</article>
<article class="prizes">
<div class="container">
<div class="Master-box">
<div class="text-headline">
<h1 class="Main-tile">
Prizes
</h1>
</div>
<div class="Title-image">
<div class="Title-image-box">
<img src="./images/dsteve.jpg">
</div>
</div>
<div class="Prize-outer-box">
<div class="First-three">
<div class="Inbox">
<div class="Front-Face">
<h1>
1<sup>st</sup> Prize
</h1>
<br>
<br>
<h3>
Upto 2 . 5 Lakhs Prototyping Grant + Rs 20,000 cash Prize
</h3>
</div>
</div>
<div class="Inbox">
<div class="Front-Face">
<h1>
2<sup>nd</sup> Prize
</h1>
<br>
<br>
<h3>
Prize worth 1 . 5 lakhs + Rs 15,000 cash prize
</h3>
</div>
</div>
<div class="Inbox" id="third">
<div class="Front-Face">
<h1>
3<sup>rd</sup> Prize
</h1>
<br>
<br>
<h3>
Prize worth 1 lakhs + Rs 10,000 cash prize
</h3>
</div>
</div>
</div>
</div>
<!-- <div class="Prize-outer-box">
<div class="First-three">
<div class="Inbox">
<div class="Front-Face">
<h1>
₹20,000
</h1>
<p>
1st prize
</p>
</div>
</div>
<div class="Inbox">
<div class="Front-Face">
<h1>
₹20,000
</h1>
<p>
1st prize
</p>
</div>
</div>
<div class="Inbox">
<div class="Front-Face">
<h1>
₹20,000
</h1>
<p>
1st prize
</p>
</div>
</div>
</div>
</div> -->
<div class="text-headline">
<h1 class="purple-text">
Special goodies for all girls team
</h1>
</div>
<!-- <div class="Prize-second-box">
<div class="Next-Two">
<div class="Inbox">
<div class="Front-Face">
<h1>
₹20,000
</h1>
<p>
1st prize
</p>
</div>
</div>
<div class="Inbox">
<div class="Front-Face">
<h1>
₹20,000
</h1>
<p>
1st prize
</p>
</div>
</div>
</div>
</div> -->
</div>
</div>
</article>
<article class="sponsors" style="margin-top: 5%">
<div class="container">
<div class="Master-box">
<div class="Head-bar">
<div class="Head-bar-content">
<h1>
Sponsors
</h1>
<a href="mailto:[email protected]" >
Contact Here To Become A Sponsor
</a>
</div>
</div>
<div class="sponsor-type">
</div>
<div class="Sponser list">
<div class="container">
<div class="sponser-image">
<div class="powered-by">
<div class="powered-by-row">
<div class="image-con">
<img src="./images/sponser/Gatsby_Logo.png">
</div>
<div class="image-con">
<img src="./images/sponser/[email protected]">
</div>
<div class="image-con">
<img src="./images/sponser/jetbrains.png">
</div>
<div class="image-con">
<img src="./images/sponser/wolfram-language-text-logo-copy.png">
</div>
<div class="image-con">
<img src="./images/sponser/rosenfeld.png">
</div>
</div>
<div class="powered-by-row">
<div class="image-con" id="center">
<img src="./images/sponser/1.png">
</div>
<div class="image-con" id="center">
<img src="./images/sponser/educaffe.png">
</div>
<div class="image-con" id="center">
<img src="./images/sponser/CNLOGO.svg">
</div>
<div class="image-con" id="center">
<img src="./images/sponser/topcoderlogo01.png">
</div>
<div class="image-con" id="center">
<img src="./images/sponser/logo.png">
</div>
</div>
<div class="powered-by-row">
<div class="image-con" id="center">
<img src="./images/sponser/hyperdart.png">
</div>
<div class="image-con" id="center">
<img src="./images/sponser/lido.png">
</div>
<div class="image-con" id="center">
<img src="./images/sponser/cleartrip.png">
</div>
<div class="image-con" id="center">
<img src="./images/sponser/UPGRAD.jpg">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="download-box">
<div class="brochure">
<a href="./assets/SPONSHORSHIP BROCHURE-min.pdf" download="./assets/SPONSHORSHIP BROCHURE-min.pdf" class="button" >
Download Brochure
</a>
</div>
<br>
</div>
</div>
</div>
</article>
<div id="rules" class="modal">
<p>
1. Teams can consist of up to a maximum of 5 members and minimum 2.
<br>
2. Inter-college teams are allowed.
<br>
3. Teams should be made up exclusively of students (i.e. undergraduates or postgraduates) who are not judges, sponsors, or in any other privileged position at the event.
<br>
4. All team members should be present at the event. Leaving the venue for some time to hack elsewhere is fine.
<br>
5. Teams can of course gain advice and support from organizers, volunteers or sponsors.
<br>
6. All work on a project should be done at the hackathon.
<br>
7. Teams can work on ideas that have already been done. Hacks do not have to be “innovative”. If somebody wants to work on a common idea they should be allowed to do so and should be judged on the quality of their hack. These days it’s hard to find something that’s fully original and teams might not know an idea has been done before anyway.
<br>
8. Teams can work on an idea that they have worked on before (as long as they do not re-use code).
<br>
9. Teams can use libraries, frameworks, or open-source code in their projects. Working on a project before the event and open-sourcing it for the sole purpose of using the code during the event is against the spirit of the rules and is not allowed.
<br>
10. Participants must bring their own hardware as per their project requirement.
<br>
11. Adding new features to existing projects is allowed. Judges will only consider new functionality introduced or new features added during the hackathon in determining the winners.
<br>
12. Teams must stop hacking once the time is up. However, teams are allowed to debug and make small fixes to their programs after time is up. e.g. If during demoing your hack you find a bug that breaks your application and the fix is only a few lines of code, it's okay to fix that. Making large changes or adding new features is not allowed.
<br>
13. While selecting between 2 similar ideas, preference will be given to the team with maximum girl members.
<br>
14. Projects that violate the Code of Conduct are not allowed.
<br>
15. Teams can be disqualified from the competition at the organizers' discretion. Reasons might include but are not limited to breaking the Competition Rules, breaking the Code of Conduct, or other unsporting behaviour.
<br>
</p>
</div>
<div id="ex1" class="modal">
<p>
Smart Cities is a space in which developers, entrepreneurs, designers, professors, researchers and persons interested in making their city a better place can gather to build in a collaboratively fashion a solution that makes our city more efficient and intelligent.
<br>
</p>
</div>
<div id="ex2" class="modal">
<p>
Security-related issues are growing. The programs for public safety lack: An understanding of the security threats, vulnerabilities, and risks associated with the evolving systems; An understanding of the tools and techniques available to secure these systems. The increased use of automated technologies is also driving an increase in the advancement of the need for proper security systems.
<br>
</p>
</div>
<div id="ex3" class="modal">
<p>
From mobile payments to internet banking, an increased number of consumers are adopting fintech solutions today, and therefore there are a lot of exciting career options in this space.
</p>
</div>
<div id="ex4" class="modal">
<p>
The increase in patients has led to the decrease in the relative number of doctors per patient which results in a vicious cycle where ignored or delayed diagnostics of an ailment makes the patient more dependent on doctor’s check-up. Some also cannot afford to visit a doctor.
</p>
</div>
<div id="ex5" class="modal">
<p>
We are advancing in technology at a very rapid rate. But this development has made our nature suffer. It is considered more important to expand cities than to save trees.
</p>
</div>
<div id="ex6" class="modal">
<p>
Agricultural operations including animal and crop farming are essential contributors to depletion of natural resources' quality and quantity. Some problems in agriculture are instability, cropping pattern, land ownership, techniques of farming, marketing of agricultural products, etc.
</p>
</div>
<div id="ex7" class="modal">
<p>
As technology is evolving, Businesses are accelerating their investments in innovation and digital advancements. Today, in this fast trending world, many innovative ideas have turned into significant business adventures. Here, we are looking forward to our next Facebook, Uber or Zomato.
</p>
</div>
<div id="ex8" class="modal">
<p>
A large part of our population is still not able to receive proper education due to lack of resources. Education is important for everyone, but only a few have access to it. Children of poor families tend to move frequently, which disrupts their education.
</p>
</div>
<article class="contact">
<div class="container">
<div class="master-box">
<div class="text-headline">
<h1>
In case of query
</h1>
<p class="coordinator">
Contact with our student coordinators
</p>
</div>
</div>
<div class="contact-box">
<div class="c1">
<h1>
Ramanpreet Singh
</h1>
<a href="tel:7528957640">
+91 7528957640
</a>
</div>
<div class="c1">
<h1>
Rahul Goyal
</h1>
<a href="tel:9988866864">
+91 9988866864
</a>
</div>
</div>
</div>
</article>
<article class="footer">
<div class="Container">
<div class="master-box">
<div class="base">
<div class="small-image">
<img src="./images/octahacks old logo.png">
</div>
<h1 class="upar">
<a href="mailto:[email protected]">
</a>
</h1>
<h1>
<address>
Chitkara University, Chandigarh-Patiala National Highway (NH- 64), Rajpura, Punjab.
</address>
</h1>
</div>
</div>
</div>
</article>
</body>
<script>
const data = baffle(".Branding");
data.set({
characters: "░<▒ ██<░█ █>░█▓ ▓█░ ▒█/▒░ ▒</█ >░/ //▒> █>▓░",
speed: 120
});
data.start();
data.reveal(3000);
</script>
<script>
var scene = document.getElementById('scene');
var parallax = new Parallax(scene);
var scene1 = document.getElementById('scene1');
var parallax1 = new Parallax(scene1);
</script>
<script src="js/main.js"></script>
</html>