-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
2920 lines (2744 loc) · 133 KB
/
index.html
File metadata and controls
2920 lines (2744 loc) · 133 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
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">
<head>
<meta charset="utf-8" />
<title>IIT-P Hostel </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/style2.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"
/>
<!--Accordion table-->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500|Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"/>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<style type="text/css">
.bs-example{
margin: 20px;
}
</style>
</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">Hostel Rules</a></li>
<li><a href="#wardenMessage">Warden's Message</a></li>
<li><a href="#events">Life at Hostel</a></li>
<li><a href="#studentRepresentatives">Student Representative</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#team">Contacts</a></li>
<li><a href="./reachIITP.html">Reach us</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="imghostel/h1.jpg" alt="" />
</div>
<div class="carousel-container">
<div class="carousel-content">
<h2>Hostels, IIT Patna</h2>
<p>
The students of IIT Patna are provided with accomodation facilities in the campus of the college
itself. For this purpose, IIT Patna currently has two boys' hostel and one girls' hostel in the
campus.
</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="imghostel/h2.jpg" alt="" />
</div>
<div class="carousel-container">
<div class="carousel-content">
<h2>Hostels, IIT Patna</h2>
<p>
The students of IIT Patna are provided with accomodation facilities in the campus of the college
itself. For this purpose, IIT Patna currently has two boys' hostel and one girls' hostel in the
campus.
</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="imghostel/h4.jpg" alt="" />
</div>
<div class="carousel-container">
<div class="carousel-content">
<h2>Hostels, IIT Patna</h2>
<p>
The students of IIT Patna are provided with accomodation facilities in the campus of the college
itself. For this purpose, IIT Patna currently has two boys' hostel and one girls' hostel in the
campus.
</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>
<!-- <p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p> -->
</header>
<br>
<br>
<div class="row events-extra wow fadeInUp" style="background-color: #fff;">
<div class="col-lg-6 content order-lg-1 order-2">
<h4 class="text-center">ABOUT THE HOSTELS</h4>
<br>
<p>
Staying in the campus is particularly attractive because resident students have access to several facilities. IITP has presently two boy’s hostel and one girl’s hostel that provides comfortable accommodation and are located close to the academic area. There are two married scholar’s apartments (located nearby campus) for PhD and Master’s students. The hostels are located in peaceful, clean, aesthetic environment in campus. Each Hostel in the Institute is self-contained with amenities such as a reading room, an indoor games room, a gymnasium and a dining hall with mess, along with
various food joints and canteen in the Food court. The campus community forms a close knit group and you make friends for life here. Presently over 1500 students are residing in the hostels. Students have access to
Wi-Fi connectivity throughout the buildings. In addition to the adequate health care facilities, all
the students are covered under Vidyarthi Mediclaim Insurance Policy. Campus has a basketball court, a volleyball
court, a tennis court, a badminton court, a cricket ground and a football ground.
</p>
<p>
The Associate Dean of Students, in his capacity as the President of the Board for Hostel Management, is the head of the hostel organization. He is assisted in his administrative responsibilities by the Wardens, Hostel Staffs and the Assistant Registrar (Student Affairs).
</p>
<p>
The students elect a student body once every
year in the month of April which becomes a part of the College Gymkhana body.
</p>
</div>
<div class="col-lg-6 background order-lg-2 order-1">
<div class="owl-carousel owl-theme">
<div class="item"><img src="./imghostel/bh4.jpg" /></div>
<div class="item"><img src="./imghostel/h1.jpg" /></div>
<div class="item"><img src="./imghostel/bh5.jpg" /></div>
<div class="item"><img src="./imghostel/bh3.jpg" /></div>
</div>
</div>
</div>
<br />
<div class="row events-extra wow fadeInUp" style="background-color: #fff;">
<div class="col-lg-6">
<div class="owl-carousel owl-theme">
<div class="item"><img src="./imghostel/bh7.jpg" /></div>
<div class="item"><img src="./imghostel/h5.jpeg" /></div>
<div class="item"><img src="./imghostel/bh8.jpg" /></div>
<div class="item"><img src="./imghostel/bh1.jpg" /></div>
<div class="item"><img src="./imghostel/h8.jpg" /></div>
<div class="item"><img src="./imghostel/h13.jpg" /></div>
<div class="item"><img src="./imghostel/h12.jpg" /></div>
<div class="item"><img src="./imghostel/h14.jpg" /></div>
</div>
</div>
<div class="col-lg-6 pt-5 pt-lg-0">
<h4 class="text-center">BUILDINGS</h4>
<br>
<p>
The boys' hostel building is a 8-storey structure divided into 4 blocks viz. A,B,C,D. It's spread
onto an area of 28849 Sqm. It has 912 rooms, all with a balcony, window, cupboard, and enough
niches. The hostel has two common rooms used for recreational and co-curricular activities and
a gymnasium. There are total of 6 lifts in the building. Watercoolers are installed on each floor.
Fire extinguishers and other safety measures are taken care of. The building can resist high
magnitude earthquakes.
</p>
<p>
The girls hostel is a 5-storey building with 2 blocks, A and B. There are total 108 rooms in the
girls' hostel with each room being spacious and having 2 cupboards and a window. Both the
blocks in the girls' hostel have 2 lifts and there are water coolers and washing machines on
alternate floors. There are also geysers and fire extinguishers installed on every floor. There is
1 common room, 1 mess and a part of the common room is made into a gym. The girls' hostel
also has a badminton court.
</p>
<p>
Seven more such boys hostels and 2 girls hostels are proposed in the plan.
</p>
</div>
</div>
<br />
<div class="row events-extra wow fadeInUp" style="background-color: #fff;">
<div class="col-lg-6 order-1 order-lg-2">
<div class="owl-carousel owl-theme">
<div class="item"><img src="./imghostel/gym1.jpg" /></div>
<div class="item" style="height: 280px;"><img src="./imghostel/gym2.jpg" /></div>
<div class="item"><img src="./imghostel/gym3.jpg" /></div>
<div class="item" style="height: 280px;"><img src="./imghostel/gym4.jpg" /></div>
</div>
</div>
<div class="col-lg-6 pt-4 pt-lg-0 order-2 order-lg-1">
<h4 class="text-center">GYMNASIUM</h4>
<br>
<p>
Boys' hostel has a gymnasium on the first floor along side the common room. It has all the
basic exercise equipments like dumbbells, barbells, bench press, etc. It also has other major
equipments like tredmills, exercise bike, squat station, hammer strength machine, cables and
pulleys, lat pull down machine, leg extension machine and few more.
</p>
</div>
</div>
<br />
<div class="row events-extra wow fadeInUp" style="background-color: #fff;">
<div class="col-lg-6">
<div class="owl-carousel owl-theme">
<div class="item"><img src="./imghostel/h5.jpg" /></div>
<div class="item"><img src="./imghostel/mess1.jpg" /></div>
</div>
</div>
<div class="col-lg-6 pt-5 pt-lg-0">
<h4 class="text-center">MESS</h4>
<br>
<p>
Boys' Hostel has two mess halls on the ground floor and girls' hostel has one. They provide
breakfast, lunch, snacks and dinner. Messes follow a specific menu for the month. Every month,
the mess menu gets changed. Coffee/tea is provided in the breakfast and snacks time. Students
elects a mess secretary from all the years to look after the mess related issues. Messes are
kept clean and the food is cooked and served in hygienic conditions.
</p>
</div>
</div>
<br />
</div>
</section>
<!-- #about -->
<!--========================
Hostel Rules Section
===========================-->
<section id="clubs">
<div class="container">
<header class="section-header">
<h3>Hostel Rules</h3>
</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>
<h3 class="text-center">CODE OF CONDUCT AND DISCIPLINE FOR STUDENTS </h3>
<p class="lead">
The rules and guidelines for management of hall residence have been framed for the smooth functioning of the Institute. All the hall residents are requested to cooperate with the wardens for their efficient enforcement. They must also abide by the norms of conduct & discipline applicable for studentship at IIT Patna and follow in letter and spirit any regulation laid down regarding conduct in the hall. For infraction of discipline, Warden is the immediate concerned authority. Some of the rudimentary rules & regulations are as follows:
</p>
<p class="lead">
1.No student shall change or give up the assigned residence in any hall of residence without prior permission of concerned warden.<br>
2.Students given accommodation in a hall of residence must fill in the student accommodation record and take possession of their room and furnishings under their own signature. They must also submit a copy of their recent passport size photograph to the warden's office for this purpose. This record must be updated for any subsequent changes.<br>
3.The resident shall be responsible for the furnishings for the entire period of his/her stay at IIT Patna. Willful damage of furnishings due to improper handling and misuse shall be treated as an act of gross indiscipline and suitable action shall be taken.<br>
4.Students shall be required to make their rooms available whenever required for repairs, maintenance, disinfection & inspection.<br>
5.Students will be responsible for the safe keeping of their own property. In the event of oss of the personal property of a student due to theft, fire or any other cause, the Institute shall accept no responsibility and shall not be liable for payment of any compensation.<br>
6.Use of electrical appliances like refrigerators & TV are strictly prohibited.<br>
7.Engaging personal attendants and keeping pets by a student in any Hall of residence is strictly prohibited.<br>
8.Acquaintances/Relatives/Friends etc of the opposite sex will not be permitted to visit individual rooms or stay in a student hostel. However a short duration visit to the common room/office room may be permitted by the warden on request. A record of all such visits shall be maintained.<br>
9.Smoking in the dining hall, common room, library and other public places is strictly prohibited.<br>
10.Possession, distribution and consumption of alcohol, drugs and all other intoxicants in hall of residence are strictly banned.<br>
11.Improper behavior with fellow students, staff, wardens, harassment of Juniors/Seniors, causing of disturbance to others etc will be treated as acts of indiscipline.<br>
12.Indiscriminate fixing of pictures or writing of graffiti on the hall's wall is considered an act of indiscipline and individual(s) responsible for such act will be held responsible for the damage caused.<br>
13.All residents shall strictly keep to the timings set down for meals and maintain decorum and decency regarding dress and behavior in the dining hall.<br>
14.Any resident of Hall going out of hall premises between 10pm and 6am must sign a register, indicating his/her destination and time of out/return. It may be noted that permission to stay away from Hall beyond 10pm and 6am can only be granted when the resident is required to work in library, laboratory, computer room etc. For overnight or longer stay off campus, a resident must indicate his/her destination and expected duration of absence in writing to the warden.<br>
</p>
<p class="lead">
Failure to comply with the requirements and procedures applicable to residents may lead to disciplinary action (s) which may include withholding of grades, withdrawal of permission to appear in examinations etc.
</p>
<br>
<p class="lead">
<b>STUDENTS DISCIPLINARY COMMITTEE:</b>
<br>
The hostel disciplinary committee will have the warden/Asst.Warden as the chairman, General Secretary of the hall and one student representative as members. Within 24 hrs of receiving any complaint (verbal, written) this committee will look into the allegations, evaluate them, conduct inquiry and after establishing with reasonable conviction, will award penalties/punishment to the student (s) as per the conduct and discipline rules.
</p>
</div>
</div>
</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>
</section>
<!--Hostel rules-->
<!--=======================
Warden's Message
========================-->
<section id="wardenMessage">
<div class="container">
<header class="section-header">
<h3>Warden's Message</h3>
</header>
<div class="row row-clubs" style=>
<div class="col col-content col-content-text wow fadeInUp" data-wow-delay="0.1s">
<div class="bg-text">
<h5>Dear Students,</h5>
<p>It is a great pleasure and privilege for us to welcome you all at IIT Patna.</p>
<p>IIT Patna has a 500 acres sprawling lush green campus. With green patches, newly constructed buildings and playgrounds, the ambience of this IIT campus is worth appreciating. The pollution free environment, habited by numerous beautiful birds and animals will ensure that you have bundles of sweet memories to cherish after you graduate from IIT Patna.</p>
<p>We have a team of wardens for Boys hostel (Dr. Saurabh Kumar Pandey, Dr. Sourav Kumar Dandapat, Dr. Deepu P., Dr. Arghya Choudhury, Dr. Prakash Parida and Dr. Balendu Bhooshan Upadhyay) & Girls Hostel (Dr. Neha Kiritkumar Shah and Dr. Antara Garai). All wardens are faculty/scientist of different departments of the institute. As a member of team of wardens of different blocks (A, B, C, D) of the hostel of IIT Patna, Bihta, we are delighted to inform you all that the dedicated team of wardens are supported by adequate staff members and caretakers. All of us are committed to provide you all with utmost care for a comfortable stay coupled with desirable ambience for academic, cultural, extra-curricular and overall personality development.</p>
<p>The different blocks of the hostel of IIT Patna, Bihta function democratically where student residents play key role in the governance process as secretaries for various activities (e.g. mess, maintenance, cultural, technical, environmental, sports etc.). Team of wardens of different blocks of the hostel are the immediate advisor, friend, philosopher and guide to the students as and when need arises. For day-to-day activities related to hostel matter, adequate supporting staffs (caretaker, maintenance staff) are readily available. Each of the blocks of the hostel have complete internet connectivity with links to the virtual class rooms/NPTEL lectures, English Edge Software, indoor games facility, TV room, washing facility, canteen, and other utilities available at your doorstep.</p>
<p>We are very sure that you all will definitely enjoy your stay in the IIT Patna, Bihta and become responsible and enlightened citizens of India with capability to face and resolve all types of challenges in the greater interest of society and the country as a whole.</p>
<p>We wish you all the best for your comfortable, cordial and productive stay at IIT Patna.</p>
<p>Jai Hind</p>
<p>
<h5 style="font-weight: 600;">Wardens' Team</h5>
<h5>IIT Patna</h5>
</p>
</div>
</div>
</div>
</div>
</section>
<!--Warden's Message-->
<!--========================
Students life Section
===========================-->
<section id="events">
<div class="container">
<header class="section-header">
<h3>Life at Hostel</h3>
</header>
<br>
<div class="row about-cols">
<div class="col-md-12 wow fadeInUp">
<div class="about-col about-col-clip1">
<header class="section-header">
<h2>Student Life</h2>
</header>
<br>
<p>
Beyond beds and books, hostel life grows up, is what they say. But at IIT Patna, hostel life is more than just books and the hostel rooms.
It's about sharing, caring, exciting events, and a home away from home with a new family.
Here, hostel life is filled with fun and frolic as well as some frisk of study.
</p>
<p>
Most of the students have their first time stay away from their parents when they come to IIT, but rest assured,
there is nothing to worry about. The environment here is absolutely safe and secure. The community is very much caring and helpful.
Starting to live in the hostel is like having unlocked a door to a treasure, a treasure of opportunities.
IIT Patna community offers ample of diversified opportunities to aid student's personality development.
</p>
<p>
You can pursue whatever you want. You like dancing - there is dancing club, you like guitar - there is music club,
you like robotics and exciting stuff - there is robotics club. Photography club (PIXXeL), Literary club,
Programming club (NJACK), Entrepreneurship club (E-cell) and whatever your hobby is, you can always find peers
with similar hobby in a club. You can dream whatever you want and chase it because sky is the limit. Within the first year,
you may find yourself able to develop android apps or websites,
just with the help of clubs.
</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>No Ragging</h2>
</header>
<br>
<p>
At IIT Patna, ragging is completely prohibited. The Institute has zero tolerance towards ragging.
In fact, when you start living at the hostels, you realize that the seniors are extremely helpful and are always there
to guide their juniors with their experiences in various fields.
</p>
<p>
Living in the hostels with the seniors' help available
at any hour truly makes the life at the hostels easier. You can learn a great deal from your seniors.
</p>
</div>
</div>
<div class="col-md-12 wow fadeInUp" data-wow-delay="0.1s">
<div class="about-col about-col-clip1">
<header class="section-header">
<h2>Annual Fest</h2>
</header>
<br>
<p>
Fests are important part of a student's life at IIT. These fests are completely organized by students themselves.
On one hand, you get to relax from studies and enjoy, and on the other hand you gain several management
and technical experiences that take you a long way in your life.
</p>
<p>
In <b>Nebula</b>, the freshers are given a party by the seniors which is usually organized in the 1st or 2nd week of August.
This is where the freshers first interact with their seniors and get to know more about the college life.
</p>
<p>
<b>Reverberance</b> is organized during Diwali, in which cultural activities are held, like singing and dancing competitions along
with open mic, band performances and hostel decoration competition.This celebration during Diwali in which the complete college campus
is decorated with lights and rangoli, makes the college feel like home.
</p>
<p>
<b>Celesta</b> is the annual techno-management fest of IITP held in the month of October organised for 2 days during which
many technical and management events are organized by each club.
</p>
<p>
Finally comes <b>Anwesha</b>, held during the last week of January which is the annual techno-cultural fest of IITP.
This is the biggest fest of IITP. Anwesha spans for three to four days consisting of various cultural and technical events
and the grand pro-nites on each night.
</p>
<p>
Annual fests are the time when everybody is filled with zeal and enthusiasm. This is the time when students learn about
many things beside academics, by organising and participating in various events.
</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>Amenities</h2>
</header>
<br>
<p>
The Hostels are equipped with all the modern facilities. Students have access to the Internet via Wi-Fi, all 24 hours.
</p>
<p>
Hostel has a gymnasium for keeping your body fit, two common rooms for gatherings, recreational activities, watching TV and
other interesting stuffs. There are table tennis and badminton courts inside the hostel premises. Basketball court, Tennis court
and Volleyball court are located beside the hostel.
</p>
<p>
Hostels have smart lighting system, water coolers and geysers on each floor. There are two mess, a magazine room, a doctor room
on the ground floor.
</p>
</div>
</div>
<div class="col-md-12 wow fadeInUp" data-wow-delay="0.1s">
<div class="about-col about-col-clip1">
<header class="section-header">
<h2>Everyday Activities</h2>
</header>
<br>
<p>
There are many activities going around in the hostel that makes hostel life fun. There are also inter block activities
and competitions in sports and cultural fields.
Students also go for sports practice, cycling, exercise and other recreational activities every evening.
Last but not least the Birthdays....the celebration starts at midnight with cake, soft drinks and music.
Celebrating birthdays in the hostels has become a tradition now and everyone looks forward to it.
</p>
<p>
Classes and Labs start from 8am in the morning till 5pm in the evening, 1-2 pm is the lunch break during which students go to the mess and have lunch. Saturday and Sunday are holidays during which students get time to relax, enjoy and do self study.
</p>
<p>
Last but not least the Birthdays....the celebration starts at midnight with cake and soft drinks! Celebrating birthdays in the hostels has become a tradition now and everyone looks forward to it.
</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>Hostel Council</h2>
</header>
<br>
<p>
The Hostel council is constituted of cultural,mess,sports,environment,literary,technical, and maintenance secretaries.
Each year of B.tech and M.tech have their own secretaries for each council. There is also a general secretary of each
year heading all secretaries. These secretaries are elected by the hostel students through Gymkhana elections every year.
These secretaries are responsible for proper functioning of their respective councils.
</p>
<p>
Hostel life is full of once in a life time memories which students cherish for the rest of their lives.
So, to sum it up in short, that's our Hostel Life at IIT Patna... What we call "Home Sweet Home"!
</p>
</div>
</div>
</div>
</div>
</section>
<!-- #events -->
<!--==========================
Students representatives
===========================-->
<section id="studentRepresentatives">
<header class="section-header">
<h3 class="section-title">Student Representatives</h3>
</header>
<br>
<div class="container">
<h4 class="text-center">BOY'S HOSTEL</h4>
<div class="bs-example">
<div class="accordion" id="accordionExample">
<div class="card">
<div class="card-header" id="headingThree">
<h2 class="mb-0">
<button type="button" class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseThree"><h5 style="color: #222;">B.Tech 4th Year</h5></button>
</h2>
</div>
<div id="collapseThree" class="collapse show" aria-labelledby="headingThree" data-parent="#accordionExample">
<div class="card-body">
<table>
<thead>
<tr>
<th>Name</th>
<th>Post</th>
<th>Contact no.</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>Abhinav Gyan</td>
<td>Vice President, Gymkhana</td>
<td>7250925416</td>
<td>vpgymkhana@iitp.ac.in</td>
</tr>
<tr>
<td>Abhinav Sharma</td>
<td>General Secretary, House of Socio Cultural affairs (HOSCA)</td>
<td>9410866066</td>
<td>abhinav.ce16@iitp.ac.in </td>
</tr>
<tr>
<td>Satyam Singh</td>
<td>Mess Secretary</td>
<td>9955543075</td>
<td>satyam.ce16@iitp.ac.in</td>
</tr>
<tr>
<td>Reddi Sai Vamsi</td>
<td>General Secretary, Sports and Games</td>
<td>9491916025</td>
<td>reddi.me16@iitp.ac.in</a></td>
</tr>
<tr>
<td>Navin Kumar</td>
<td>Maintenance Secretary</td>
<td>7633058278</td>
<td>Navin.me16@iitp.ac.in </td>
</tr>
<tr>
<td>Parth Kulkarni</td>
<td>General Secretary, Technical Affairs</td>
<td>7303069559</td>
<td>kulkarni.cs16@iitp.ac.in</a></td>
</tr>
<tr>
<td>Aswin Krishna</td>
<td>Students' Welfare Secretary & UG Representative</td>
<td>8129450246</td>
<td>aswin.cb16@iitp.ac.in</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h2 class="mb-0">
<button type="button" class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseFour"><h5 style="color: #222;">B.Tech 3rd Year</h5></button>
</h2>
</div>
<div id="collapseFour" class="collapse" aria-labelledby="headingThree" data-parent="#accordionExample">
<div class="card-body">
<table>
<thead>
<tr>
<th>Name</th>
<th>Post</th>
<th>Contact no.</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>Jagdish Aanjana</td>
<td>Students' Welfare Secretary</td>
<td>7230989137</td>
<td>jagdish.ce17@iitp.ac.in</td>
</tr>
<tr>
<td>Pranshu Chandani</td>
<td>Mess Secretary</td>
<td>8791838088</td>
<td>pranshu.ch17@iitp.ac.in</td>
</tr>
<tr>
<td>Anuj Kumar</td>
<td>Sports Secretary</td>
<td>9110066718</td>
<td>anuj.ce17@gmail.com</td>
</tr>
<tr>
<td>Priyansh Singh Rao</td>
<td>Secretary, House of Socio Cultural affairs (HOSCA) </td>
<td>8058501770</td>
<td>priyansh.ch17@iitp.ac.in</td>
</tr>
<tr>
<td>Rahul Pandey</td>
<td>Maintenance Secretary</td>
<td>7301767109</td>
<td>rahulpandey.cs17@iitp.ac.in</td>
</tr>
<tr>
<td>Shivansh Shukla</td>
<td>Secretary, Technical Affairs</td>
<td>8707499083</td>
<td>shivansh.cs17@iitp.ac.in</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h2 class="mb-0">
<button type="button" class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseFive"><h5 style="color: #222;">B.Tech 2nd Year</h5></button>
</h2>
</div>
<div id="collapseFive" class="collapse" aria-labelledby="headingThree" data-parent="#accordionExample">
<div class="card-body">
<table>
<thead>
<tr>
<th>Name</th>
<th>Post</th>
<th>Contact no.</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>Kishan Kumar Singh</td>
<td>Students' Welfare Secretary</td>
<td>9558434293</td>
<td>1801ee22@iitp.ac.in</td>
</tr>
<tr>
<td>V S Subhang</td>
<td>Mess Secretary</td>
<td>8978880947</td>
<td>1801cs59@iitp.ac.in</td>
</tr>
<tr>
<td>Jagan Mohan</td>
<td>Sports Secretary</td>
<td>9381587949</td>
<td>1801me34@iitp.ac.in</td>
</tr>
<tr>
<td>Ankush Panghal</td>
<td>Secretary, House of Socio Cultural affairs (HOSCA)</td>
<td>9729989228</td>
<td>1801cb04@iitp.ac.in
</td>
</tr>
<tr>
<td>Anand Kishore</td>
<td>Maintenance Secretary</td>
<td>7033583834</td>
<td>1801me10@iitp.ac.in</td>
</tr>
<tr>
<td>Aman Jee</td>
<td>Secretary, Technical Affairs</td>
<td>7424904721</td>
<td>1801ee03@iitp.ac.in</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h2 class="mb-0">
<button type="button" class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseTwo"><h5 style="color: #222;">M.Tech</h5></button>
</h2>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionExample">
<div class="card-body">
<table>
<thead>
<tr>
<th>Name</th>
<th>Post</th>
<th>Contact no.</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>Akashdeep Singh</td>
<td>Students' Welfare Secretary</td>
<td>7307210076</td>
<td>1812ma05@iitp.ac.in</td>
</tr>
<tr>
<td>Sumit Choudhary</td>
<td>Mess Secretary and M.Tech Representative</td>
<td>9045615742</td>
<td>1811ms09@iitp.ac.in</td>
</tr>
<tr>
<td>Rahul Verma</td>
<td>Sports Secretary</td>
<td>9473994556</td>
<td>1811ms06@iitp.ac.in</td>
</tr>
<tr>
<td>Kamaljeet Kundu</td>
<td>Secretary, House of Socio Cultural affairs (HOSCA)</td>
<td>9034952135</td>
<td>1812ch09@iitp.ac.in</td>
</tr>
<tr>
<td>Kundan Singh</td>
<td>Maintenance Secretary</td>
<td>9473530949</td>
<td>1811mc06@iitp.ac.in</td>
</tr>
<tr>
<td>Rajeev Raushan</td>
<td>Secretary, Technical Affairs</td>
<td>9891055809</td>
<td>1811cs13@iitp.ac.in</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingOne">
<h2 class="mb-0">
<button type="button" class="btn btn-link" data-toggle="collapse" data-target="#collapseOne"><h5 style="color: #222;">PhD</h5></button>
</h2>
</div>
<div id="collapseOne" class="collapse" aria-labelledby="headingOne" data-parent="#accordionExample">
<div class="card-body">
<table>
<thead>
<tr>
<th>Name</th>
<th>Post</th>
<th>Contact no.</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>Kuldeep Awasthi</td>
<td>Students' Welfare Secretary & Ph.D. Representative</td>
<td>9729076909</td>
<td>kuldeep.pme16@iitp.ac.in</td>
</tr>
<tr>
<td>Kamlesh Kumar</td>
<td>Mess Secretary</td>
<td>8340690306</td>
<td>kamlesh_1821me03@iitp.ac.in</td>
</tr>
<tr>
<td>Akash Priy</td>
<td>Sports Secretary </td>
<td>8709348171</td>
<td>akash_1821me02@iitp.ac.in</td>
</tr>
<tr>
<td>Santosh Mishra </td>
<td>Secretary, House of Socio Cultural affairs (HOSCA)</td>
<td>9717621599</td>
<td>santosh_1821cs03@iitp.ac.in</td>
</tr>
<tr>
<td>Shivam Dubey</td>
<td>Maintenance Secretary</td>
<td>9258310376</td>
<td>Shivam_1821ch04@iitp.ac.in</td>
</tr>
<tr>
<td>Rishikesh Kumar</td>
<td>Secretary, Technical Affairs</td>
<td>9718165518</td>
<td>rishikesh.pme16@iitp.ac.in</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
<div class="container">
<h4 class="text-center">GIRL'S HOSTEL</h4>
<div class="bs-example">
<div class="accordion" id="accordionExample2">
<div class="card">
<div class="card-header" id="headingGhOne">
<h2 class="mb-0">
<button type="button" class="btn btn-link" data-toggle="collapse" data-target="#collapseGhOne"><h5 style="color: #222;">Under Graduate</h5></button>
</h2>
</div>
<div id="collapseGhOne" class="collapse" aria-labelledby="headingGhOne" data-parent="#accordionExample2">
<div class="card-body">
<table>
<thead>
<tr>
<th>Name</th>
<th>Post</th>
<th>Contact no.</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bhavani Susmitha</td>
<td>Students' Welfare Secretary</td>