-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1971 lines (1688 loc) · 75 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>
<!--[if IE 8 ]><html class="no-js oldie ie8" lang="en"> <![endif]-->
<!--[if IE 9 ]><html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html class="no-js" lang="en"> <!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>R.K.Hall</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/vendor.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="icon" type="image/png" href="rk-logo.png">
<script src="jquery-2.2.4.min.js"></script>
<!-- Bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<!---=====================-->
<style>
/* @font-face {
font-family: champagne;
src: url('fonts/Champagne_&_Limousines.ttf');
}
p
{
font-family: champagne;
}*/
.folio-title
{
text-decoration: none !important;
}
.skill-bars
{
margin-left: -325px !important;
}
@media screen and (min-width: 480px) {
.beta {
margin-left: 325px;
}
.copyright
{
margin-left: 500px;
}
#stats
{
padding-left: 60px;
}
.cool
{
width: 1380px;
}
#portfolio
{
height: 1000px;
}
#resume
{
height: 1700px;
}
.owl-wrapper
{
margin-left: 70px;
}
.owl-pagination
{
margin-left: 70px;
}
}
.cool
{
background-color: #151515;
color: #6e6e6e;
}
.skill-bars li strong
{
color: #6e6e6e !important;
}
</style>
</head>
<body id="top">
<!-- header
================================================== -->
<header>
<div class="top-bar" style="width:200px">
<div style="background-color:black">
<a class="menu-toggle" style="
margin-left: 0px;
margin-top: 30px;
"href="#"><span>Menu</span></a>
<div class="logo">
<!--<span class="desc">-->
<!-- <font face="Lucida Handwriting" color="#137587">R.K HALL</font>-->
<!-- </span>-->
</div> </div>
<nav id="main-nav-wrap">
<ul class="main-navigation" style="padding-left:10px">
<li>
<a class="smoothscroll" href="#about" title="">Introduction</a>
</li>
<li>
<a class="smoothscroll" href="#resume" title="">HCM</a>
</li>
<li>
<a class="smoothscroll" href="#portfolio" title="">Gallery</a>
</li>
<li>
<a class="smoothscroll" href="#services" title="">General Championship</a>
</li>
<li>
<a class="smoothscroll" href="#contact" title="">Registration</a>
</li>
<li>
<a href="alumini1.html" target="_blank" title="">Alumni</a>
</li>
<li>
<a href="comingsoon.html" target="_blank" title="">Feedback</a>
</li>
<li>
<a class="smoothscroll" href="#cta" >Contribution</a>
</li>
<li>
<a href="comingsoon.html" >Your Story</a>
</li>
<li>
<a href="pledge.html" target="_blank">Donate</a>
</li>
</ul>
<center>
<img src="images/rk-vectors.png" id="smallLogo" style="height:10rem; width:40rem ; " alt="Profile Picture">
</center>
</nav>
</div> <!-- /top-bar -->
</div> <!-- /row -->
</header>
<!-- /he
ader -->
<!-- Donate button -->
<a href="pledge.html">
<button class="btn btn-default" style="position:fixed; top:10px;right:20px;z-index:1000;background-color: #ff0077; color: white;">DONATE</button>
</a>
<!-- intro section
================================================== -->
<section id="intro">
<div class="intro-overlay"></div>
<div class="intro-content">
<div class="">
<center>
<img src="images/rk-vectors.png" style="height:20rem; width:40rem ; " alt="Profile Picture">
</center>
<div><h1>Welcome to Radha Krishnan Hall </h1></div>
<p class="intro-position">
<span>A great place to learn and ... live</span>
</p>
</div>
</div>
<!-- intro-content -->
<ul class="intro-social">
<li>
<a href="https://www.facebook.com/R.K.Hall.IITkgp/?fref=ts">
<i class="fa fa-facebook"></i>
</a>
</li>
</ul> <!-- /intro-social -->
</section> <!-- /intro -->
<!-- about section
================================================== -->
<section id="about" style="padding-top:10px;">
<div class="section-intro">
<h5 style="text-align:center;">Introduction</h5>
<h1>R.K.Hall</h1>
<p class="lead">Radhakrishnan Hall of Residence has always been a frontier in all Social & Cultural, Sports and Technology activities and has one of the best student-Alumni culture established. An information website consisting of all performance videos, pictures gallery, student details, notable alumni, cultures and other details along with an interaction portal for current students with Alumni interested in leading candidates seeking guidance through and indirect interaction can definitely prove to be a good resource for all boarders of Radhakrishnan Hall of Residence. Through this website, it is also easy to keep all boarders informed about current updates on General Championship, leaderboard and a notice board for common announcements relevant to Radhakrishnan Hall of Residence including a mailing list for the circulation of the same!</p>
<p class="lead">A direct point of contact will be established between the Hall (in particular HCM) and alumni.Information about the culture and history of RK Hall will be publicly viewable and accessible.</p>
</div>
<!--===================================== -->
<section id="stats" class="count-up">
<div class="row">
<div class="col-twelve">
<div class="block-1-6 block-s-1-3 block-tab-1-2 block-mob-full stats-list">
<div class="bgrid stat">
<div class="icon-part">
<i class="icon-pencil-ruler"></i>
</div>
<h3 class="stat-count">
8
</h3>
<h5 class="stat-title">
Playing Grounds
</h5>
</div> <!-- /stat -->
<div class="bgrid stat">
<div class="icon-part">
<i class="icon-users"></i>
</div>
<h3 class="stat-count">
619
</h3>
<h5 class="stat-title">
Happy Hall Members
</h5>
</div> <!-- /stat -->
<div class="bgrid stat">
<div class="icon-part">
<i class="icon-badge"></i>
</div>
<h3 class="stat-count">
15000
</h3>
<h5 class="stat-title">
diya's Illumination
</h5>
</div> <!-- /stat -->
<div class="bgrid stat">
<div class="icon-part">
<i class="icon-light-bulb"></i>
</div>
<h3 class="stat-count">
10
</h3>
<h5 class="stat-title">
startups
</h5>
</div> <!-- /stat -->
<div class="bgrid stat">
<div class="icon-part">
<i class="icon-cup"></i>
</div>
<h3 class="stat-count">
11
</h3>
<h5 class="stat-title">
shops and canteens
</h5>
</div> <!-- /stat -->
<div class="bgrid stat">
<div class="icon-part">
<i class="icon-clock"></i>
</div>
<h3 class="stat-count">
424
</h3>
<h5 class="stat-title">
Rooms
</h5>
</div> <!-- /stat -->
</div> <!-- /stats-list -->
</div> <!-- /twelve -->
</div> <!-- /row -->
</section> <!-- /stats -->
<!-- /section-intro -->
</section>
<div class="row cool">
<div class="col-six">
<ul class="info-list about-content">
<center>
<h3>General Championship Count</h3>
<hr>
</center>
<center>
<li>
<strong>Social & Cultural</strong><br>22
</li>
</center><br>
<center>
<li>
<strong>Sports & Games</strong><br>22
</li>
</center><br>
<center>
<li>
<strong>Illumination</strong>
<br>
8 Gold<br>
2 Silver<br>
2 bronze
</li>
</center>
</ul>
</div>
<div class="col-six">
<center>
<h3>Performance</h3>
</center>
<hr><ul class="skill-bars"></hr>
<li>
<div class="progress percent70"><span>75%</span></div>
<strong>Sports&Games</strong>
</li>
<li>
<div class="progress percent85"><span>85%</span></div>
<strong>Social&Culture</strong>
</li>
<li>
<div class="progress percent55"><span>65%</span></div>
<strong>Technology</strong>
</li>
<li>
<div class="progress percent90"><span>90%</span></div>
<strong>Illumination</strong>
</li>
<li>
<div class="progress percent85"><span>85%</span></div>
<strong>Environment and Facilities</strong>
</li>
<li>
<div class="progress percent80"><span>80%</span></div>
<strong>Mess</strong>
</li>
</ul>
</div> </div>
<!--<center><img src="images/pic2.jpg" style="height:250px; width:800px;"></center> -->
<!-- resume Section
================================================== -->
<section id="resume" style="padding-top:10px;padding-bottom: 0px;">
<div class="resume-timeline">
<div class="col-twelve resume-header">
<h2>Wardens</h2>
</div> <!-- /resume-header -->
<div class="col-twelve">
<div class="timeline-wrap">
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Warden</h3>
</div>
<div class="timeline-content">
<h4> Prof. R P Pradhan</h4>
<p>
Phone (Office) : +91-3222-282316<br>
Phone (Residence) : +91-3222-282317<br>
Email : rudrap@vgsom.iitkgp.ernet.in<br></p>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Assistant Warden</h3>
</div>
<div class="timeline-content">
<h4>Prof. Gnaneshwar Nelakant</h4>
<p>
Phone (Office) : +91-3222-283656<br>
Phone (Residence) : +91-3222-283657<br>
Email : gnanesh@maths.iitkgp.ernet.in<br>
</p>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Assistant Warden</h3>
</div>
<div class="timeline-content">
<h4>Prof. Arindam Basu</h4>
<p>
Phone (Office) : +91-3222-283366<br>
Phone (Residence) : +91-3222-283367<br>
Email : abasu@gg.iitkgp.ernet.in<br>
</p>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block resume-header">
<h2 style="margin-bottom:30px;">Hall Council Members [H.C.M]</h2>
</div> <!-- /resume-header -->
<div class="timeline-block">
<div class="timeline-ico">
<a href="https://www.facebook.com/jeph.99?fref=ts" target="_blank" style="color:white"><i class="fa fa-facebook"></i></a>
</div>
<div class="timeline-header">
<h3>Hall President</h3>
</div>
<div class="timeline-content">
<h4> Prashant Jeph</h4>
<img src="hcm-images/jeph.jpg" width="200px">
<p>
<i class="fa fa-phone"></i> 7872838926<br>
<i class="fa fa-envelope"></i> prashantjeph783@gmail.com<br>
</p>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<a href="https://www.facebook.com/lomesh.narkhede1?fref=ts" target="_blank" style="color:white"><i class="fa fa-facebook"></i></a>
</div>
<div class="timeline-header">
<h3>Second Senate Member</h3>
</div>
<div class="timeline-content">
<h4>Lomesh Narkhede</h4>
<img src="hcm-images/lomesh.jpg" width="200px">
<p>
<i class="fa fa-phone"></i> 9735443882<br>
<i class="fa fa-envelope"></i> lomesh.narkhede@gmail.com<br>
</p>
</div>
</div>
<div class="timeline-block">
<div class="timeline-ico">
<a href="https://www.facebook.com/vividhkumar95?fref=ts" target="_blank" style="color:white"><i class="fa fa-facebook"></i></a>
</div>
<div class="timeline-header">
<h3>General Secretary <br> Mess</h3>
</div>
<div class="timeline-content">
<h4>Vividh Kumar</h4>
<img src="hcm-images/vividh.JPG" width="200px">
<p>
<i class="fa fa-phone"></i> 9933918211<br>
<i class="fa fa-envelope"></i> vividhkumar95@gmail.com<br>
</p>
</div>
</div>
<div class="timeline-block">
<div class="timeline-ico">
<a href="https://www.facebook.com/omkar.gabhale?fref=ts" target="_blank" style="color:white"><i class="fa fa-facebook"></i></a>
</div>
<div class="timeline-header">
<h3>General Secretary <br> Maintenance</h3>
</div>
<div class="timeline-content">
<h4>Omkar Gabhale</h4>
<img src="hcm-images/gabhale.jpg" width="200px">
<p>
<i class="fa fa-phone"></i> 9933993729<br>
<i class="fa fa-envelope"></i> omkargabhale97@gmail.com<br>
</p>
</div>
</div>
<div class="timeline-block">
<div class="timeline-ico">
<a href="https://www.facebook.com/tarak.ganesh?fref=ts" target="_blank" style="color:white"><i class="fa fa-facebook"></i></a>
</div>
<div class="timeline-header">
<h3>General Secretary <br> Social and Culture</h3>
</div>
<div class="timeline-content">
<h4>Tarak Ganesh</h4>
<img src="hcm-images/tarak.JPG" width="200px">
<p>
<i class="fa fa-phone"></i> 9933911678<br>
<i class="fa fa-envelope"></i> tarak3177@gmail.com<br>
</p>
</div>
</div>
<div class="timeline-block">
<div class="timeline-ico">
<a href="https://www.facebook.com/sakshamgoyal10?fref=ts" target="_blank" style="color:white"><i class="fa fa-facebook"></i></a>
</div>
<div class="timeline-header">
<h3>General Secretary<br>Technology</h3>
</div>
<div class="timeline-content">
<h4>Saksham Goyal</h4>
<img src="hcm-images/saksham.jpg" width="200px">
<p>
<i class="fa fa-phone"></i> 7820820002<br>
<i class="fa fa-envelope"></i> sakshamgoyal06@gmail.com<br>
</p>
</div>
</div>
<div class="timeline-block">
<div class="timeline-ico">
<a href="https://www.facebook.com/rishabh.surana.52?fref=ts" target="_blank" style="color:white"><i class="fa fa-facebook"></i></a>
</div>
<div class="timeline-header">
<h3>General Secretary <br> Sports and Games</h3>
</div>
<div class="timeline-content">
<h4>Rishabh Surana</h4>
<img src="hcm-images/surana.JPG" width="200px">
<p>
<i class="fa fa-phone"></i> 9406660493<br>
<i class="fa fa-envelope"></i> suranarishi15@gmail.com<br>
</p>
</div>
</div>
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-header">
<h3>Past H.C.M's</h3>
</div>
<div class="timeline-content">
<h4>Previous</h4>
<p data-toggle="modal" data-target="#HCM15" id="bt15">2015-2016</p>
<p data-toggle="modal" data-target="#HCM14" id="bt14">2014-2015</p>
<p data-toggle="modal" data-target="#HCM13" id="bt13">2013-2014</p>
</div>
</div>
</div> <!-- /timeline-wrap -->
</div> <!-- /col-twelve -->
<div id="HCM15" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<h1>H.C.M. 2015-2016</h1>
<p>Hall President<br><b><a href="https://www.facebook.com/bodhisattya.bhattacharya?fref=ts">Bodhisattya Bhattacharya</a></b> </p>
<p>Second Senate Member<br><b><a href="https://www.facebook.com/hariprasad.ronanki?fref=ts">Hari Prasad Ronanki</a></b> </p>
<p>G.Sec - Mess<br><b><a href="https://www.facebook.com/aarif.zaman.338?fref=ts">Md. Aarif Zaman</a></b> </p>
<p>G.Sec - Maintenance<br><b><a href="https://www.facebook.com/abhishekdaryan?fref=ts">Abhishek Chopde</a></b> </p>
<p>G.Sec - Social and Cultural<br><b><a href="">S.V.S.N Jagannadh</a></b> </p>
<p>G.Sec - Technology<br><b><a href=https://www.facebook.com/shubhrit.agrawal?fref=ts"">Shubhrit Agrawal</a></b></p>
<p>G.Sec - Sports<br><b><a href="https://www.facebook.com/shubhrit.agrawal?fref=ts">Sidharth Gurbani</a></b> </p>
</div>
</div>
</div>
<div id="HCM14" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<h1>H.C.M. 2014-2015</h1>
<p>Hall President<br><b>Dinesh Jangid</b> </p>
<p>Second Senate Member<br><b>Manish Chaudhary</b> </p>
<p>G.Sec - Mess<br><b>Bhupendra Bule</b> </p>
<p>G.Sec - Maintenance<br><b>Aditya Kumar</b> </p>
<p>G.Sec - Social and Cultural<br><b>Vivek Kumar</b> </p>
<p>G.Sec - Technology<br><b>Mohit Bansal</b></p>
<p>G.Sec - Sports<br><b>Tushar Singh Soam</b> </p>
</div>
</div>
</div>
<div id="HCM13" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<h1>H.C.M. 2013-2014</h1>
<p>Hall President<br><b>Shishir Kumar</b> </p>
<p>Second Senate Member<br><b>Sanjay Saini</b> </p>
<p>G.Sec - Mess<br><b>Manish Chaudhary</b> </p>
<p>G.Sec - Maintenance<br><b>Subodh Goyal</b> </p>
<p>G.Sec - Social and Cultural<br><b>Vikhyat Khare</b> </p>
<p>G.Sec - Technology<br><b>Puneet Dwivedi</b></p>
<p>G.Sec - Sports<br><b>Abinash Sinha</b> </p>
</div>
</div>
</div>
</div>
</section>
<!-- /features -->
<!-- Portfolio Section
================================================== -->
<section id="portfolio" style="
padding-top:30px;
">
<div class="section-intro">
<div class="col-twelve">
<h5>Gallery</h5>
<p class="lead">These some wonderful Memories.</p>
</div>
</div> <!-- /section-intro-->
<div class="portfolio-content">
<div class="col-twelve">
<!-- portfolio-wrapper -->
<div id="folio-wrapper" class="block-1-2 block-mob-full stack">
<!--<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/liberty.jpg" style="padding:20px;"alt="Liberty">
<a href="#modal-01" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Vinod Gupta's Memories</h3>
<span class="folio-types">
Contribution
</span>
</div>
</div>
</a>
</div>
</div> /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/shutterbug.jpg"style="padding:10px;" alt="Shutterbug">
<a href="#modal-02" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Illumination</h3>
<span class="folio-types">
Culture
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/clouds.jpg"style="padding:10px;"alt="Clouds">
<a href="#modal-03" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Rangoli</h3>
<span class="folio-types">
Ideas
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="td.jpg"style="padding:10px;" alt="Beetle">
<a href="#modal-04" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Teachers Day</h3>
<span class="folio-types">
Branding
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<!--<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/lighthouse.jpg"style="padding:10px;" alt="Lighthouse">
<a href="#modal-05" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Our Campus</h3>
<span class="folio-types">
:)
</span>
</div>
</div>
</a>
</div>
</div> /folio-item -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/gc1.jpg"style="padding:10px;" alt="Salad">
<a href="#modal-06" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">GC's</h3>
<span class="folio-types">
Winning Starts Here
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<!-- modal popups - begin
============================================================= -->
<div id="modal-01" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/modals/m-liberty.jpg" alt="" />
</div>
<div class="description-box">
<h4>Vinod Gupta's Memories</h4>
<p>- Name, batch, department and room number of Mr. Vinod Gupta.<br>
- Brief history of his life, before and after Kgp.<br>
- List of personal achievements.<br>
- Detailed list and description of his contributions to the hall.<br>
- List of contributions to the institute.<br>
</p>
<div class="categories">Achievement</div>
</div>
<div class="link-box">
<a href="http://www.iitkgp.ac.in">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-01 -->
<div id="modal-02" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/modals/m-shutterbug.jpg" alt="" />
</div>
<div class="description-box">
<h4>Illumination</h4>
<p>RK Hall has been upholding the tradition of Illumination from the start itself. This section will describe the current year’s happenings with regard to Illu , like the theme, some photos from during the making to the finish and final view of Illu</p>
<div class="categories">Ideas</div>
</div>
<div class="link-box">
<a href="http://www.iitfoundation.org/iit/halls/rk/diwali.shtml">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-02 -->
<div id="modal-03" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/modals/m-clouds.jpg" alt="" />
</div>
<div class="description-box">
<h4>Rangoli</h4>
<p>Category wise achievements of hall students will be listed, for eg, academic achievements, sports achievements (like inter-iit etc), soc-cult achievements, tech achievements and other miscellaneous achievements.</p>
<div class="categories">Ideas</div>
</div>
<div class="link-box">
<a href="https://www.facebook.com/R.K.Hall.IITkgp/photos/?tab=album&album_id=994667697226060">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-03 -->
<div id="modal-04" class="popup-modal slider mfp-hide">
<div class="media">
<img src="td.jpg" alt="" />
</div>
<div class="description-box">
<h4>Teachers Day Celebration</h4>
<p>Another culture of RK Hall is celebrating Teachers Day which marks the birth anniversary of second President of the country Dr Sarvepalli Radhakrishnan, a revered educationist, philosopher and recipient of highest civilian honour of the country Bharat Ratna.</p>
<div class="categories">Branding</div>
</div>
<div class="link-box">
<a href="http://www.iitkgp.ac.in">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-04 -->
<div id="modal-05" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/modals/m-lighthouse.jpg" alt="" />
</div>
<div class="description-box">
<h4>Teachers Day</h4>
<p></p>
<div class="categories">awsm</div>
</div>
<div class="link-box">
<a href="https://www.facebook.com/plugins/post.php?href=https%3A%2F%2Fwww.facebook.com%2Fawaaziitkgp%2Fphotos%2Fa.146211918732505.22874.146188872068143%2F1207058482647838%2F%3Ftype%3D3&width=500"></iframe>">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-05 -->
<div id="modal-06" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/gc2.jpg" alt="" />
</div>
<div class="description-box">
<h4>GC's</h4>
<p>RK Hall has been consistent in the GC's earning medals in every sector and has been the 2012 Socult Winner recently</p>
<div class="categories">Winning Starts Here </div>
</div>
<div class="link-box">
<a href="http://www.iitkgp.ac.in">Details</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-06 -->
<!-- modal popups - end
============================================================= -->
</div> <!-- /portfolio-wrapper -->
</div> <!-- /twelve -->
</div> <!-- /portfolio-content -->
</section> <!-- /portfolio -->
<!-- CTA Section
================================================== -->
<center><section id="cta"style="padding-top:0px;padding-bottom:0px">
<div class="row cta-content">
<div class="col-twelve section-ads" style="width:1390px">
<h2 class="h01"><a href="#contact">Contribution to Hall</a></h2>
<p class="lead">
It's not how much we give but how much love we put into giving to <span>our Hall</span>.
<!-- Simply type the promocode in the box labeled “Promo Code” when placing your order. -->
</p>
<div class="action">
<a class="button button-primary large" href="#contact">Contribute</a>
</div>
</div>
</div> <!-- /cta-content -->
</section></center> <!-- /cta -->
<!-- services Section
================================================== -->
<section id="services">
<div class="overlay"></div>
<div class="section-intro">
<div class="col-twelve">
<h5>General Championship</h5>
<h1>Our Dedication</h1>
<p class="lead">Its Our Pleasure</p>
</div>
</div> <!-- /section-intro -->
<div class="services-content">
<div id="owl-slider" class="owl-carousel services-list">
<div class="service">
<span class="icon"><i class="icon-earth"></i></span>
<div class="service-content">
<h3> Social and Cultural</h3>
<p class="desc">1. Dramatics Cup<font data-toggle="modal" data-target="#socult1" id="standing1" class="standings" color="#6e6e6e">(Standings)</font><br>
2. Literary Cup<font data-toggle="modal" data-target="#socult2" id="standing2" class="standings" color="#6e6e6e">(Standings)</font><br>
3. Fine-arts Cup<font data-toggle="modal" data-target="#socult3" id="standing3" class="standings" color="#6e6e6e">(Standings)</font><br>
4. Entertainment Cup<font data-toggle="modal" data-target="#socult4" id="standing4" class="standings" color="#6e6e6e">(Standings)</font><br>
</p>
</div>
</div> <!-- /service -->
<div class="service">
<span class="icon"><i class="icon-window"></i></span>
<div class="service-content">
<h3> Sports and Games</h3>
<p class="desc">1. Indoor Games<font data-toggle="modal" data-target="#sports1" id="standing5" class="standings" color="#6e6e6e">(Standings)</font><br>
2. Small Arena Games<font data-toggle="modal" data-target="#sports2" id="standing6" class="standings" color="#6e6e6e">(Standings)</font><br>
3. Football and Hockey<font data-toggle="modal" data-target="#sports3" id="standing7" class="standings" color="#6e6e6e">(Standings)</font><br>
4. Aquatics and Water polo , Weightlifting<font data-toggle="modal" data-target="#sports4" id="standing8" class="standings" color="#6e6e6e">(Standings)</font></a><br>
5. Cricket<font data-toggle="modal" data-target="#sports5" id="standing9" class="standings" color="#6e6e6e">(Standings)</font><br>
6. Athletics<font data-toggle="modal" data-target="#sports6" id="standing10" class="standings" color="#6e6e6e">(Standings)</font><br>
</p>
</div>
</div> <!-- /service -->
<div class="service">