-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
822 lines (808 loc) · 40.7 KB
/
index.html
File metadata and controls
822 lines (808 loc) · 40.7 KB
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
<!doctype html>
<html lang="zxx">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="keywords" content>
<meta name="description" content>
<title>KarunyaHacks</title>
<!--favicon-->
<link rel="shortcut icon" type="image/png" href="images/logo-head.png">
<!--bootstrap css-->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<!--owl carousel css-->
<link rel="stylesheet" type="text/css" href="css/owl.carousel.min.css">
<!--magnific popup css-->
<link rel="stylesheet" type="text/css" href="css/magnific-popup.css">
<!--font awesome css-->
<link rel="stylesheet" type="text/css" href="css/fontawesome-all.min.css">
<!--icomoon icon css-->
<link rel="stylesheet" type="text/css" href="css/icomoon.css">
<!--icofont css-->
<link rel="stylesheet" type="text/css" href="css/icofont.min.css">
<!--animate css-->
<link rel="stylesheet" type="text/css" href="css/animate.css">
<!--main css-->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!--responsive css-->
<link rel="stylesheet" type="text/css" href="css/responsive.css">
</head>
<body>
<!--Start Preloader-->
<div class="preloader">
<div class="d-table">
<div class="d-table-cell align-middle">
<div class="spinner">
<div class="double-bounce1"></div>
<div class="double-bounce2"></div>
</div>
</div>
</div>
</div>
<!--End Preloader-->
<!--start header-->
<header id="header" class="two">
<div class="container">
<nav class="navbar navbar-expand-lg">
<div class="container">
<!-- Logo -->
<a class="logo" href="#"><img src="images/logo-kh.png" alt="logo"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarContent"
aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="icon-bar"><i class="icofont-navigation-menu"></i></span>
</button>
<!-- navbar links -->
<div class="collapse navbar-collapse" id="navbarContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link active" href="#home-area" data-scroll-nav="0">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about-area" data-scroll-nav="1">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#awesome-feat-area" data-scroll-nav="2">Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="gallery.html">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#screenshot-area" data-scroll-nav="4">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#team-area" data-scroll-nav="5">Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faq-area" data-scroll-nav="6">FAQ's</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact-area" data-scroll-nav="7">Contact</a>
</li>
<!-- <li class="nav-item download-btn">
<a class="nav-link" href="#" data-scroll-nav="5">Download</a>
</li> -->
</ul>
</div>
</div>
</nav>
</div>
</header>
<!--end header-->
<!--start home area-->
<section id="home-area" class="bg-2" data-scroll-index="0">
<div class="container">
<div class="row">
<!--start caption-->
<div class="col-lg-7 col-md-8">
<div class="caption two d-table">
<div class="d-table-cell align-middle">
<h1 class="mb-3">Karunya Hacks </h1>
<h4 class="text-dark font-open-sans">KarunyaHacks is a student hacking community that is
affilated to Karunya Institute of Technology and Sciences. <br /><br />Students take up
challenges to solve day-to-day problems in the main thrust areas- Water, Food, Health
and Energy through scientific innovation and technological research. </h4>
<div class="caption-btns v2">
<a class="bg" href>About Us</a>
<!-- <a class="popup-video" href="https://www.youtube.com/watch?v=iaj8ktgL3BY&t=5s"><i class="icofont-ui-play"></i> Play video</a> -->
</div>
<!-- <div class="caption-download-btns v2">
<ul>
<li><a href><i class="icofont-brand-android-robot"></i></a></li>
<li><a href><i class="icofont-brand-apple"></i></a></li>
<li><a href><i class="icofont-brand-windows"></i></a></li>
</ul>
</div> -->
</div>
</div>
</div>
<!--end caption-->
</div>
</div>
</section>
<!--start about area-->
<section id="about-area" class="bg-3" data-scroll-index="1">
<div class="container">
<div class="row">
<!--start about content-->
<div class="col-md-6">
<div class="about-cont">
<h5>About Karunya Hacks</h5>
<h2>An Innovative Space!</h2>
<p>It’s a safe space for students to grow, learn and build their skills to grab opportunities
and reach career heights.We conduct informative, interactive events and hackathons around
the working year, which nthe capabilities of students in our community.</p>
<p>All hackathons come fully packed with an exhaustive list of out-of-the-box events which drive
the students to participate enthusiastically and win certificates from our sponsors and
attractive prizes.Students from all years irrespective of their interest areas are always
welcomed with open arms.</p>
</div>
<!-- <div class="about-info row">
<div class="col-md-6 col-6">
<div class="about-info-single">
<div class="icon">
<i class="icon-employee"></i>
</div>
<div class="content">
<h3>17,501</h3>
<p>Premium User</p>
</div>
</div>
</div>
<div class="col-md-6 col-6">
<div class="about-info-single two">
<div class="icon">
<i class="icon-eye-tracking"></i>
</div>
<div class="content">
<h3>1,987</h3>
<p>Daily Visitors</p>
</div>
</div>
</div>
</div> -->
</div>
<!--end about content-->
</div>
</div>
<!--start app mocup-->
<div class="about-app-mocup">
<img src="images/app-mockup.png" class="img-fluid" alt>
</div>
<!--end app mocup-->
</section>
<!--end about area-->
<!--start awesome feature area-->
<section id="awesome-feat-area" class="bg-2" data-scroll-index="2">
<div class="container">
<div class="row">
<!--start section heading-->
<div class="col-lg-6 offset-lg-3 col-md-8 offset-md-2">
<div class="section-heading text-center">
<h5>an exhaustive thriving list of</h5>
<h2>Awesome Events</h2>
<p>Here’s a few of the exciting events students can took part in . And if you haven’t yet seen
an area you want to learn in. No worries! Contact us and you might be surprised by a few
weeks time!</p>
</div>
</div>
<!--end section heading-->
</div>
</div>
<div class="row">
<!--start feature images-->
<div class="col-md-5">
<div class="awesome-feat-img text-center">
<a data-owl-item="1" class="feature-link active">
<div class="feat-screen-single">
<img src="images/event-pics.png" class="img-fluid" alt>
</div>
</a>
<a data-owl-item="2" class="feature-link">
<div class="feat-screen-single">
<img src="images/event-pics1.png" class="img-fluid" alt>
</div>
</a>
<a data-owl-item="3" class="feature-link">
<div class="feat-screen-single">
<img src="images/event-pics.png" class="img-fluid" alt>
</div>
</a>
<a data-owl-item="4" class="feature-link">
<div class="feat-screen-single">
<img src="images/event-pics1.png" class="img-fluid" alt>
</div>
</a>
</div>
</div>
<!--end feature images-->
<div class="col-md-7">
<div class="feat-carousel-wrap">
<div class="awesome-feat-carousel owl-carousel">
<!--start awesome-feat-single-->
<div class="awesome-feat-single text-center">
<div class="icon">
<img src="images/icon-user-1.png" class="img-fluid" alt>
</div>
<h3>Docker</h3>
<p>During this workshop students were taught the basics of Docker and Software Containers.
The workshop covered setting up Docker, running the first container, creating a basic
web application with Python and Docker, and how to push the Docker Image to DockerHub.
It was led by our own talented ,hardworking students. </p>
</div>
<!--end awesome-feat-single-->
<!--start awesome-feat-single-->
<div class="awesome-feat-single text-center">
<div class="icon two">
<img src="images/icon-like-1.png" class="img-fluid" alt>
</div>
<h3>Amazon Alexa</h3>
<p>We have conducted Amazon Alexa workshop in association with the MLH Local Host
continuously for the past two years. During this workshop participants will be taught
the basics of how to build skills for Amazon Alexa to run on Alexa devices like the
Amazon Tap or Echo. Who doesn’t like to play with technology once in a while? </p>
</div>
<!--end awesome-feat-single-->
<!--start awesome-feat-single-->
<div class="awesome-feat-single text-center">
<div class="icon three">
<img src="images/icon-user-1.png" class="img-fluid" alt>
</div>
<h3>Web Development</h3>
<p>Want to design your own personalized webpage? KHACKS has you covered! Students were
taught the basics of web development and were given free reign to work on their creative
projects and gained a valuable skill. </p>
</div>
<!--end awesome-feat-single-->
<!--start awesome-feat-single-->
<div class="awesome-feat-single text-center">
<div class="icon two">
<img src="images/icon-like-1.png" class="img-fluid" alt>
</div>
<h3>BlockChain</h3>
<p>Blockchain technology is most simply defined as a decentralized, distributed ledger that
records the provenance of a digital asset. Students got familiar with this upcoming
technology and gained insight and interest in it.</p>
</div>
<!--end awesome-feat-single-->
</div>
</div>
</div>
</div>
</section>
<!--end awesome feature area-->
<!--start how work area-->
<section id="how-work-area" class="bg-3" data-scroll-index="3">
<div class="container">
<div class="row">
<!--start section heading-->
<div class="col-lg-6 offset-lg-3 col-md-8 offset-md-2">
<div class="section-heading text-center">
<h5>Schedule</h5>
<h2>Let’s See Upcoming Events</h2>
<p>Challenge yourself and learn about the upcoming technologies with hands on experience on how
to implement them into your projects and solutions.Join us and be the game changer for your
generation!</p>
</div>
</div>
<!--end section heading-->
</div>
<div class="row how-work-wrap">
<div class="how-work-bg"></div>
<!--start how work single-->
<div class="col-lg-offset-1 col-lg-3 col-md-4">
<div class="how-work-single">
<div class="icon">
<i class="fab fa-docker"></i>
<!-- <i class="icofont-cloud-download"></i> -->
<div class="number">01</div>
</div>
<h3>Docker</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Veritatis officia assumenda
reiciendis ab quasi quia ipsum. Sed nostrum illum praesentium.</p>
<p id="count" style="font-weight: bold;"></p>
</div>
</div>
<!--end how work single-->
<!--start how work single-->
<div class="col-lg-3 col-md-4">
<div class="how-work-single two">
<div class="icon">
<i class="fas fa-file-code"></i>
<!-- <i class="icofont-settings"></i> -->
<div class="number">02</div>
</div>
<h3>Web Development</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Deleniti temporibus officia a. Rem
ut maiores recusandae velit perspiciatis molestiae aliquam.</p>
<p id="count1" style="font-weight: bold;"></p>
</div>
</div>
<!--end how work single-->
<!--start how work single-->
<div class="col-lg-3 col-md-4">
<div class="how-work-single three">
<div class="icon">
<i class="fab fa-python"></i>
<!-- <i class="icofont-trophy"></i> -->
<div class="number">03</div>
</div>
<h3>Python Bootcamp</h3>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. </p>
<p id="count2" style="font-weight: bold;"></p>
</div>
</div>
<!--end how work single-->
</div>
</div>
</section>
<!--end how work area-->
<!--start newsletter area-->
<section id="newsletter-area" class="bg-2">
<div class="container">
<div class="row">
<!--start section heading-->
<div class="col-lg-6 offset-lg-3 col-md-8 offset-md-2">
<div class="section-heading text-center">
<h5>Be the one to sponsor us</h5>
<h2 class="text-white">Be the part of Karunya Hacks</h2>
<p class="text-light">We provide working labs , skilled students willing to learn more and
hardworking participants who are willing to do whatever it takes to reach heights! You’ll be
helping shape the next generation of influencers and game changers.</p>
</div>
</div>
<!--end section heading-->
</div>
<div class="row">
<!--start newsletter form-->
<div class="col-lg-8 offset-lg-2 col-md-10 offset-md-1">
<button type="submit" class="sponsor-btn">SPONSOR US</button>
<div class="newsletter-form two">
<!-- <form id="mc-newsletter" action="newsletter/config.php" method="post">
<div class="newsletter-input-bx">
<input type="email" class="form-control" id="mc-email" name="mc-email" placeholder="Enter Your Email" required>
<button type="submit">SUBSCRIBE</button>
</div>
</form> -->
<div id="response"></div>
</div>
</div>
<!--end newsletter form-->
</div>
</div>
</section>
<!--end newsletter area-->
<!--screenshot area-->
<section id="screenshot-area" class="bg-2" data-scroll-index="4">
<div class="container">
<div class="row">
<!--start section heading-->
<div class="col-md-8 offset-md-2">
<div class="section-heading text-center">
<h5>Look at our outstanding projects</h5>
<h2>The Screenshot Gallery</h2>
<p>This is our list of projects where our team and participants propsose innovative ideas and
implement in an efficient way!</p>
</div>
</div>
<!--end section heading-->
</div>
<div class="screen-wrap">
<div class="screenshot-frame"></div>
<div class="screen-carousel owl-carousel">
<img src="images/screen-1.jpg" class="img-fluid" alt>
<img src="images/screen-2.jpg" class="img-fluid" alt>
<img src="images/screen-3.jpg" class="img-fluid" alt>
<img src="images/screen-4.jpg" class="img-fluid" alt>
<img src="images/screen-2.jpg" class="img-fluid" alt>
</div>
</div>
</div>
</section>
<!--end area-->
<!--start team area-->
<section id="team-area" data-scroll-index="5">
<div class="container">
<div class="row">
<div class="col-lg-6 offset-lg-3 col-md-8 offset-md-2">
<div class="section-heading text-center">
<h5>Our creative team</h5>
<h2>Meet The Team</h2>
<p>Meet the people behind Karunya Hacks! We are the team of professional analysts, publishing
dozens of application. Join us!</p>
</div>
</div>
</div>
<div class="row">
<div class="btn-group col-lg-6 offset-lg-4 col-md-8 offset-md-2 mb-5 team-nav" role="group"
aria-label="...">
<button type="button" class="btn btn-default btn-lg team-btn1 team-active-btn" id="team-btn1" onclick="display_team2020()">Batch of
2020</button>
<button type="button" class="btn btn-default btn-lg team-btn2" id="team-btn2" onclick="display_team2021()">Batch of
2021</button>
</div>
</div>
<script type="text/javascript">
function display_team2020() {
var x = document.getElementById("batch2020");
var y = document.getElementById("batch2021");
var btn1 = document.getElementById("team-btn1");
var btn2 = document.getElementById("team-btn2");
x.style.display="";
y.style.display="none";
btn1.classList.add("team-active-btn");
btn2.classList.remove("team-active-btn");
}
function display_team2021() {
var x = document.getElementById("batch2020");
var y = document.getElementById("batch2021");
var btn1 = document.getElementById("team-btn1");
var btn2 = document.getElementById("team-btn2");
x.style.display="none";
y.style.display="";
btn2.classList.add("team-active-btn");
btn1.classList.remove("team-active-btn");
}
</script>
<div class="row" id="batch2020">
<!--start team single-->
<div class="col-lg-3 col-md-6">
<div class="team-single text-center">
<div class="team-img">
<img src="images/team-1.jpg" class="img-fluid" alt>
<div class="team-social two">
<ul>
<li><a href><i class="icofont-facebook"></i></a></li>
<li><a href><i class="icofont-twitter"></i></a></li>
<li><a href><i class="icofont-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="team-info">
<h3>Penny Tool</h3>
</div>
</div>
</div>
<!--end team single-->
<!--start team single-->
<div class="col-lg-3 col-md-6">
<div class="team-single text-center">
<div class="team-img">
<img src="images/team-2.jpg" class="img-fluid" alt>
<div class="team-social two">
<ul>
<li><a href><i class="icofont-facebook"></i></a></li>
<li><a href><i class="icofont-twitter"></i></a></li>
<li><a href><i class="icofont-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="team-info">
<h3>Pat Hines</h3>
</div>
</div>
</div>
<!--end team single-->
<!--start team single-->
<div class="col-lg-3 col-md-6">
<div class="team-single text-center">
<div class="team-img">
<img src="images/team-3.jpg" class="img-fluid" alt>
<div class="team-social two">
<ul>
<li><a href><i class="icofont-facebook"></i></a></li>
<li><a href><i class="icofont-twitter"></i></a></li>
<li><a href><i class="icofont-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="team-info">
<h3>Donald Huff</h3>
</div>
</div>
</div>
<!--end team single-->
<!--start team single-->
<div class="col-lg-3 col-md-6">
<div class="team-single text-center">
<div class="team-img">
<img src="images/team-4.jpg" class="img-fluid" alt>
<div class="team-social two">
<ul>
<li><a href><i class="icofont-facebook"></i></a></li>
<li><a href><i class="icofont-twitter"></i></a></li>
<li><a href><i class="icofont-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="team-info">
<h3>Angela Moore</h3>
</div>
</div>
</div>
<!--end team single-->
</div>
<div class="row" id="batch2021" style="display: none;">
<!--start team single-->
<div class="col-lg-3 col-md-6">
<div class="team-single text-center">
<div class="team-img">
<img src="images/team-1.jpg" class="img-fluid" alt>
<div class="team-social two">
<ul>
<li><a href><i class="icofont-facebook"></i></a></li>
<li><a href><i class="icofont-twitter"></i></a></li>
<li><a href><i class="icofont-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="team-info">
<h3>John Doe</h3>
</div>
</div>
</div>
<!--end team single-->
<!--start team single-->
<div class="col-lg-3 col-md-6">
<div class="team-single text-center">
<div class="team-img">
<img src="images/team-2.jpg" class="img-fluid" alt>
<div class="team-social two">
<ul>
<li><a href><i class="icofont-facebook"></i></a></li>
<li><a href><i class="icofont-twitter"></i></a></li>
<li><a href><i class="icofont-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="team-info">
<h3>Ronaldo</h3>
</div>
</div>
</div>
<!--end team single-->
<!--start team single-->
<div class="col-lg-3 col-md-6">
<div class="team-single text-center">
<div class="team-img">
<img src="images/team-3.jpg" class="img-fluid" alt>
<div class="team-social two">
<ul>
<li><a href><i class="icofont-facebook"></i></a></li>
<li><a href><i class="icofont-twitter"></i></a></li>
<li><a href><i class="icofont-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="team-info">
<h3>Donald Mesii</h3>
</div>
</div>
</div>
<!--end team single-->
<!--start team single-->
<div class="col-lg-3 col-md-6">
<div class="team-single text-center">
<div class="team-img">
<img src="images/team-4.jpg" class="img-fluid" alt>
<div class="team-social two">
<ul>
<li><a href><i class="icofont-facebook"></i></a></li>
<li><a href><i class="icofont-twitter"></i></a></li>
<li><a href><i class="icofont-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="team-info">
<h3>Angel Johnson</h3>
</div>
</div>
</div>
<!--end team single-->
</div>
</div>
</section>
<!--end team area-->
<!--start faq area-->
<section id="faq-area" class="bg-2" data-scroll-index="6">
<div class="container">
<div class="row">
<!--start section heading-->
<div class="col-md-8 offset-md-2">
<div class="section-heading text-center">
<h5>Take A look</h5>
<h2>Frequently Asked Questions</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nulla veniam quis optio unde
pariatur voluptate ad neque labore maiores vitae, repellendus corrupti modi, nesciunt soluta
aliquid quisquam nostrum reiciendis assumenda!</p>
</div>
</div>
<!--end section heading-->
</div>
<div class="row">
<div class="col-md-7">
<div id="accordion" role="tablist">
<!--start faq single-->
<div class="card two">
<div class="card-header active" role="tab" id="faq1">
<h5 class="mb-0">
<a data-toggle="collapse" href="#collapse1" aria-expanded="true"
aria-controls="collapse1">How is KarunyaHacks beneficial?</a>
</h5>
</div>
<div id="collapse1" class="collapse show" role="tabpanel" aria-labelledby="faq1"
data-parent="#accordion">
<div class="card-body">
<p>It provides students a chance to explore their technical Skills.</p>
</div>
</div>
</div>
<!--end faq single-->
<!--start faq single-->
<div class="card two">
<div class="card-header" role="tab" id="faq2">
<h5 class="mb-0">
<a class="collapsed" data-toggle="collapse" href="#collapse2" aria-expanded="false"
aria-controls="collapse2">How often does karunyaHacks host events?</a>
</h5>
</div>
<div id="collapse2" class="collapse" role="tabpanel" aria-labelledby="faq2"
data-parent="#accordion">
<div class="card-body">
<p>We host two events every month.</p>
</div>
</div>
</div>
<!--end faq single-->
<!--start faq single-->
<div class="card two">
<div class="card-header" role="tab" id="faq3">
<h5 class="mb-0">
<a class="collapsed" data-toggle="collapse" href="#collapse3" aria-expanded="false"
aria-controls="collapse3">What should I bring?</a>
</h5>
</div>
<div id="collapse3" class="collapse" role="tabpanel" aria-labelledby="faq3"
data-parent="#accordion">
<div class="card-body">
<p>All participants are requested to bring their personal laptop and any related
resources required to design your dream.</p>
</div>
</div>
</div>
<!--end faq single-->
<!--start faq single-->
<div class="card two">
<div class="card-header" role="tab" id="faq4">
<h5 class="mb-0">
<a class="collapsed" data-toggle="collapse" href="#collapse4" aria-expanded="false"
aria-controls="collapse4">Is coding experience required?</a>
</h5>
</div>
<div id="collapse4" class="collapse" role="tabpanel" aria-labelledby="faq4"
data-parent="#accordion">
<div class="card-body">
<p>Ofcourse not! All students who want to learn about technology,design and building
innovative products are welcome.</p>
</div>
</div>
</div>
<!--end faq single-->
</div>
</div>
<div class="col-md-5">
<div class="faq-img">
<img src="images/faq-img-1.png" class="img-fluid" alt>
</div>
</div>
</div>
</div>
</section>
<!--end faq area-->
<!--start contact area-->
<section id="contact-area" class="bg-2" data-scroll-index="7">
<div class="container">
<div class="row">
<!--start section heading-->
<div class="col-lg-5 col-md-8">
<div class="section-heading">
<h5>Contact us</h5>
<h2>Get In Touch</h2>
<p>If you have any questions, just fill in the contact form, and we will answer you shortly.</p>
</div>
</div>
<!--end section heading-->
</div>
<div class="row">
<!--start contact form-->
<div class="col-lg-5 col-md-7">
<div class="contact-form two">
<form id="ajax-contact" action="contact.php" method="post">
<div class="form-group">
<input type="text" class="form-control" id="name" name="name" placeholder="Name*"
required="required" data-error="name is required.">
<div class="help-block with-errors"></div>
</div>
<div class="form-group">
<input type="email" class="form-control" id="email" name="email" placeholder="Email*"
required="required" data-error="valid email is required.">
<div class="help-block with-errors"></div>
</div>
<div class="form-group">
<textarea class="form-control" id="message" name="message" rows="10"
placeholder="Message*" required="required"
data-error="Please, leave us a message."></textarea>
<div class="help-block with-errors"></div>
</div>
<button type="submit">SUBMIT NOW</button>
<div class="messages"></div>
</form>
</div>
</div>
<!--end contact form-->
</div>
</div>
</section>
<!--end contact area-->
<!--start footer-->
<footer id="footer" class="bg-2">
<div class="container">
<div class="get-started two">
<div class="row">
<div class="col-lg-6 col-md-8">
<h2>Ready To Get Paticipated?</h2>
<p class="text-light">Don't waste another minute.Register for our upcoming event now and become
pro in what you are learning!</p>
</div>
<div class="col-lg-6 col-md-4">
<a href>Register Now</a>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="row">
<div class="col-lg-6 col-md-7">
<p>© 2020 KarunyaHacks | All right reserved.</p>
</div>
<div class="col-lg-6 col-md-5">
<div class="footer-social text-right">
<ul>
<li><a href><i class="icofont-instagram"></i></a></li>
<li><a href><i class="icofont-linkedin"></i></a></li>
<li><a href><i class="fab fa-github"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
<!--end footer-->
<!--jQuery js-->
<script src="js/jquery-3.3.1.min.js"></script>
<!--proper js-->
<script src="js/popper.min.js"></script>
<!--bootstrap js-->
<script src="js/bootstrap.min.js"></script>
<!--counter js-->
<script src="js/waypoints.js"></script>
<script src="js/counterup.min.js"></script>
<!--magnic popup js-->
<script src="js/magnific-popup.min.js"></script>
<!--owl carousel js-->
<script src="js/owl.carousel.min.js"></script>
<!--owl scrollIt js-->
<script src="js/scrollIt.min.js"></script>
<!--validator js-->
<script src="js/validator.min.js"></script>
<!--contact js-->
<script src="js/contact.js"></script>
<!--ajax newsletter js-->
<script src="js/ajax-newsletter-form.js"></script>
<!--main js-->
<script src="js/custom.js"></script>
<!--CountDown js-->
<script src="js/count.js"></script>
<script src="js/count1.js"></script>
<script src="js/count2.js"></script>
</body>
</html>