-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
1119 lines (1051 loc) · 53.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
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<!-- Mirrored from gymkhana.iiita.ac.in/index.html by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 14 Dec 2020 10:41:19 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Gymkhana IIITA">
<meta name="author" content="Gymkhana">
<title>Gymkhana IIITA</title>
<link rel="shortcut icon" href="img/favicon.ico">
<!-- Global Stylesheets -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i" rel="stylesheet">
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/animate/animate.min.css">
<link rel="stylesheet" href="css/owl-carousel/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl-carousel/owl.theme.default.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body id="page-top" style='overflow-x:hidden'>
<!--====================================================
HEADER
======================================================-->
<header>
<nav class="navbar navbar-expand-lg navbar-light" id="mainNav" data-toggle="affix">
<div class="container">
<a class="navbar-brand smooth-scroll" href="index.html">
<img src="img/glogo-1.png" alt="logo" style="max-width: 100px; max-height: 100px; top: 5px; position: relative;">
</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive"
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link smooth-scroll" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link smooth-scroll" href="team.html">Advisors</a>
</li>
<li class="nav-item">
<a class="nav-link smooth-scroll" href="portals.html">Portals</a>
</li>
<li class="nav-item">
<a class="nav-link smooth-scroll" href="news.html">News</a>
</li>
<li class="nav-item">
<a class="nav-link smooth-scroll" href="events.html">Events</a>
</li>
<li class="nav-item">
<a class="nav-link smooth-scroll" href="tender.html">Tenders</a>
</li>
<li class="nav-item">
<a class="nav-link smooth-scroll" href="docs/constitution.pdf">Constitution</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!--====================================================
LOGIN OR REGISTER
======================================================-->
<section id="login">
<div class="modal fade" id="login-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header" align="center">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span class="fa fa-times" aria-hidden="true"></span>
</button>
</div>
<div id="div-forms">
<form id="login-form">
<h3 class="text-center">Login</h3>
<div class="modal-body">
<label for="username">Username</label>
<input id="login_username" class="form-control" type="text" placeholder="Enter username " required>
<label for="username">Password</label>
<input id="login_password" class="form-control" type="password" placeholder="Enter password" required>
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
</div>
<div class="modal-footer text-center">
<div>
<button type="submit" class="btn btn-general btn-white">Login</button>
</div>
<div>
<button id="login_register_btn" type="button" class="btn btn-link">Register</button>
</div>
</div>
</form>
<form id="register-form" style="display:none;">
<h3 class="text-center">Register</h3>
<div class="modal-body">
<label for="username">Username</label>
<input id="register_username" class="form-control" type="text" placeholder="Enter username" required>
<label for="register_email">E-mailId</label>
<input id="register_email" class="form-control" type="text" placeholder="Enter eMail" required>
<label for="register_password">Password</label>
<input id="register_password" class="form-control" type="password" placeholder="Password" required>
</div>
<div class="modal-footer">
<div>
<button type="submit" class="btn btn-general btn-white">Register</button>
</div>
<div>
<button id="register_login_btn" type="button" class="btn btn-link">Log In</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!--====================================================
HOME
======================================================-->
<section id="home">
<div id="carousel" class="carousel slide carousel-fade" data-ride="carousel">
<!-- Carousel items -->
<div class="carousel-inner">
<div class="carousel-item active slides">
<div class="overlay"></div>
<div class="slide-1"></div>
<div class="hero ">
<hgroup class="wow fadeInUp">
<h1>Students' Gymkhana
<span>
<a href="#" class="typewrite" data-period="2000" data-type='[ " iiita"]'>
<span class="wrap"></span>
</a>
</span>
</h1>
<h3>THE STUDENT SENATE OF IIIT ALLAHABAD</h3>
</hgroup>
<!-- <button class="btn btn-general btn-green wow fadeInUp" role="button">Contact Now</button> -->
</div>
</div>
</div>
</div>
</section>
<!--====================================================
ABOUT
======================================================-->
<section id="about" class="about">
<div class="container">
<div class="row title-bar" style="padding: 50px 0">
<div class="col-md-12">
<h1 class="wow fadeInUp">Who are we?</h1>
<div class="heading-border"></div>
<p class="wow fadeInUp" data-wow-delay="0.4s">Hi, we are the Gymkhana. The student-senate, inspiring students to learn more, do more and become more. We act
as a link between institute administration and student body at large for smooth functioning of college.</p>
<p class="wow fadeInUp" data-wow-delay="0.4s">Our duties involve Provision of platform and resources for students to excel in both cultural and technical facets.Helping
students learn to fulfil the privileged enclaves of power and find ways to serve the tehnical fraternity.</p>
<!-- <div class="title-but"><button class="btn btn-general btn-green" role="button">Read More</button></div> -->
</div>
</div>
</div>
<!-- About right side withBG parallax -->
<!-- <div class="container-fluid">
<div class="row">
<div class="col-md-4 bg-starship">
<div class="about-content-box wow fadeInUp" data-wow-delay="0.3s">
<i class="fa fa-snowflake-o"></i>
<h5>Thoughts Leadership Platform</h5>
<p class="desc">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p>
</div>
</div>
<div class="col-md-4 bg-chathams">
<div class="about-content-box wow fadeInUp" data-wow-delay="0.5s">
<i class="fa fa-circle-o-notch"></i>
<h5>Corporate world Platform</h5>
<p class="desc">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p>
</div>
</div>
<div class="col-md-4 bg-matisse">
<div class="about-content-box wow fadeInUp" data-wow-delay="0.7s">
<i class="fa fa-hourglass-o"></i>
<h5>End to End Testing Platform</h5>
<p class="desc">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p>
</div>
</div>
</div>
</div> -->
</section>
<!--====================================================
OFFER
======================================================-->
<section id="comp-offer" style="padding:25px 20px;">
<div class="container-fluid">
<div class="row">
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.2s">
<h2>Student Senate</h2>
<div class="heading-border-light"></div>
<button class="btn btn-general btn-green" role="button">Officers</button>
<!-- <button class="btn btn-general btn-white" role="button">Contact Us Today</button> -->
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.4s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<!-- <div class="caption">
<i class="fa fa-chain"></i>
</div> -->
<img src="Images/president.jpg" class="img-fluid" alt="..." style="width:100%;height: 24rem">
</div>
<h3> Mr. Om Khangat</h3>
<p class="desc">President <br> Email: [email protected] </p>
<!-- <a href="https://www.effe.org.in" target="_blank"><i class="fa fa-arrow-circle-o-right"></i> Go To Website</a> -->
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.6s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<!-- <div class="caption">
<i class="fa fa-chain"></i>
</div> -->
<img src="Images/omkar_mml.jpeg" class="img-fluid" alt="..." style="width:100%;height: 24rem">
</div>
<h3>Mr. Omkar Vinod Manapure</h3>
<p class="desc">Vice-President <br> Email: [email protected] </p>
<!-- <a href="https://www.effe.org.in" target="_blank"><i class="fa fa-arrow-circle-o-right"></i> Go To Website</a> -->
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.8s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<!-- <div class="caption">
<i class="fa fa-chain"></i>
</div> -->
<img src="Images/manoj_pallakki.png" class="img-fluid" alt="..." style="width:100%;height: 24rem">
</div>
<h3>Mr. B.T. Manoj Pallakki</h3>
<p class="desc">General Secretary <br> Email: [email protected] </p>
<!-- <a href="https://aparoksha.org/" target="_blank"><i class="fa fa-arrow-circle-o-right"></i> Go To Website</a> -->
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.2s">
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.4s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<!-- <div class="caption">
<i class="fa fa-chain"></i>
</div> -->
<img src="Images/aditya_tomar.jpeg" class="img-fluid" style="width:100%;height: 24rem">
</div>
<h3>Mr. Aditya Singh Tomar</h3>
<p class="desc">Member of UG<br> Email: [email protected] </p>
<!-- <a href="https://www.effe.org.in" target="_blank"><i class="fa fa-arrow-circle-o-right"></i> Go To Website</a> -->
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.6s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<!-- <div class="caption">
<i class="fa fa-chain"></i>
</div> -->
<img src="Images/ritik_kumar.png" class="img-fluid" alt="..." style="width:100%;height: 24rem">
</div>
<h3>Mr. Ritik Kumar</h3>
<p class="desc">Member of UG<br>Email: [email protected] </p>
<!-- <a href="https://www.effe.org.in" target="_blank"><i class="fa fa-arrow-circle-o-right"></i> Go To Website</a> -->
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.6s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<!-- <div class="caption">
<i class="fa fa-chain"></i>
</div> -->
<img src="Images/satyam_tripathi.jpg" class="img-fluid" alt="..." style="width:100%;height: 24rem">
</div>
<h3>Mr. Satyam Tripathi</h3>
<p class="desc">Member of PG<br> Email: [email protected] </p>
<!-- <a href="https://www.effe.org.in" target="_blank"><i class="fa fa-arrow-circle-o-right"></i> Go To Website</a> -->
</div>
</div>
<div class="container-fluid">
<div class="row" style="padding: 50px 0">
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.2s">
<h2></h2>
<!-- <div class="heading-border-light"></div> -->
<!-- <button class="btn btn-general btn-green" role="button"></button> -->
<!-- <button class="btn btn-general btn-white" role="button">Contact Us Today</button> -->
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.4s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<!-- <div class="caption">
<i class="fa fa-chain"></i>
</div> -->
<img src="Images/raj_kumar.png" class="img-fluid" style="width:100%;height: 24rem">
</div>
<h3>Mr. Raj Kumar</h3>
<p class="desc">Speaker <br> Email: [email protected] </p>
<!-- <a href="https://www.effe.org.in" target="_blank"><i class="fa fa-arrow-circle-o-right"></i> Go To Website</a> -->
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row" style="padding: 50px 0">
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.2s">
<h2>Student Senate</h2>
<div class="heading-border-light"></div>
<button class="btn btn-general btn-green" role="button">Secretaries</button>
<!-- <button class="btn btn-general btn-white" role="button">Contact Us Today</button> -->
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.6s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<!-- <div class="caption">
<i class="fa fa-chain"></i>
</div> -->
<img src="Images/Aditya_Arya.jpg"class="img-fluid" alt="..." style="width:100%;height: 24rem">
</div>
<h3>Mr. Aditya Arya</h3>
<p class="desc">Cultural Council Secretary <br>Mail: [email protected] </p>
<!-- <a href="#"><i class="fa fa-arrow-circle-o-right"></i> Learn More</a> -->
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.6s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<!-- <div class="caption">
<i class="fa fa-chain"></i>
</div> -->
<img src="Images/mohit_bajaj.jpg" class="img-fluid" alt="..." style="width:100%;height: 24rem">
</div>
<h3>Mr. Mohit Bajaj</h3>
<p class="desc">Sports Council Secretary <br>Mail: [email protected] </p>
<!-- <a href="#"><i class="fa fa-arrow-circle-o-right"></i> Learn More</a> -->
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.4s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<!-- <div class="caption">
<i class="fa fa-chain"></i>
</div> -->
<img src="Images/image1.jpg" class="img-fluid" alt="..." style="width:100%;height: 24rem">
</div>
<h3>Mr. Mukund Kumar</h3>
<p class="desc">Technical Council Secretary <br>Mail: [email protected] </p>
<!-- <a href="#"><i class="fa fa-arrow-circle-o-right"></i> Learn More</a> -->
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.2s">
<!-- <h2>Quick Links</h2> -->
<!-- <div class="heading-border-light"></div> -->
<!-- <button class="btn btn-general btn-green" role="button">Fests</button> -->
<!-- <button class="btn btn-general btn-white" role="button">Contact Us Today</button> -->
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.8s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<!-- <div class="caption">
<i class="fa fa-chain"></i>
</div> -->
<img src="Images/parimal_amrutkar.png" class="img-fluid" alt="..." style="width:100%;height: 24rem">
</div>
<h3>Mr. Parimal Amrutkar</h3>
<p class="desc">Academic Council Secretary <br>Mail: [email protected] </p>
<!-- <a href="#"><i class="fa fa-arrow-circle-o-right"></i> Learn More</a> -->
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.4s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<!-- <div class="caption">
<i class="fa fa-chain"></i>
</div> -->
<img src="Images/netranand_pathak.jpeg" class="img-fluid" alt="..." style="width:100%;height: 24rem">
</div>
<h3>Mr. Netranand Pathak</h3>
<p class="desc">Student's Welfare Council Secretary <br>Mail: [email protected] </p>
<!-- <a href="#"><i class="fa fa-arrow-circle-o-right"></i> Learn More</a> -->
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.4s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<!-- <div class="caption">
<i class="fa fa-chain"></i>
</div> -->
<img src="Images/usha.jpeg" class="img-fluid" alt="..." style="width:100%;height: 24rem">
</div>
<h3>Ms. Saiushashree Kasu</h3>
<p class="desc">Student's Welfare Council Secretary <br>Mail: [email protected] </p>
<!-- <a href="#"><i class="fa fa-arrow-circle-o-right"></i> Learn More</a> -->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
<section id="comp-offer" style="padding:25px 0;">
<div class="container-fluid">
<div class="row">
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.2s">
<h2>Executive Wing</h2>
<div class="heading-border-light"></div>
<button class="btn btn-general btn-green" role="button">Standing Committees</button>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.4s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<div class="caption">
<h3 style="color: white;">Chairperson</h3>
<p style="color:white;">Mr. Shubham Varshney</p>
<h3 style="color: white;">Co- Chairperson</h3>
<p style="color:white;">
<span style="padding-right:10px;">Ms. Ekta Kumari</span>
</p>
</div>
<img src="img/glogo-1.png" class="img-fluid" alt="...">
</div>
<h3>Hostel Affairs Committee</h3>
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.6s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<div class="caption">
<h3 style="color: white;">Chairperson</h3>
<p style="color:white;">Mr. Prakhar Chaturvedi</p>
</div>
<img src="img/glogo-1.png" class="img-fluid" alt="...">
</div>
<h3>Purchase Committee</h3>
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.4s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<div class="caption">
<h3 style="color: white;">Chairperson</h3>
<p style="color:white;">Mr. Mani Kiran</p>
</div>
<img src="img/glogo-1.png" class="img-fluid" alt="...">
</div>
<h3>Gym and Swimming Pool Maintenance Committee</h3>
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.2s">
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.6s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<div class="caption">
<h3 style="color: white;">Chairperson</h3>
<p style="color:white;">Mr. Mani Kiran</p>
</div>
<img src="img/glogo-1.png" class="img-fluid" alt="...">
</div>
<h3>Health Centre Committee</h3>
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.8s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<div class="caption">
<h3 style="color: white;">Chairperson</h3>
<p style="color:white;">Mr. Rishi Shukla</p>
<h3 style="color: white;">Members</h3>
<p style="color:white;">
<span style="padding-right:10px;">Pratyush Singh</span>
<span style="padding-left:10px;">Arsh Panghal</span>
</p>
<p style="color:white;">
<span style="padding-right:10px;">Rahul Agarwal</span>
<span style="padding-left:10px;">Md. Meraz</span>
</p>
<p style="color:white;">
<span style="padding-right:10px;">Pavan Kr. Pandey</span>
<span style="padding-left:10px;">Dhirendra</span>
</p>
</div>
<img src="img/glogo-1.png" class="img-fluid" alt="...">
</div>
<h3>A.A.A Committee</h3>
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.4s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<div class="caption">
<h3 style="color: white;">Chairperson</h3>
<p style="color:white;">Mr. Indrajeet Kumar Sinha</p>
</div>
<img src="img/glogo-1.png" class="img-fluid" alt="...">
</div>
<h3>Record & Award Committee</h3>
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.2s">
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.6s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<div class="caption">
<h3 style="color: white;">Chairperson</h3>
<p style="color:white;">Ms. Niharika Shrivastava</p>
</div>
<img src="img/glogo-1.png" class="img-fluid" alt="...">
</div>
<h3>Media and Web Management Committee</h3>
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.8s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<div class="caption">
<h3 style="color: white;">Chairperson</h3>
<p style="color:white;">Mr. Prakhar Chaturvedi</p>
</div>
<img src="img/glogo-1.png" class="img-fluid" alt="...">
</div>
<h3>Steering Committee</h3>
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.6s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<div class="caption">
<h3 style="color: white;">Mentor</h3>
<p style="color:white;">Pratyush Singh</p>
</div>
<img src="img/glogo-1.png" class="img-fluid" alt="...">
</div>
<h3>Newsletter Committee</h3>
</div>
</div>
</div> -->
<br><br>
<section id="comp-offer" style="padding:25px 20px;">
<div class="container-fluid">
<div class="row">
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.2s">
<h2>Executive Wing</h2>
<div class="heading-border-light"></div>
<button class="btn btn-general btn-green" role="button">Standing Councils</button>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.4s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<div class="caption">
<h3 style="color: white;">Office Bearers</h3>
<p style="color:white;">Om Khangat (President)</p>
<p style="color:white;">Omkar Vinod Manapure (Vice President)</p>
<p style="color:white;">B.T. Manoj Pallakki (General Secretery)</p>
<p style="color:white;">Raj Kumar (Speaker)</p>
<p style="color:white;">Aditya Singh Tomar (Member)</p>
<p style="color:white;">Ritik Kumar (Member)</p>
<p style="color:white;">Satyam Tripathi (Member)</p>
<!-- <p style="color:white;"> Prabhat Rudrapratap Singh (Member)</p> -->
</div>
<img src="img/glogo-1.png" class="img-fluid" alt="...">
</div>
<h3>Presidential Council</h3>
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.4s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<div class="caption">
<!-- <h3 style="color: white;">Faculty Advisors</h3>
<p style="color:white;">
<span style="padding-right:10px;">Dr. Rahul Kala</span>
</p> -->
<h3 style="color: white; padding-top:8px">Chairperson</h3>
<p style="color:white; margin-bottom: 5px">Mukund Kumar (Technical Secretary)</p>
<h3 style="color: white; padding-top:10px">Societies</h3>
<p style="color:white; margin-bottom: 5px">GeekHaven</p>
<p style="color:white; margin-bottom: 5px">Tesla</p>
<p style="color:white; margin-bottom: 5px">Gravity</p>
<p style="color:white; margin-bottom: 5px">GDSC IIITA</p>
<h3 style="color: white; padding-top:10px">Aparoksha</h3>
<p style="color:white; margin-bottom: 5px">Annual Technical Festival</p>
</div>
<img src="img/glogo-1.png" class="img-fluid" alt="...">
</div>
<h3>Technical Council</h3>
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.8s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<div class="caption">
<!-- <h3 style="color: white;">Faculty Advisor</h3> -->
<!-- <p style="color:white; margin-bottom: 5px">Dr. K.P. Singh</p> -->
<h3 style="color: white; padding-top:10px">Chairperson</h3>
<p style="color:white; margin-bottom: 5px">Netranand Pathak (Students' Welfare Secretary)</p>
<h3 style="color: white; padding-top:10px">Committees</h3>
<p style="color:white; margin-bottom: 5px">Hostel Affairs Committee</p>
<p style="color:white; margin-bottom: 5px">Gym and Swimming Pool Maintenance Committee</p>
<p style="color:white; margin-bottom: 5px">Health Centre Committee</p>
</div>
<img src="img/glogo-1.png" class="img-fluid" alt="...">
</div>
<h3>Students’ Welfare Council</h3>
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.2s">
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.6s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<div class="caption">
<!-- <h3 style="color: white; padding-top:5px">Faculty Advisor</h3> -->
<!-- <p style="color:white; margin-bottom: 5px">Dr. Sonali Agarwal</p> -->
<h3 style="color: white; padding-top:5px">Chairperson</h3>
<p style="color:white; margin-bottom: 5px">Aditya Arya (Cultural Secretary)</p>
<h3 style="color: white; padding-top:5px">Cultural Societies</h3>
<p style="color:white; margin-bottom: 5px">AMS Society</p>
<p style="color:white; margin-bottom: 5px">Dance Society</p>
<p style="color:white; margin-bottom: 5px">Music Society</p>
<p style="color:white; margin-bottom: 5px">Drama Society</p>
<p style="color:white; margin-bottom: 5px">Fine Arts Society</p>
<p style="color:white; margin-bottom: 5px">Literary Society</p>
<h3 style="color: white; margin: 0; padding: 0">Effervescence</h3>
<p style="color:white; margin-bottom: 5px">Annual Cultural Festival</p>
</div>
<img src="img/glogo-1.png" class="img-fluid" alt="...">
</div>
<h3>Cultural Council</h3>
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.6s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<div class="caption">
<h3 style="color: white;">Faculty Advisor</h3>
<p style="color:white; margin-bottom: 5px">Dr.B. SanthiBhushan</p>
<h3 style="color: white; padding-top:10px">Chairperson</h3>
<p style="color:white; margin-bottom: 5px">Mohit Bajaj (Sports Secretary)</p>
<h3 style="color: white; padding-top:10px">Sports Society</h3>
<p style="color:white; margin-bottom: 5px">SPIRIT</p>
<h3 style="color: white; padding-top:10px">Asmita</h3>
<p style="color:white; margin-bottom: 5px">Annual Sports Festival</p>
</div>
<img src="img/glogo-1.png" class="img-fluid" alt="...">
</div>
<h3>Sports Council</h3>
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.8s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<div class="caption">
<!-- <h3 style="color: white;">Faculty Advisor</h3> -->
<!-- <p style="color:white; margin-bottom: 5px">Dr. Akhilesh Tiwari</p> -->
<h3 style="color: white; padding-top:10px">Chairperson</h3>
<p style="color:white; margin-bottom: 5px">Parimal Amrutkar (Academic Secretary)</p>
<h3 style="color: white; padding-top:10px">Representatives</h3>
<p style="color:white; margin-bottom: 5px">DUGC Representative</p>
<p style="color:white; margin-bottom: 5px">DPGC Representative</p>
<p style="color:white; margin-bottom: 5px">SUGC and SPGC Representative</p>
<p style="color:white; margin-bottom: 5px">Senate Representative</p>
</div>
<img src="img/glogo-1.png" class="img-fluid" alt="...">
</div>
<h3>Academic Council</h3>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</section>
<section id="comp-offer" style="padding:25px 20px;">
<div class="container-fluid">
<div class="row">
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.2s">
<h2>Quick Links</h2>
<div class="heading-border-light"></div>
<button class="btn btn-general btn-green" role="button">Fests</button>
<!-- <button class="btn btn-general btn-white" role="button">Contact Us Today</button> -->
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.4s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<a href="https://effervescence.org.in/" target="_blank">
<div class="caption">
<i class="fa fa-chain"></i>
</div>
<div style="background-color: #333;">
<img src="img/Vector.svg" class="img-fluid" style="padding: 50px;" alt="..."></div>
</a>
</div>
<h3>Effervescence</h3>
<p class="desc">Effervescence is the annual Cultural festival of IIIT Allahabad. </p>
<a href="https://effervescence.org.in/"class="to_website" target="_blank">
<i class="fa fa-arrow-circle-o-right"></i> Go To Website</a>
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.6s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<a href="https://aparoksha.org/" target="_blank">
<div class="caption">
<i class="fa fa-chain"></i>
</div>
<img src="img/apk.jpg" class="img-fluid" alt="...">
</a>
</div>
<h3>Aparoksha</h3>
<p class="desc">Aparoksha is the annual Technical festival of IIIT Allahabad. </p>
<a href="https://aparoksha.org/"class="to_website" target="_blank">
<i class="fa fa-arrow-circle-o-right"></i> Go To Website</a>
</div>
</div>
<div class="col-md-3 col-sm-6 desc-comp-offer wow fadeInUp" data-wow-delay="0.8s">
<div class="desc-comp-offer-cont">
<div class="thumbnail-blogs">
<a href="https://asmita.iiita.ac.in/" target="_blank">
<div class="caption">
<i class="fa fa-chain"></i>
</div>
<img src="img/asmita2.png" class="img-fluid" alt="...">
</a>
</div>
<h3>Asmita</h3>
<p class="desc">Asmita (Annual Sports Meet of IIIT Allahabad) is the annual Sports festival of IIIT Allahabad. </p>
<a href="https://asmita.iiita.ac.in/" class="to_website" target="_blank">
<i class="fa fa-arrow-circle-o-right"></i> Go To Website</a>
</div>
</div>
</div>
</div>
</section>
<!--====================================================
WHAT WE DO
======================================================-->
<!-- <section class="what-we-do bg-gradiant">
<div class="container-fluid">
<div class="row">
<div class="col-md-3">
<h3>What we Do</h3>
<div class="heading-border-light"></div>
<p class="desc">We partner with clients to put recommendations into practice. </p>
</div>
<div class="col-md-9">
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="what-we-desc">
<i class="fa fa-briefcase"></i>
<h6>Workspace</h6>
<p class="desc">Contrary to popular belief, Lorem Ipsum is not simply random text. </p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="what-we-desc">
<i class="fa fa-shopping-bag"></i>
<h6>Storefront</h6>
<p class="desc">Contrary to popular belief, Lorem Ipsum is not simply random text. </p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="what-we-desc">
<i class="fa fa-building-o"></i>
<h6>Apartments</h6>
<p class="desc">Contrary to popular belief, Lorem Ipsum is not simply random text. </p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="what-we-desc">
<i class="fa fa-bed"></i>
<h6>Hotels</h6>
<p class="desc">Contrary to popular belief, Lorem Ipsum is not simply random text. </p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="what-we-desc">
<i class="fa fa-hourglass-2"></i>
<h6>Concept</h6>
<p class="desc">Contrary to popular belief, Lorem Ipsum is not simply random text. </p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="what-we-desc">
<i class="fa fa-cutlery"></i>
<h6>Restaurant</h6>
<p class="desc">Contrary to popular belief, Lorem Ipsum is not simply random text. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<!--====================================================
STORY
======================================================-->
<!--====================================================
COMPANY THOUGHT
======================================================-->
<!-- <div class="overlay-thought"></div>
<section id="thought" class="bg-parallax thought-bg">
<div class="container">
<div id="thought-desc" class="row title-bar title-bar-thought owl-carousel owl-theme">
<div class="col-md-12 ">
<div class="heading-border bg-white"></div>
<p class="wow fadeInUp" data-wow-delay="0.4s">Businessbox will deliver value to all the stakeholders and will attain excellence and leadership through such delivery of value. We will strive to support the stakeholders in all activities related to us. Businessbox provide great things.</p>
<h6>John doe</h6>
</div>
<div class="col-md-12 thought-desc">
<div class="heading-border bg-white"></div>
<p class="wow fadeInUp" data-wow-delay="0.4s">Ensuring quality in Businessbox is an obsession and the high quality standards set by us are achieved through a rigorous quality assurance process. Quality assurance is performed by an independent team of trained experts for each project. </p>
<h6>Tom John</h6>
</div>
</div>
</div>
</section> -->
<!--====================================================
SERVICE-HOME
======================================================-->
<!-- <section id="service-h">
<div class="container-fluid">
<div class="row" >
<div class="col-md-6" >
<div class="service-himg" >
<iframe src="https://www.youtube.com/embed/754f1w90gQU?rel=0&controls=0&showinfo=0" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div class="col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="service-h-desc">
<h3>We are Providing great Services</h3>
<div class="heading-border-light"></div>
<p>Businessbox offer the full spectrum of services to help organizations work better. Everything from creating standards of excellence to training your people to work in more effective ways.</p>
<div class="service-h-tab">
<nav class="nav nav-tabs" id="myTab" role="tablist">
<a class="nav-item nav-link active" id="nav-home-tab" data-toggle="tab" href="#nav-home" role="tab" aria-controls="nav-home" aria-expanded="true">Developing</a>
<a class="nav-item nav-link" id="nav-profile-tab" data-toggle="tab" href="#nav-profile" role="tab" aria-controls="nav-profile">Training</a>
<a class="nav-item nav-link" id="my-profile-tab" data-toggle="tab" href="#my-profile" role="tab" aria-controls="my-profile">Medical</a>
</nav>
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show active" id="nav-home" role="tabpanel" aria-labelledby="nav-home-tab"><p>Nulla est ullamco ut irure incididunt nulla Lorem Lorem minim irure officia enim reprehenderit. Magna duis labore cillum sint adipisicing exercitation ipsum. Nostrud ut anim non exercitation velit laboris fugiat cupidatat. Commodo esse dolore fugiat sint velit ullamco magna consequat voluptate minim amet aliquip ipsum aute. exercitation ipsum. Nostrud ut anim non exercitation velit laboris fugiat cupidatat. Commodo esse dolore fugiat sint velit ullamco magna consequat voluptate minim amet aliquip ipsum aute. </p></div>
<div class="tab-pane fade" id="nav-profile" role="tabpanel" aria-labelledby="nav-profile-tab">
<p>Nulla est ullamco ut irure incididunt nulla Lorem Lorem minim irure officia enim reprehenderit. Magna duis labore cillum sint adipisicing exercitation ipsum. Nostrud ut anim non exercitation velit laboris fugiat cupidatat. Commodo esse dolore fugiat sint velit ullamco magna consequat voluptate minim amet aliquip ipsum aute</p>
</div>
<div class="tab-pane fade" id="my-profile" role="tabpanel" aria-labelledby="my-profile-tab">
<p>Nulla est ullamco ut irure incididunt nulla Lorem Lorem minim irure officia enim reprehenderit. Magna duis labore cillum sint adipisicing exercitation ipsum. Nostrud ut anim non exercitation velit laboris fugiat cupidatat. Commodo esse dolore fugiat sint velit ullamco magna consequat voluptate minim amet aliquip ipsum aute</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<!--====================================================
CLIENT
======================================================-->
<!-- <section id="client" class="client">
<div class="container">
<div class="row title-bar">
<div class="col-md-12">
<h1 class="wow fadeInUp">Our Client Say</h1>
<div class="heading-border"></div>
<p class="wow fadeInUp" data-wow-delay="0.4s">We committed to helping you maintain your Brand Value.</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-12">
<div class="client-cont wow fadeInUp" data-wow-delay="0.1s">
<img src="img/client/avatar-6.jpg" class="img-fluid" alt="">
<h5>Leesa len</h5>
<h6>DSS CEO & Cofounder</h6>
<i class="fa fa-quote-left"></i>
<p>The Businessbox service - it helps fill our Business, and increase our show up rate every single time.</p>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="client-cont wow fadeInUp" data-wow-delay="0.3s">
<img src="img/client/avatar-2.jpg" class="img-fluid" alt="">
<h5>Dec Bol</h5>
<h6>TEMS founder</h6>
<i class="fa fa-quote-left"></i>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece.</p>
</div>
</div>
</div>
</div>
</section> -->
<!--====================================================
CONTACT HOME
======================================================-->
<!-- <div class="overlay-contact-h"></div>
<section id="contact-h" class="bg-parallax contact-h-bg">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="contact-h-cont">
<h3 class="cl-white">Continue The Conversation</h3><br>
<form>
<div class="form-group cl-white">
<label for="name">Your Name</label>
<input type="text" class="form-control" id="name" aria-describedby="nameHelp" placeholder="Enter name">
</div>
<div class="form-group cl-white">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
</div>
<div class="form-group cl-white">
<label for="subject">Subject</label>
<input type="text" class="form-control" id="subject" aria-describedby="subjectHelp" placeholder="Enter subject">
</div>
<div class="form-group cl-white">
<label for="message">Message</label>
<textarea class="form-control" id="message" rows="3"></textarea>
</div>
<button class="btn btn-general btn-white" role="button"><i fa fa-right-arrow></i>GET CONVERSATION</button>
</form>
</div>
</div>
</div>
</div>
</section> -->
<!--====================================================
NEWS
======================================================-->
<!-- <section id="comp-offer">
<div class="container-fluid">
<div class="row">