-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
992 lines (908 loc) · 53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>IIT-P Gymkhana </title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="" name="keywords" />
<meta content="" name="description" />
<!-- Favicons -->
<link href="./img/logo.png" rel="icon" />
<link href="./img/logo.png" rel="apple-touch-icon" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Montserrat:300,400,500,700" 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/ionicons/css/ionicons.min.css" rel="stylesheet" />
<link href="./lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet" />
<link href="./lib/lightbox/css/lightbox.min.css" rel="stylesheet" />
<!-- Main Stylesheet File -->
<link href="./css/style.css" rel="stylesheet" />
<!-- Owl Carousel -->
<link rel="stylesheet" type="text/css" href="./lib/OwlCarousel2-2.3.4/dist/assets/owl.carousel.css" />
<link rel="stylesheet" type="text/css" href="./lib/OwlCarousel2-2.3.4/dist/assets/owl.theme.default.min.css" />
</head>
<body>
<!--==========================
Header
============================-->
<header id="header">
<div class="container-fluid">
<div id="logo" class="pull-left">
<!-- <h1><a href="#intro" class="scrollto">BizPage</a></h1> -->
<!-- Uncomment below if you prefer to use an image logo -->
<a href="#intro"><img id="logo-img" src="img/logo.png" /></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="#clubs">Clubs</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#faq">FAQs</a></li>
<li><a href="./social/index.html">Social Links</a></li>
<li><a href="officebearers.html">Office Bearers</a></li>
</ul>
</nav>
<!-- #nav-menu-container -->
</div>
</header>
<!-- #header -->
<!--==========================
Intro Section
============================-->
<section id="intro">
<div class="intro-container">
<div id="introCarousel" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators"></ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="carousel-background">
<img src="img/intro-carousel/1.jpg" alt="" />
</div>
<div class="carousel-container">
<div class="carousel-content">
<h2>Students' Gymkhana, IIT Patna</h2>
<p>
The Students' Gymkhana of IIT Patna (established in 2008) is the governing council of students consisting of the elected student representatives working for the over-all well being and holistic development of students in the institute.
</p>
<a href="#about" class="btn-get-started scrollto">Know More</a
>
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-background">
<img src="img/intro-carousel/2.jpg" alt="" />
</div>
<div class="carousel-container">
<div class="carousel-content">
<h2>Students' Gymkhana, IIT Patna</h2>
<p>
The Students' Gymkhana of IIT Patna (established in 2008) is
the governing council of students consisting of the elected
student representatives working for the over-all well being
and holistic development of students in the institute.
</p>
<a href="#about" class="btn-get-started scrollto"
>Know More</a
>
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-background">
<img src="img/intro-carousel/3.jpg" alt="" />
</div>
<div class="carousel-container">
<div class="carousel-content">
<h2>Students' Gymkhana, IIT Patna</h2>
<p>
The Students' Gymkhana of IIT Patna (established in 2008) is
the governing council of students consisting of the elected
student representatives working for the over-all well being
and holistic development of students in the institute.
</p>
<a href="#about" class="btn-get-started scrollto"
>Know More</a
>
</div>
</div>
</div>
</div>
<a
class="carousel-control-prev"
href="#introCarousel"
role="button"
data-slide="prev"
>
<span
class="carousel-control-prev-icon ion-chevron-left"
aria-hidden="true"
></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#introCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon ion-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</section>
<!-- #intro -->
<main id="main">
<!--==========================
About Us Section
============================-->
<section id="about">
<div class="container">
<header class="section-header">
<h3>About</h3>
</header>
<div class="row about-cols">
<div class="col-md-12 wow fadeInUp">
<div class="about-col about-col-clip1">
<header class="section-header">
<h2>About IIT PATNA</h2>
</header>
<p>
Indian Institute of Technology Patna is developing fast and emerging as an institute of excellence promoting intelligent, hard working and technically curious minds. IIT Patna has state-of-the-art infrastructure including classrooms and laboratories in
imparting world class education. We have a wide range of research programmes, and many curricular and extra-curricular events to ignite the minds of enginnering students.
</p>
<p>
The Indian Institute of Technology Patna epitomizes and reveres this limitless power in every way of its life and functioning. Established as an institute of national importance through an act of parliament in 2008, IIT Patna strives to provide world
class education and an intellectually stimulating environment in an endeavor to develop well rounded individuals with technical and professional competence of the highest degree.
</p>
<p>
IIT Patna houses many projects in all the academic units. Many international institutes have shown their interest in collaborating with IIT Patna in various areas of research and teaching.Some of them include University of Houston, Louisiana State University,
University of North Texas, University of New South Wales and UNICEF Bihar.
</p>
</div>
</div>
<div class="col-md-12 wow fadeInUp" data-wow-delay="0.1s">
<div class="about-col about-col-clip2">
<header class="section-header">
<h2>About Students' Gymkhana</h2>
</header>
<p>
The Students' Gymkhana of IIT Patna (established in 2008) is the governing council of students consisting of the elected student representatives working for the over-all well being and holistic development of students in the institute.
</p>
<p>
The elected representatives of the students from each hostel strive to foster growth and leadership among the students by coordinating various events helping to extract the maximum of ones talent. To promote the co-curricular activities and interests,
the gymkhana has many clubs and groups dedicated to the interests of the students.
</p>
<p>
Sports at IIT Patna bring together relaxation and competition getting the best of every player. It organizes various inter-hostel and inter-department competitions.
</p>
<p>
The blending of different cultures has lent uniqueness to the cultural activities which are organized throughout the year. The organization of various workshops, seminars and various technical activities at IIT Patna makes learning an enjoyable experience.
</p>
<p>
All these and numerous other clubs come together to organize the big fests - ANWESHA, INFINITO, CELESTA, REVERBERANCE, etc... and together make the IITP legacy.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- #about -->
<!--========================
Club Section
===========================-->
<section id="clubs">
<div class="container">
<header class="section-header">
<h1 class="display-4 text-center">
Clubs
</h1>
</header>
<div class="row row-clubs">
<div class="col col-content col-content-text wow fadeInUp" data-wow-delay="0.1s">
<div class="box">
<div class="text">
<div>
<h1 class="text-center">Cultural Committee</h1>
<p class="lead">
The cultural committee House of Socio-Cultural Affairs (HoSCA) organizes and promotes all the extra-curricular activities in the institute. HoSCA aims to promote different forms of culture - dramatics, dance, literature, fine arts, speaking arts, photography,
etc. The committee organizes small events for easing out the academic pressure on students as well. Fests like Reverberance, Nebula and many more intra college and inter college gaming competitions are organized
successfully by this club.
</p>
<p class="lead">
For the latest news and updates about ‘Cultural Committee’, please visit the student-run portals listed below. The views/ opinions expressed at the links belong solely to the authors and may not necessarily represent the views of the Indian Institute
of Technology Patna.
</p>
</div>
</div>
</div>
</div>
<div class="col col-content-images wow fadeInUp" data-wow-delay="0.1s">
<div class="composition">
<img src="img/clubs/cultural/danceclub.jpg" alt="photo1" class="composition__photo composition__photo--p1" />
<img src="img/clubs/cultural/aria.jpg" alt="photo2" class="composition__photo composition__photo--p2" />
<img src="img/clubs/cultural/yavanika.png" alt="photo3" class="composition__photo composition__photo--p3" />
</div>
</div>
</div>
<div class="row row-clubs">
<div class="col col-content col-content-text wow fadeInUp" data-wow-delay="0.1s">
<div class="box">
<div class="text">
<div>
<h1 class="text-center">Entrepreneurship Club</h1>
<p class="lead">
The Entrepreneurship Club at IIT Patna was setup with the vision to create a gelling point for aspiring entrepreneurs at the institute. The club’s mission is to educate the students about the nuances involved in business and entrepreneurship and to prepare
them to undertake the journey from the genesis of an idea to its successful business implementation.
</p>
<p class="lead">
The Club regularly hosts guest lectures by distinguished personalities from the industry and academia, in addition to organising various business and marketing competitions round the year
</p>
<p class="lead">
For the latest news and updates about ‘Entrepreneurship Club’, please visit the student-run portals listed below. The views/ opinions expressed at the links belong solely to the authors and may not necessarily represent the views of the Indian Institute
of Technology Patna
</p>
</div>
</div>
</div>
</div>
<div class="col col-content-images wow fadeInUp" data-wow-delay="0.1s">
<div class="composition">
<img src="img/clubs/eclub/pic1.jpg" alt="photo1" class="composition__photo composition__photo--p1" />
<img src="img/clubs/eclub/pic2.jpg" alt="photo2" class="composition__photo composition__photo--p2" />
<img src="img/clubs/eclub/pic3.jpg" alt="photo3" class="composition__photo composition__photo--p3" />
</div>
</div>
</div>
<!-- <div class="row row-clubs">
<div
class="col col-content col-content-text wow fadeInUp"
data-wow-delay="0.1s"
>
<div class="box">
<div class="text">
<div>
<h1 class="text-center">Literary Club</h1>
<p class="lead">
Indian Institutes of technology have always been the
cradle that groomed many a brilliant author in the
country, thanks to those who still cherish the spark
despite the technological work load they confront day
after day. The founding of literary club produced a
platform conducive for nurturing such talents in today's
students of technology. For all those who know that the
"pen is mightier than the sword", this is very well their
arena. Talents are to be shown, not to be hidden. Some of
the most successful and crowd pulling events in the
institute were organized under the literary club such as
the treasure hunt, love letter writing, arbit speaking,
and so forth. The literary club of IITP represented the
college in "Rendezvous of Colleges", a parliamentary
debate competition held in the Magadh Mahila College in
Patna and bagged the first prize out of all participating
twenty colleges.
</p>
</div>
</div>
</div>
</div>
<div
class="col col-content-images wow fadeInUp"
data-wow-delay="0.1s"
>
<div class="composition">
<img
src="img/clubs/literary/pic1.png"
alt="photo1"
class="composition__photo composition__photo--p1"
/>
<img
src="img/clubs/literary/pic2.jpg"
alt="photo2"
class="composition__photo composition__photo--p2"
/>
<img
src="img/clubs/literary/pic3.jpg"
alt="photo3"
class="composition__photo composition__photo--p3"
/>
</div>
</div>
</div>
-->
<div class="row row-clubs">
<div class="col col-content col-content-text wow fadeInUp" data-wow-delay="0.1s">
<div class="box">
<div class="text">
<div>
<h1 class="text-center">
Rural Technology Development Club
</h1>
<p class="lead">
The aim of the Rural Technology Development Club (RTDC) is to identify the problems prevailing in the rural areas and to work to develop technologies and devices to address them. The Club strives to fill the technological void existing in the rural areas.
Keeping this in mind, the team regularly surveys different villages to understand the problems faced by the rural populace.
</p>
<p class="lead">
Various projects currently being undertaken by the Club include a manual wheat harvesting machine, a self running canal based irrigation system and a solar-powered LED based reading light
</p>
<p class="lead">
For the latest news and updates about ‘RTDC’, please visit the student-run portals listed below. The views/ opinions expressed at the links belong solely to the authors and may not necessarily represent the views of the Indian Institute of Technology
Patna
</p>
</div>
</div>
</div>
</div>
<div class="col col-content-images wow fadeInUp" data-wow-delay="0.1s">
<div class="composition">
<img src="img/clubs/rural/rural.jpeg" alt="photo1" class="composition__photo composition__photo--p1" />
<img src="img/clubs/rural/teaching.jpeg" alt="photo2" class="composition__photo composition__photo--p2" />
<img src="img/clubs/rural/tech.jpeg" alt="photo3" class="composition__photo composition__photo--p3" />
</div>
</div>
</div>
<div class="row row-clubs">
<div class="col col-content col-content-text wow fadeInUp" data-wow-delay="0.1s">
<div class="box">
<div class="text">
<div>
<h1 class="text-center">Sports Club</h1>
<p class="lead">
Apart from academic and cultural activities, IIT Patna gives equal importance to sports as well. One can continue his/her passion in a game or sport even after a long breathless struggle to be in one of the best institutes in India. The sports club IIT
Patna under the guidance of Asst.Coach Shyam Kumar, brings the most talented sportsmen to light by organizing inter-hostel and inter-department competitions from time to time. The ones who excel in the college level
will be selected to inter IIT sports meet where they can experience the real time competitive environment in which each IITian will be striving his best to show the world that IITians are no less compared to the
best sportsmen in the country. IIT Patna has a cricket ground, foot ball ground, volley ball court, tennis court, badminton court, Table tennis tables with in the campus where one can find students practicing round
the clock.
</p>
</div>
</div>
</div>
</div>
<div class="col col-content-images wow fadeInUp" data-wow-delay="0.1s">
<div class="composition">
<img src="img/clubs/sports/pic1.jpg" alt="photo1" class="composition__photo composition__photo--p1" />
<img src="img/clubs/sports/pic2.jpg" alt="photo2" class="composition__photo composition__photo--p2" />
<img src="img/clubs/sports/pic3.jpg" alt="photo3" class="composition__photo composition__photo--p3" />
</div>
</div>
</div>
</div>
</section>
<!--========================
Events Section
===========================-->
<section id="events">
<div class="container">
<header class="section-header">
<h3>Tech/Cultural Events</h3>
<!-- <p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p> -->
</header>
<div class="row events-extra wow fadeInUp">
<div class="col-lg-6 content order-lg-1 order-2">
<h4 class="text-center">ANWESHA</h4>
<p>
'Anwesha', which gets its name from the Sanskrit metaphrase for ‘expedition’, is IIT Patna’s annual 3-day techno-cultural festival organised by the student community. The fest, which made its humble beginnings in the year 2010 as an intra-college festival
with only a few dozen events, has today grown into one of the biggest and most eagerly awaited youth festivals of the region. Anwesha today is a conglomeration of events that draw from diverse disciplines, ranging from the
engineering sciences to the visual & performing arts.
</p>
<p>
For the latest news and updates about ‘Anwesha’, please visit the student-run portals listed below. The views/ opinions expressed at the links belong solely to the authors and may not necessarily represent the views of the Indian Institute of Technology
Patna.
</p>
</div>
<div class="col-lg-6 background order-lg-2 order-1">
<div class="owl-carousel owl-theme">
<div class="item"><img src="./img/events/anwesha/a.jpg" /></div>
<div class="item"><img src="./img/events/anwesha/b.jpg" /></div>
<div class="item"><img src="./img/events/anwesha/c.JPG" /></div>
<div class="item"><img src="./img/events/anwesha/d.JPG" /></div>
<div class="item"><img src="./img/events/anwesha/e.JPG" /></div>
</div>
</div>
</div>
<br />
<div class="row events-extra wow fadeInUp">
<div class="col-lg-6">
<div class="owl-carousel owl-theme">
<div class="item"><img src="./img/events/celesta/a.jpg" /></div>
<div class="item"><img src="./img/events/celesta/b.jpg" /></div>
<div class="item"><img src="./img/events/celesta/c.jpg" /></div>
<div class="item"><img src="./img/events/celesta/d.jpg" /></div>
<div class="item"><img src="./img/events/celesta/e.jpg" /></div>
<div class="item"><img src="./img/events/celesta/f.jpg" /></div>
</div>
</div>
<div class="col-lg-6 pt-5 pt-lg-0">
<h4 class="text-center">CELESTA</h4>
<p>
Indian Institute of technology Patna each year celebrates its Technical Fest, christened as ''CELESTA'. This is a great beginning, which strives to inculcate interest in young minds to pursue technology and make it their passion.
</p>
<p>
For the latest news and updates about ‘Celesta’, please visit the student-run portals listed below. The views/ opinions expressed at the links belong solely to the authors and may not necessarily represent the views of the Indian Institute of Technology
Patna.
</p>
</div>
</div>
<br />
<div class="row events-extra wow fadeInUp">
<div class="col-lg-6 order-1 order-lg-2">
<div class="owl-carousel owl-theme">
<div class="item">
<img src="./img/events/reverbance/a.jpg" />
</div>
<div class="item">
<img src="./img/events/reverbance/c.jpg" />
</div>
<div class="item">
<img src="./img/events/reverbance/d.jpg" />
</div>
<div class="item">
<img src="./img/events/reverbance/e.jpg" />
</div>
</div>
</div>
<div class="col-lg-6 pt-4 pt-lg-0 order-2 order-lg-1">
<h4 class="text-center">REVERBERANCE</h4>
<p>
It was started in 2008 and since then it has gained unmatched popularity. It is a cultural celebration held around 'Diwali'. Beautiful decoration through lights added with fantastic cultural performances makes IIT Patna really reverberate with joy during
the ‘Reverberance’.
</p>
<p>
For the latest news and updates about ‘Reverberance’, please visit the student-run portals listed below. The views/ opinions expressed at the links belong solely to the authors and may not necessarily represent the views of the Indian Institute of Technology
Patna.
</p>
</div>
</div>
</div>
<br />
<br />
<div class="container">
<header class="section-header">
<h3>Sports Events</h3>
<p>
The Students' Gymkhana Building, situated in the IIT Patna hostel compound, has a synthetic badminton court and a gymnasium. In addition, the students have access to a basketball court, a volleyball court, table tennis tables and a football-cum-cricket
ground within the transit campus. State-of-the-art facilities for all sports are planned at IIT Patna’s main campus in Bihta.
</p>
</header>
<div class="row events-extra wow fadeInUp">
<div class="col-lg-6 content order-lg-1 order-2">
<h4 class="text-center">INFINITO</h4>
<p>
Infinito is the annual sports festival of IIT Patna. It is a student organized fest which has seen a exponential growth in just 2 years, and aims for a lot more in the coming years which would make it even better in its upcoming editions. As manifested
in the name itself it’s for the people with infinite energy, enthusiasm, zeal to play.
</p>
<p>
For the latest news and updates about ‘Infinito’, please visit the student-run portals listed below. The views/ opinions expressed at the links belong solely to the authors and may not necessarily represent the views of the Indian Institute of Technology
Patna.
</p>
</div>
<div class="col-lg-6 background order-lg-2 order-1">
<div class="owl-carousel owl-theme">
<div class="item"><img src="./img/events/infinito/a.jpeg" /></div>
<div class="item"><img src="./img/events/infinito/b.jpeg" /></div>
<div class="item"><img src="./img/events/infinito/c.jpeg" /></div>
<div class="item"><img src="./img/events/infinito/d.jpeg" /></div>
<div class="item"><img src="./img/events/infinito/e.jpeg" /></div>
<div class="item"><img src="./img/events/infinito/f.jpeg" /></div>
<div class="item"><img src="./img/events/infinito/g.jpeg" /></div>
<div class="item"><img src="./img/events/infinito/h.jpeg" /></div>
<div class="item"><img src="./img/events/infinito/i.jpeg" /></div>
<div class="item"><img src="./img/events/infinito/j.jpeg" /></div>
<div class="item"><img src="./img/events/infinito/k.jpeg" /></div>
<div class="item"><img src="./img/events/infinito/l.jpeg" /></div>
<div class="item"><img src="./img/events/infinito/m.jpeg" /></div>
</div>
</div>
</div>
<br />
<div class="row events-extra wow fadeInUp">
<div class="col-lg-6">
<div class="owl-carousel owl-theme">
<div class="item"><img src="./img/events/ppl/a.jpg" /></div>
<div class="item"><img src="./img/events/ppl/b.jpg" /></div>
<div class="item"><img src="./img/events/ppl/c.jpg" /></div>
<div class="item"><img src="./img/events/ppl/d.jpg" /></div>
</div>
</div>
<div class="col-lg-6 pt-5 pt-lg-0">
<h4 class="text-center">PPL (Patna Premier League)</h4>
<p>
The two most inseparable words "Cricket and India" have found another equally inseparable pair "PPL and IIT Patna". Originally started in 2009 it sprang up as a much celebrated tournament of IIT Patna. The thrill and competition which the event had witnessed
has grown enormously during the recent years and could be clearly seen in the fifth edition this year. Whether it be the "Pythons" taking on the "Bolts" or the "Invincibles" taking on the "Falcons" every match has witnessed
the enormous talent which the players had displayed.
</p>
<p>
Thus PPL league provides the platform for players to display their talents and improve their skills thereby achieving the purpose for which it was established as well as providing a break from the strenuous curriculum and helping in the all-round development
of the individual.
</p>
</div>
</div>
</div>
</section>
<!-- #events -->
<!--==========================
Gallery Section
============================-->
<section id="gallery" class="section-bg">
<div class="container">
<header class="section-header">
<h3 class="section-title">Our gallery</h3>
</header>
<div class="row">
<div class="col-lg-12">
<ul id="gallery-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-clubs">Clubs</li>
<li data-filter=".filter-events">Events</li>
</ul>
</div>
</div>
<div class="row gallery-container">
<div class="col-lg-4 col-md-6 gallery-item filter-clubs">
<div class="gallery-wrap">
<figure>
<img src="img/gallery/c1.jpg" class="img-fluid" alt="" />
<a href="img/gallery/c1.jpg" data-lightbox="gallery" data-title="Kavyaragam" class="link-preview" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>Kavyaragam</h4>
<p>Clubs</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 gallery-item filter-clubs" data-wow-delay="0.2s">
<div class="gallery-wrap">
<figure>
<img src="img/gallery/c2.jpg" class="img-fluid" alt="" />
<a href="img/gallery/c2.jpg" class="link-preview" data-lightbox="gallery" data-title="E-Cell" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>E-Cell (E-week)</h4>
<p>Clubs</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 gallery-item filter-clubs" data-wow-delay="0.2s">
<div class="gallery-wrap">
<figure>
<img src="img/njack2.jpeg" class="img-fluid" alt="" />
<a href="img/njack2.jpeg" class="link-preview" data-lightbox="gallery" data-title="Njack" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>Njack</h4>
<p>Clubs</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 gallery-item filter-clubs" data-wow-delay="0.2s">
<div class="gallery-wrap">
<figure>
<img src="img/njack.jpeg" class="img-fluid" alt="" />
<a href="img/njack.jpeg" class="link-preview" data-lightbox="gallery" data-title="Njack" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>Njack</h4>
<p>Clubs</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 gallery-item filter-clubs" data-wow-delay="0.2s">
<div class="gallery-wrap">
<figure>
<img src="img/sparkonics.jpeg" class="img-fluid" alt="" />
<a href="img/sparkonics.jpeg" class="link-preview" data-lightbox="gallery" data-title="Sparkonics" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>Sparkonics</h4>
<p>Clubs</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 gallery-item filter-clubs" data-wow-delay="0.2s">
<div class="gallery-wrap">
<figure>
<img src="img/scme2.jpeg" class="img-fluid" alt="" />
<a href="img/scme2.jpeg" class="link-preview" data-lightbox="gallery" data-title="SCME" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>SCME</h4>
<p>Clubs</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 gallery-item filter-clubs" data-wow-delay="0.2s">
<div class="gallery-wrap">
<figure>
<img src="img/scme3.jpeg" class="img-fluid" alt="" />
<a href="img/scme3.jpeg" class="link-preview" data-lightbox="gallery" data-title="SCME" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>SCME</h4>
<p>Clubs</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 gallery-item filter-clubs" data-wow-delay="0.2s">
<div class="gallery-wrap">
<figure>
<img src="img/ace.jpeg" class="img-fluid" alt="" />
<a href="img/ace.jpeg" class="link-preview" data-lightbox="gallery" data-title="ACE" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>ACE</h4>
<p>Clubs</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 gallery-item filter-events">
<div class="gallery-wrap">
<figure>
<img src="img/events/anwesha/c.JPG" class="img-fluid" alt="" />
<a href="img/events/anwesha/c.JPG" class="link-preview" data-lightbox="gallery" data-title="Raghu Dixit" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>Raghu Dixit</h4>
<p>Anwesha' 19 (Band Night)</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 gallery-item filter-clubs" data-wow-delay="0.2s">
<div class="gallery-wrap">
<figure>
<img src="img/gallery/c3.png" class="img-fluid" alt="" />
<a href="img/gallery/c3.png" class="link-preview" data-lightbox="gallery" data-title="Yavanika" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>Yavanika</h4>
<p>Club
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 gallery-item filter-events" data-wow-delay="0.2s">
<div class="gallery-wrap">
<figure>
<img src="img/robowar.jpg" class="img-fluid" alt="" />
<a href="img/robowar.jpg" class="link-preview" data-lightbox="gallery" data-title="Robowar" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>Robowar</h4>
<p>Celesta</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 gallery-item filter-events" data-wow-delay="0.2s">
<div class="gallery-wrap">
<figure>
<img src="img/wallpainting.jpg" class="img-fluid" alt="" />
<a href="img/wallpainting.jpg" class="link-preview" data-lightbox="gallery" data-title="Wall painting" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>Wall painting</h4>
<p>Events</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 gallery-item filter-events" data-wow-delay="0.2s">
<div class="gallery-wrap">
<figure>
<img src="img/deathrace.jpg" class="img-fluid" alt="" />
<a href="img/deathrace.jpg" class="link-preview" data-lightbox="gallery" data-title="Death Race" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>Death Race</h4>
<p>Events</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 gallery-item filter-events" data-wow-delay="0.2s">
<div class="gallery-wrap">
<figure>
<img src="img/heelturn.jpg" class="img-fluid" alt="" />
<a href="img/heelturn.jpg" class="link-preview" data-lightbox="gallery" data-title="Heel turn" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>Heel turn</h4>
<p>Anwesha'19</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 gallery-item filter-events">
<div class="gallery-wrap">
<figure>
<img src="img/drone.jpg" class="img-fluid" alt="" />
<a href="img/drone.jpg" class="link-preview" data-lightbox="gallery" data-title="Drone Workshop" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>Drone Workshop</h4>
<p>Celesta</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 gallery-item filter-events">
<div class="gallery-wrap">
<figure>
<img src="img/aquasoccer.jpg" class="img-fluid" alt="" />
<a href="img/aquasoccer.jpg" class="link-preview" data-lightbox="gallery" data-title="Aqua Soccer" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>Aqua Soccer</h4>
<p>Celesta</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 gallery-item filter-events" data-wow-delay="0.1s">
<div class="gallery-wrap">
<figure>
<img src="img/gallery/e3.jpg" class="img-fluid" alt="" />
<a href="img/gallery/e3.jpg" class="link-preview" data-lightbox="gallery" data-title="Robotics Workshop" title="Preview"><i class="ion ion-eye"></i
></a>
</figure>
<div class="gallery-info">
<h4>Robotics Workshop</h4>
<p>Celesta</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- #gallery -->
<!--==========================
FAQs
============================-->
<section class="faq" id="faq">
<header class="section-header">
<h3>Frequently Asked Questions</h3>
</header>
<header class="section-header" style="margin-top: 10%; margin-bottom: 5%;">
<h2>Students' Welfare Board</h2>
</header>
<faq_swb></faq_swb>
<header class="section-header" style="margin-top: 10%; margin-bottom: 5%;">
<h2>Academic and Career Council</h2>
</header>
<faq_academic></faq_academic>
<header class="section-header" style="margin-top: 10%; margin-bottom: 5%;">
<h2>Hostel Affairs Council</h2>
</header>
<faq_hac></faq_hac>
<header class="section-header" style="margin-top: 10%; margin-bottom: 5%;">
<h2>Student Technical Council</h2>
</header>
<faq_stc></faq_stc>
</section>
<!-- #FAQs -->
<!--==========================
Footer
============================-->
<footer id="footer">
<div class="container">
<div class="row">
<div class="copyright col-sm-3">
<strong>Quick Links:</strong>
<br>
<br>
<a href="https://www.iitp.ac.in/"> IIT Patna</a>
<br>
<a href="https://www.iitp.ac.in/hostel/"> Hostel</a>
<br>
<a href="https://www.iitp.ac.in/hostel/reachIITP.html"> Reach Us</a>
<br>
<a href="https://www.iitp.ac.in/alumni/"> IIT-P AA</a>
</div>
<div class="copyright col-sm-3">
<strong>Social Links:</strong>
<br>
<br>
<a href="https://www.facebook.com/Students-Gymkhana-IIT-Patna-2014154592227407/"><i class="fa fa-facebook-square"></i> Students' Gymkhana</a>
<br>
<a href="https://www.facebook.com/iitpfreshman/"><i class="fa fa-facebook-square"></i> Freshmen Forum</a>
<br>
<a href="https://www.facebook.com/iitp.ac.in/"><i class="fa fa-facebook-square"></i> IIT Patna</a>
<br>
</div>
<div class="copyright col-sm-6">
Copyright © <br>Indian Institute of Technology, Patna
</div>
</div>
</div>
</footer>
<!-- #footer -->
<a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
<!-- Uncomment below if you want to use a preloader -->
<!-- <div id="preloader"></div> -->
<!-- JavaScript Libraries -->
<script src="./lib/jquery/jquery.min.js"></script>
<script src="./lib/jquery/jquery-migrate.min.js"></script>
<script src="./lib/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="./lib/easing/easing.min.js"></script>
<script src="./lib/superfish/hoverIntent.js"></script>
<script src="./lib/superfish/superfish.min.js"></script>
<script src="./lib/wow/wow.min.js"></script>
<script src="./lib/waypoints/waypoints.min.js"></script>
<script src="./lib/counterup/counterup.min.js"></script>
<script src="./lib/owlcarousel/owl.carousel.min.js"></script>
<script src="./lib/isotope/isotope.pkgd.min.js"></script>
<script src="./lib/lightbox/js/lightbox.min.js"></script>
<script src="./lib/touchSwipe/jquery.touchSwipe.min.js"></script>
<!-- Contact Form JavaScript File -->
<script src="./contactform/contactform.js"></script>
<!-- Template Main Javascript File -->
<script src="./js/main.js"></script>
<!-- FAQS Javascript File -->
<script src="./js/faq.js"></script>
<!-- Owl Carousel -->
<script type="text/javascript" src="./lib/OwlCarousel2-2.3.4/docs/assets/vendors/jquery.min.js"></script>
<script type="text/javascript" src="./lib/OwlCarousel2-2.3.4/dist/owl.carousel.js"></script>
<script type="text/javascript">
$(".owl-carousel").owlCarousel({
autoplay: true,
autoplayTimeout: 3000,
autoplayHoverPause: false,
loop: true,
margin: 10,
nav: true,
responsive: {
0: {
items: 1
},
600: {
items: 1
},
1000: {
items: 1
}
}
});
</script>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function() {
const tabs = document.querySelector(".tabs");
const panels = document.querySelectorAll(".panel");
tabs.addEventListener("click", e => {
if (e.target.tagName == "BUTTON") {
const targetPanel = document.querySelector(e.target.dataset.target);
Array.from(panels).forEach(panel => {
if (panel == targetPanel) {
panel.classList.add("active");
} else {
panel.classList.remove("active");
}
});
}
});
});
$(document).ready(function() {
$(".nav button").each(function() {
$(this).click(function() {
$(this)
.siblings()
.removeClass("active");
$(this).addClass("active");
});
});
});
</script>
</body>
</html>