forked from vishal2612200/college-website-design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcampus.html
327 lines (237 loc) · 12.4 KB
/
campus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- For IE -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- For Resposive Device -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CAMPUS</title>
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="56x56" href="http://www.gbpec.edu.in/assets/images/logo_new.png">
<!-- Main style sheet -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- responsive style sheet -->
<link rel="stylesheet" type="text/css" href="css/responsive.css">
<!-- Fix Internet Explorer ______________________________________-->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script src="vendor/html5shiv.js"></script>
<script src="vendor/respond.js"></script>
<![endif]-->
<!-- Js File_________________________________ -->
<!-- j Query -->
<script type="text/javascript" src="vendor/jquery.2.2.3.min.js"></script>
<!-- Bootstrap JS -->
<script type="text/javascript" src="vendor/bootstrap/bootstrap.min.js"></script>
<!-- Vendor js _________ -->
<!-- owl.carousel -->
<script type="text/javascript" src="vendor/owl-carousel/owl.carousel.min.js"></script>
<!-- mixitUp -->
<script type="text/javascript" src="vendor/jquery.mixitup.min.js"></script>
<!-- Progress Bar js -->
<script type="text/javascript" src="vendor/skills-master/jquery.skills.js"></script>
<!-- Validation -->
<script type="text/javascript" src="vendor/contact-form/validate.js"></script>
<script type="text/javascript" src="vendor/contact-form/jquery.form.js"></script>
<!-- Calendar js -->
<script type="text/javascript" src="vendor/monthly-master/js/monthly.js"></script>
<!-- Theme js -->
<script type="text/javascript" src="js/theme.js"></script>
<script type="text/javascript" src="js/map-script.js"></script>
</head>
<style>
@media (max-width: 650px){
.logo{
width:60px;
height:50px;
}
}
</style>
<body>
<div class="main-page-wrapper">
<!--
=============================================
Theme Header
==============================================
-->
<header class="theme-main-header">
<div class="container">
<a href="index.html" class="logo float-left tran4s"><img src="http://www.gbpec.edu.in/assets/images/logo_new.png" alt="Logo"></a>
<!-- ========================= Theme Feature Page Menu ======================= -->
<nav class="navbar float-right theme-main-menu">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
Menu
<i class="fa fa-bars" aria-hidden="true"></i>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="notice.html">NOTICES</a></li>
<!-- <li><a href="index.html#project-section">SOCI</a></li>-->
<li><a href="agenda/index.html">EVENTS</a>
<ul class="sub-menu">
<li><a href="events.html" class="tran3s">old</a></li>
</ul>
</li>
<li><a href="projects.html">PROJECTS</a></li>
<li class="dropdown-holder active"><a href="#">STUDENTS CORNER</a>
<ul class="sub-menu">
<li><a href="#" class="tran3s">Campus</a></li>
<li><a href="gallery.html" class="tran3s">Activities</a></li>
<li><a href="socities.html" class="tran3s">Socities</a></li>
</ul>
</li>
<li><a href="placements.html">PLACEMENTS</a></li>
<li class="dropdown-holder"><a href="academics.html">ACADEMICS</a>
<ul class="sub-menu">
<li><a href="./academics/CSEteachers.html" class="tran3s">CSE Faculty</a></li>
<li><a href="#" class="tran3s">ECE Faculty</a></li>
<li><a href="#" class="tran3s">MAE Faculty</a></li>
</ul>
</li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</nav> <!-- /.theme-feature-menu -->
</div>
</header> <!-- /.theme-main-header -->
<!--
=====================================================
Theme Inner page Banner
=====================================================
-->
<section class="inner-page-banner">
<div class="opacity">
<div class="container">
<h2>G B PANT ENGINEERING COLLEGE</h2>
<ul>
<li><a href="index.html">ABOUT US</a></li>
<li>:affiliated by IPU</li>
</ul>
</div> <!-- /.container -->
</div> <!-- /.opacity -->
</section> <!-- /.inner-page-banner -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!--image slider section -->
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
<li data-target="#myCarousel" data-slide-to="4"></li>
<li data-target="#myCarousel" data-slide-to="5"></li>
<li data-target="#myCarousel" data-slide-to="6"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="http://www.gbpec.edu.in/assets/images/sports.jpg" alt="sport" style="width:100%;height:420px">
</div>
<div class="item">
<img src="http://www.gbpec.edu.in/assets/images/food.jpg" alt="C++ programing" style="width:100%;height:420px">
</div>
<div class="item">
<img src="http://www.gbpec.edu.in/assets/images/Libraries.jpg" alt=" C# programming" style="width:100%;height:420px">
</div>
<div class="item">
<img src="http://www.iqonlinetraining.com/wp-content/uploads/2018/06/python1.jpeg" alt="Python" style="width:100%;height:420px">
</div>
<div class="item">
<img src="https://pbs.twimg.com/media/C5FnjANWIAAHxrn.jpg" alt="Php" style="width:100%;height:420px">
</div>
<div class="item">
<img src="https://image.slidesharecdn.com/introductiontojavanew-111229025621-phpapp01/95/introduction-to-java-new-5-728.jpg?cb=1325127614" alt="Java" style="width:100%;height:420px">
</div>
<div class="item">
<img src="https://image.slidesharecdn.com/lecture05sql-110406195130-phpapp02/95/structured-query-language-sql-lecture-5-introduction-to-databases-1007156anr-5-638.jpg?cb=1489656778" alt="Sql" style="width:100%;height:420px">
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
<section id="about-us">
<div class="container">
<div class="theme-title">
<h2>CAMPUS </h2>
<p>The college has been operating from its building in G B Pant Polytechnic campus which has been transformed to be equipped with ultra-modern facilities. The college has already established various labs for all the branches with up to date modern equipment which ensures that the students are trained in the practical realm according to the current industry standards. The college is in the process of making its own building with state of the art facilities.</p> </div> <!-- /.theme-title -->
<section id="about-us">
<div class="container">
<div class="theme-title">
<h2>SOCITIES</h2>
<p>We have few socities in our college consisting:
<ul style="list-style-type: circle">
<li> Drama Society</li>
<li> Art Society</li>
<li> Dance Society</li>
<li> E-Cell</li>
<li>Alphabit</li>
</ul>
</p> </div> <!-- /.theme-title -->
<section id="about-us">
<div class="container">
<div class="theme-title">
<h2>SPORTS </h2>
<img src="http://www.gbpec.edu.in/assets/images/sports.jpg"style="width:70%;height:480px;position:relative;margin-left:17%;">
<p>Sports play important role in our life .Sports are really an important activity for everyone especially for youths as it keeps body healthy and fit.The indoor sports facilities include table tennis, chess and carom board and fitness centre.
The outdoor sports facilities available include cricket, basketball, volleyball and badminton. Students enjoy other games such as basketball, volleyball and badminton over cemented grounds. Along with students, the college-staff also takes advantage of the sport facilities. Students actively participate in the intra-college and inter-college sports events.
Students actively participate in the events at different levels.
</p> </div> <!-- /.theme-title -->
<section id="about-us">
<div class="container">
<div class="theme-title">
<h2>CANTEEN </h2>
<img src="http://www.gbpec.edu.in/assets/images/food.jpg" style="width:70%;height:480px;position:relative;margin-left:17%;">
<p>The college has a canteen which serves the students and staff of the college with delicious food. The canteen provides a very hygienic atmosphere to eat the tasty food items prepared in the canteen. The canteen remains open through the day to cater to the needs of the students and staff.</p> </div> <!-- /.theme-title -->
<section id="about-us">
<div class="container">
<div class="theme-title">
<h2>LIBRARY </h2>
<img src="http://www.gbpec.edu.in/assets/images/Libraries.jpg" style="width:70%;height:480px;position:relative;margin-left:17%;">
<p>Library at GBPEC is equipped with books relating to all the subjects taught in the college apart from a wide variety of general books including fiction, non-fiction, biographies etc. Apart from the books, the library has subscribed to various in the areas of Engineering and technology, politics, culture, general knowledge, etc which would be useful for the overall developments of the students and faculty of the college.
The library is fully air-conditioned with internet facility y to browse through thousands of Journals and References online. The details of the books, journals and facilities in the library are as follows
<ul style="list-style-type:circle;" >
<li> 15,000 No. of Titles of the Books</li>
<li> 40 Magazine Subscriptions.</li>
<li> No. of newspapers = 13 (Hindi & English).</li>
<li> 5000 E-Journals.</li>
<li> Membership with DELNET.</li>
<li>Capacity of approx. 80 students.
</ul>
</p> </div> <!-- /.theme-title -->
<!-- =============================================
Loading Transition
============================================== -->
<div id="loader-wrapper">
<div id="preloader_1">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
<!-- Scroll Top Button -->
<button class="scroll-top tran3s p-color-bg">
<i class="fa fa-long-arrow-up" aria-hidden="true"></i>
</button>
</body>
</html>