-
Notifications
You must be signed in to change notification settings - Fork 14
/
about.html
840 lines (573 loc) · 33.7 KB
/
about.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
<!DOCTYPE html>
<html>
<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>About</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]-->
<!-- 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 _________ -->
<!-- revolution -->
<script src="vendor/revolution/jquery.themepunch.tools.min.js"></script>
<script src="vendor/revolution/jquery.themepunch.revolution.min.js"></script>
<script type="text/javascript" src="vendor/revolution/revolution.extension.slideanims.min.js"></script>
<script type="text/javascript" src="vendor/revolution/revolution.extension.layeranimation.min.js"></script>
<script type="text/javascript" src="vendor/revolution/revolution.extension.navigation.min.js"></script>
<script type="text/javascript" src="vendor/revolution/revolution.extension.kenburn.min.js"></script>
<script type="text/javascript" src="vendor/revolution/revolution.extension.actions.min.js"></script>
<script type="text/javascript" src="vendor/revolution/revolution.extension.video.min.js"></script>
<!-- Google map js -->
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBZ8VrXgGZ3QSC-0XubNhuB2uKKCwqVaD0&callback=goMap" type="text/javascript"></script> <!-- Gmap Helper -->
<script src="vendor/gmaps.min.js"></script>
<!-- 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>
<!-- Theme js -->
<script type="text/javascript" src="js/theme.js"></script>
<script type="text/javascript" src="js/map-script.js"></script>
<script src="//cdn.quilljs.com/1.3.6/quill.js"></script>
<script src="//cdn.quilljs.com/1.3.6/quill.min.js"></script>
<!-- Theme included stylesheets -->
<link href="//cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
<link href="//cdn.quilljs.com/1.3.6/quill.bubble.css" rel="stylesheet">
<!-- Core build with no theme, formatting, non-essential modules -->
<link href="//cdn.quilljs.com/1.3.6/quill.core.css" rel="stylesheet">
<script src="//cdn.quilljs.com/1.3.6/quill.core.js"></script>
</head>
<style>
@media (max-width: 650px){
.logo{
width:60px;
height:50px;
}
}
</style>
<body>
<script>
var editor = new Quill('.theme-title'); // First matching element will be used
var container = document.getElementById('editor');
var editor = new Quill(container);
var options = {
debug: 'info',
modules: {
toolbar: '#toolbar'
},
placeholder: 'Compose an epic...',
readOnly: true,
theme: 'snow'
};
var editor = new Quill('.theme-title', options);
</script>
<!--
=============================================
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 one-page-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 class="active"><a href="#">ABOUT</a></li>
<li><a href="about.html">NOTICES</a></li>
<!-- <li><a href="index.html#project-section">SOCI</a></li>-->
<li><a href="agenda/index.html">EVENTS</a></li>
<li><a href="projects.html">PROJECTS</a></li>
<li class="dropdown-holder"><a href="#">STUDENTS CORNER</a>
<ul class="sub-menu">
<li><a href="campus.html" 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="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 Main SLider
=====================================================
-->
<div id="home" class="banner">
<div class="rev_slider_wrapper">
<!-- START REVOLUTION SLIDER 5.0.7 auto mode -->
<div id="main-banner-slider" class="rev_slider video-slider" data-version="5.0.7">
<ul>
<!-- SLIDE1 -->
<li data-index="rs-280" data-transition="fade" data-slotamount="default" data-easein="default" data-easeout="default" data-masterspeed="default" data-title="Title Goes Here" data-description="">
<!-- MAIN IMAGE -->
<img src="images/home/slide-1.jpg" alt="image" class="rev-slidebg" data-bgparallax="3" data-bgposition="center center" data-duration="20000" data-ease="Linear.easeNone" data-kenburns="on" data-no-retina="" data-offsetend="0 0" data-offsetstart="0 0" data-rotateend="0" data-rotatestart="0" data-scaleend="100" data-scalestart="140">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption"
data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['-58','-58','0','-50']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;s:2000;e:Power4.easeInOut;"
data-transform_out="y:[100%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-mask_in="x:0px;y:[100%];"
data-mask_out="x:inherit;y:inherit;"
data-start="1000"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 6; white-space: nowrap;">
<h1>HELLO WE'RE GBPEC</h1>
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption"
data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['-05','-05','63','0']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;s:2000;e:Power4.easeInOut;"
data-transform_out="y:[100%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-mask_in="x:0px;y:[100%];"
data-mask_out="x:inherit;y:inherit;"
data-start="2000"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 6; white-space: nowrap;">
<h6>Every step contribute closer to your success</h6>
</div>
<!-- LAYER NR. 3 -->
<div class="tp-caption"
data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['52','52','125','80']"
data-transform_idle="o:1;"
data-transform_in="y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;s:2000;e:Power4.easeInOut;"
data-transform_out="y:[100%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-mask_in="x:0px;y:[100%];"
data-mask_out="x:inherit;y:inherit;"
data-start="3000"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on">
<a href="contact-us.html" class="project-button hvr-bounce-to-right">See Our small world</a>
</div>
</li>
<!-- SLIDE2 -->
<li data-index="rs-20" data-transition="fade" data-slotamount="default" data-easein="default" data-easeout="default" data-masterspeed="default" data-thumb="video/drinkwinecover.jpg" data-rotate="0" data-saveperformance="off" data-title="Title Goes Here" data-description="">
<!-- MAIN IMAGE -->
<img src="video/drinkwinecover.jpg" alt="image" class="rev-slidebg" data-bgparallax="3" data-bgposition="center center" data-duration="20000" data-ease="Linear.easeNone" data-kenburns="on" data-no-retina="" data-offsetend="0 0" data-offsetstart="0 0" data-rotateend="0" data-rotatestart="0" data-scaleend="100" data-scalestart="140">
<!-- LAYERS -->
<!-- BACKGROUND VIDEO LAYER -->
<div class="rs-background-video-layer"
data-forcerewind="on"
data-volume="mute"
data-videowidth="100%"
data-videoheight="100%"
data-videomp4="video/Drink-Wine.mp4"
data-videopreload="preload"
data-videoloop="loopandnoslidestop"
data-forceCover="1"
data-aspectratio="16:9"
data-autoplay="true"
data-autoplayonlyfirsttime="false"
data-nextslideatend="true"
></div>
<!-- LAYER NR. 1 -->
<div class="tp-caption"
data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['-58','-33','-33','-100']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;s:2000;e:Power4.easeInOut;"
data-transform_out="y:[100%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-mask_in="x:0px;y:[100%];"
data-mask_out="x:inherit;y:inherit;"
data-start="1000"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 6; white-space: nowrap;">
<h1>HELLO WE'RE GBPEC</h1>
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption"
data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['-05','93','93','20']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;s:2000;e:Power4.easeInOut;"
data-transform_out="y:[100%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-mask_in="x:0px;y:[100%];"
data-mask_out="x:inherit;y:inherit;"
data-start="2000"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 6; white-space: nowrap;">
<h6>NEW DAY,NEW JOURNEY</h6>
</div>
<!-- LAYER NR. 3 -->
<div class="tp-caption"
data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['52','185','185','105']"
data-transform_idle="o:1;"
data-transform_in="y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;s:2000;e:Power4.easeInOut;"
data-transform_out="y:[100%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-mask_in="x:0px;y:[100%];"
data-mask_out="x:inherit;y:inherit;"
data-start="3000"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on">
<a href="contact-us.html" class="project-button hvr-bounce-to-right">See Our Projects</a>
</div>
</li>
<!-- SLIDE3 -->
<li data-index="rs-18" data-transition="fade" data-slotamount="default" data-easein="default" data-easeout="default" data-masterspeed="default" data-thumb="images/home/slide-2.jpg" data-rotate="0" data-saveperformance="off" data-title="Title Goes Here" data-description="">
<!-- MAIN IMAGE -->
<img src="images/home/slide-2.jpg" alt="image" class="rev-slidebg" data-bgparallax="3" data-bgposition="center center" data-duration="20000" data-ease="Linear.easeNone" data-kenburns="on" data-no-retina="" data-offsetend="0 0" data-offsetstart="0 0" data-rotateend="0" data-rotatestart="0" data-scaleend="100" data-scalestart="140">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption"
data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['-58','-33','-33','-100']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;s:2000;e:Power4.easeInOut;"
data-transform_out="y:[100%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-mask_in="x:0px;y:[100%];"
data-mask_out="x:inherit;y:inherit;"
data-start="1000"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 6; white-space: nowrap;">
<h1>HELLO WE'RE Students of GBPEC</h1>
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption"
data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['-05','93','93','20']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;s:2000;e:Power4.easeInOut;"
data-transform_out="y:[100%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-mask_in="x:0px;y:[100%];"
data-mask_out="x:inherit;y:inherit;"
data-start="2000"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 6; white-space: nowrap;">
<h6>Travelling our unique journey to success</h6>
</div>
<!-- LAYER NR. 3 -->
<div class="tp-caption"
data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['52','185','185','105']"
data-transform_idle="o:1;"
data-transform_in="y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;s:2000;e:Power4.easeInOut;"
data-transform_out="y:[100%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-mask_in="x:0px;y:[100%];"
data-mask_out="x:inherit;y:inherit;"
data-start="3000"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on">
<a href="contact-us.html" class="project-button hvr-bounce-to-right">See Our Projects</a>
</div>
</li>
</ul>
</div>
</div><!-- END REVOLUTION SLIDER -->
</div> <!-- /#banner -->
<!--
=====================================================
About us Section
=====================================================
-->
<section id="about-us">
<div class="container">
<div class="theme-title">
<h2>ABOUT GBPEC</h2>
<p>
G B Pant Engineering College was established by the Govt. of NCT of Delhi in the year 2007 with the aim of imparting quality technical education for the students of Delhi and nearby areas. Since its inception, the faculty and staff have been tirelessly working towards the growth of the institution.
Affiliated to Guru Gobind Singh Indraprastha University and approved by AICTE, the college started with two batches of students, one each for Mechanical Engineering and Electronics and Communications Engineering courses. Increasing its horizon in the year 2010, a batch of Computer Engineering course was started in the college. With the presence of vibrant and dynamic faculty members of highest academic calibre selected by UPSC, G B Pant has been able to produce three batches of engineering graduates who have been pursuing their careers in companies and higher education institutes in India and abroad.
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>OUR VISION </h2>
<p>The vision of G B Pant engineering college is to produce a society grounded in technological advancement, social justice and equality by combining knowledge, creativity, ethics and co-operation.</p> </div> <!-- /.theme-title -->
<section id="about-us">
<div class="container">
<div class="theme-title">
<h2>OUR MISSION </h2>
<p>The mission of G B Pant govt. engineering college is the advancement of knowledge by educating students in Engineering Sciences, Applied Sciences and Humanities. By following a holistic and inter-disciplinary approach, we believe in producing Engineers who would serve the country and the world in the 21st century.
The eminent faculty of the institute is committed in generating knowledge and disseminating it to the students, thereby nurturing them to become torch bearers of knowledge. By combining academic rigour and excitement of discovery in the subject, the faculty is committed to producing students who would become embodiments of intelligence of both theory and practice. The college is committed to the overall development of the students, making them fine citizens dedicated to the betterment of the society.</p> </div> <!-- /.theme-title -->
<section id="about-us">
<div class="container">
<div class="theme-title">
<h2>OUR OBJECTIVE </h2>
<p>To develop analytical skills and problem solving capabilities in the students by educating them in appropriate streams of technology and computational methodologies
To develop an interdisciplinary perspective - and - train the students to work with people belonging to different social, cultural, regional and national backgrounds.
To develop inter-personal, technical and soft skills in the students and - train them for decision making in real life engineering, managerial and human resource related problems.
To inculcate - professional ethics and a sense of responsibility towards physical, social, economic, political and cultural environment.
To inculcate the habit and an attitude for life long learning in our students.</p> </div> <!-- /.theme-title -->
<!--
<section id="about-us">
<div class="container">
<div class="theme-title">
<h2>OUR VISION </h2>
<p></p> </div> <!-- /.theme-title -->
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-6">
<div class="single-about-content">
<div class="icon round-border tran3s">
<img style="position:relative;margin-top:0.5em" sizes="60x60" src="http://www.gbpec.edu.in/assets/images/cse.png" aria-hidden="true">
<!-- <i class="fa fa-pencil-square-o" aria-hidden="true"></i>-->
</div>
<h5><a href="#" class="tran3s">CSE DEPARTMENT</a></h5>
<p>The department of Computer Science Engineering attracts the best students across the country. It offers broad under graduate curriculum based on application and theoretical foundation of computers with the vision to provide excellence and relevance in teaching. It offers intensive exposure to latest technologies including E-commerce, multimedia, data mining, advance computer architecture etc.</p>
<a href="#" class="more tran3s hvr-bounce-to-right">More Details</a>
</div> <!-- /.single-about-content -->
</div> <!-- /.col -->
<div class="col-lg-3 col-md-3 col-sm-6">
<div class="single-about-content">
<div class="icon round-border tran3s">
<img style="position:relative;margin-top:0.5em" sizes="60x60" src="http://www.gbpec.edu.in/assets/images/ece.png"aria-hidden="true">
<!-- <i class="fa fa-life-ring" aria-hidden="true"></i>
--> </div>
<h5><a href="#" class="tran3s">ECE DEPARTMENT</a></h5>
<p>Since its inception in 2007, the objective of the department has been to become the front-runner in its core area of specialization. With a vision to excel in education and research, the department has taken the lead in the establishment of well equipped, comprehensive and exemplary laboratories. Upgradation of laboratories is done from time to time to keep track with the rapid changes in technology.</p>
<a href="#" class="more tran3s hvr-bounce-to-right">More Details</a>
</div> <!-- /.single-about-content -->
</div> <!-- /.col -->
<div class="col-lg-3 col-md-3 col-sm-6">
<div class="single-about-content">
<div class="icon round-border tran3s">
<img style="position:relative;margin-top:0.5em" sizes="60x60" src="http://www.gbpec.edu.in/assets/images/mae.png"aria-hidden="true">
<!-- <i class="fa fa-life-ring" aria-hidden="true"></i>
--> </div>
<h5><a href="#" class="tran3s">MAE DEPARTMENT</a></h5>
<p>The department of MAE was established in 2007 with a vision to foster quality technical education in meeting the growing demand for technical man power in the industrial sector. The department offers (B.Tech.) program in MAE. The presence of experienced and highly talented faculty has helped to establish a high reputation for the department in the academics and industries.</p>
<a href="#" class="more tran3s hvr-bounce-to-right">More Details</a>
</div> <!-- /.single-about-content -->
</div> <!-- /.col -->
<div class="col-lg-3 col-md-3 col-sm-6">
<div class="single-about-content">
<div class="icon round-border tran3s">
<img style="position:relative;margin-top:0.5em" sizes="60x60" src="http://www.gbpec.edu.in/assets/images/humanities.png" aria-hidden="true">
<!--<i class="fa fa-line-chart" aria-hidden="true"></i>--> </div>
<h5><a href="#" class="tran3s">HAS DEPARTMENT</a></h5>
<p>The department of HAS is one of the key departments in the Institution as it grooms the students in their first year of study. The department comprises of faculty from four streams including Chemistry, Physics, Mathematics and communication skills. The department comprises of highly qualified faculty members and technical staff and well equipped laboratories with advanced instruments.</p>
<a href="#" class="more tran3s hvr-bounce-to-right">More Details</a>
</div> <!-- /.single-about-content -->
</div> <!-- /.col -->
</div> <!-- /.row -->
</div> <!-- /.container -->
</section> <!-- /#about-us -->
</div></section></div></section></div></section>
<!-- Footer -->
<footer class="bg1">
<div class="container p-t-40 p-b-70">
<div class="row">
<div class="col-sm-6 col-md-4 p-t-50">
<!-- - -->
<h4 class="txt13 m-b-33">
Contact Us
</h4>
<ul class="m-b-70">
<li class="txt14 m-b-14">
<i class="fa fa-map-marker fs-16 dis-inline-block size19" aria-hidden="true"></i>
G B Pant Government Engineering College 110020 - New Delhi
</li>
<li class="txt14 m-b-14">
<i class="fa fa-phone fs-16 dis-inline-block size19" aria-hidden="true"></i>
+91-11-26382314
</li>
<br>
<li class="txt14 m-b-14">
<i class="fa fa-envelope fs-13 dis-inline-block size19" aria-hidden="true"></i>
principal@gbpec.edu.in
</li>
</ul>
<!-- - -->
<h4 class="txt13 m-b-32">
Opening Times
</h4>
<ul>
<li class="txt14">
09:30 AM – 5:00 PM
</li>
<li class="txt14">
Working Days
</li>
</ul>
</div>
<div class="col-sm-6 col-md-4 p-t-50">
<!-- - -->
<h4 class="txt13 m-b-33">
Useful Links
</h4>
<div class="m-b-25">
<!-- <span class="fs-13 color2 m-r-5">
<i class="fa fa-twitter" aria-hidden="true"></i>
</span>-->
<a href="#" class="txt15">
Anti Ragging Notification-UGC
</a>
<a href="#" class="txt15">
Online Anti Ragging Affidavit
</a>
<a href="#" class="txt15">
Online Anti Ragging Complain
</a>
<a href="#" class="txt15">
UGC Scholarships and Fellowships
</a><br>
<a href="#" class="txt15">
Educational Loan
</a>
<a href="#" class="txt15">
Guru Gobind Singh Indraprastha University
</div>
</div>
<div class="col-sm-6 col-md-4 p-t-50">
<!-- - -->
<h4 class="txt13 m-b-38">
Gallery
</h4>
<!-- Gallery footer -->
<div class="wrap-gallery-footer flex-w">
<a class="item-gallery-footer wrap-pic-w" href="images/photo-gallery-02.jpg" data-lightbox="gallery-footer">
<img src="images/blog/5.jpg" alt="GALLERY">
</a>
<a class="item-gallery-footer wrap-pic-w" href="images/photo-gallery-03.jpg" data-lightbox="gallery-footer">
<img src="images/blog/4.jpg" alt="GALLERY">
</a>
<a class="item-gallery-footer wrap-pic-w" href="images/photo-gallery-02.jpg" data-lightbox="gallery-footer">
<img src="images/blog/5.jpg" alt="GALLERY">
</a>
<a class="item-gallery-footer wrap-pic-w" href="images/photo-gallery-03.jpg" data-lightbox="gallery-footer">
<img src="images/blog/4.jpg" alt="GALLERY">
</a>
<a class="item-gallery-footer wrap-pic-w" href="images/photo-gallery-02.jpg" data-lightbox="gallery-footer">
<img src="images/blog/5.jpg" alt="GALLERY">
</a>
<a class="item-gallery-footer wrap-pic-w" href="images/photo-gallery-03.jpg" data-lightbox="gallery-footer">
<img src="images/blog/4.jpg" alt="GALLERY">
</a>
<a class="item-gallery-footer wrap-pic-w" href="images/photo-gallery-02.jpg" data-lightbox="gallery-footer">
<img src="images/blog/5.jpg" alt="GALLERY">
</a>
<a class="item-gallery-footer wrap-pic-w" href="images/photo-gallery-03.jpg" data-lightbox="gallery-footer">
<img src="images/blog/4.jpg" alt="GALLERY">
</a>
<a class="item-gallery-footer wrap-pic-w" href="images/photo-gallery-02.jpg" data-lightbox="gallery-footer">
<img src="images/blog/5.jpg" alt="GALLERY">
</a>
<a class="item-gallery-footer wrap-pic-w" href="images/photo-gallery-03.jpg" data-lightbox="gallery-footer">
<img src="images/blog/4.jpg" alt="GALLERY">
</a>
<a class="item-gallery-footer wrap-pic-w" href="images/photo-gallery-02.jpg" data-lightbox="gallery-footer">
<img src="images/blog/5.jpg" alt="GALLERY">
</a>
<a class="item-gallery-footer wrap-pic-w" href="images/photo-gallery-03.jpg" data-lightbox="gallery-footer">
<img src="images/blog/4.jpg" alt="GALLERY">
</a>
<a class="item-gallery-footer wrap-pic-w" href="images/photo-gallery-02.jpg" data-lightbox="gallery-footer">
<img src="images/blog/5.jpg" alt="GALLERY">
</a>
</div>
</div>
</div>
</div>
<div class="end-footer bg2">
<div class="container">
<div class="flex-sb-m flex-w p-t-22 p-b-22">
<!-- <div class="p-t-5 p-b-5">
<a href="#" class="fs-15 c-white"><i class="fa fa-tripadvisor" aria-hidden="true"></i></a>
<a href="#" class="fs-15 c-white"><i class="fa fa-facebook m-l-18" aria-hidden="true"></i></a>
<a href="#" class="fs-15 c-white"><i class="fa fa-twitter m-l-18" aria-hidden="true"></i></a>
</div>
<div class="txt17 p-r-20 p-t-5 p-b-5">
Copyright © 2018 All rights reserved | This template is made with <i class="fa fa-heart"></i> by <a href="https://colorlib.com" target="_blank">Colorlib</a>
</div>-->
</div>
</div>
</div>
</footer>
<!-- =============================================
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>