-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathECE.html
1065 lines (1031 loc) · 71.3 KB
/
ECE.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>KIT | Electronics & Communication Engineering</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="index" content="top engineering college in UP, Best Engineering College in Kanpur" />
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="noodp">
<meta name="title" content="Best Private college in Kanpur, U.P." />
<meta name="web_author" content="KIT, Kanpur">
<meta name="language" content="english">
<meta name="reply-to" content="[email protected]">
<meta name="rating" content="general">
<meta name="Keyword"
content="Best Engineering College in UP, top private engineering colleges in Kanpur, Top B Tech College in UP, Best Placement Record, Best AKTU College in UP, B Tech Admission 2022, Top B Tech College in Uttar-Pradesh, Best Engineering College in Kanpur, Top Engineering College in North India, Top Ranked engineering in India" />
<meta name="description"
content="The institute has a distinct image as an outstanding educational colossal among technical institutions of Uttar Pradesh due to innovative and skill-based education" />
<meta name="abstract"
content="Kanpur Institute of Technology (Approved by AICTE) Accredited by NAAC with Grade 'A' & offers NBA Accredited Courses, CSE, Cs-AI&ML, EC, EN, IT, ME, Bio-Tech MCA, Pharmacy" />
<meta name="contact" content="www.kit.ac.in/home/contact" />
<meta name="courses" content="B.Tech, M.Tech, MCA, BCA, Pharmacy, FineArt, Diploma-Engineering" />
<meta name="placement" content="Best Placement" />
<meta name="admission" content="Admission 2022, B Tech, engineering, MCA, MBA, Pharmacy" />
<meta name="revisit-after" content="3 days">
<meta name="abstract"
content="KIT, Kanpur Academic Programs B.Tech, MBA, M.Tech All India Council for Technical Education (AICTE), Ministry of HRD, Government of India">
<meta name="distribution" content="Global">
<link rel="icon" type="image/png" href="assets/images/favicon.jpg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cabin:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css"
integrity="sha512-rqQltXRuHxtPWhktpAZxLHUVJ3Eombn3hvk9PHjV/N5DMUYnzKPC1i3ub0mEXgFzsaZNeJcoE0YHq0j/GFsdGg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"
integrity="sha512-5A8nwdMOWrSz20fDsjczgUidUBR8liPYU+WymTZP1lmY9G6Oc7HlZv156XqnsgNUzTyMefFTcsFH/tnJE/+xBg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.0/slick.min.css'>
<!-- Additional CSS Files -->
<link rel="stylesheet" href="assets/css/fontawesome.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/owl.css">
<link rel="stylesheet" href="assets/css/owl.theme.green.css">
<link rel='stylesheet' href='vendor/fancybox/css/fancybox.min.css'>
</head>
<style>
.single-services {
margin-top: 14px;
}
.desgination{
font-size: 19px !important;
}
#tabs ul {
margin: 0;
padding: 0;
}
#tabs ul li {
margin-bottom: 5px;
display: inline-block;
width: 100%;
}
#tabs ul li:last-child {
margin-bottom: 0px;
}
#tabs ul li a {
text-transform: capitalize;
width: 100%;
padding: 20px 30px;
display: inline-block;
background-color: #002e5b;
font-size: 15px;
color: white;
letter-spacing: 0.5px;
font-weight: 700;
transition: all 0.3s;
}
#tabs ul li a i {
float: right;
margin-top: 5px;
}
#tabs ul .ui-tabs-active span {
background: #faf5b2;
border: #faf5b2;
line-height: 90px;
border-bottom: none;
}
#tabs ul .ui-tabs-active a {
color: #fff;
background-color: orangered;
}
#tabs ul .ui-tabs-active span {
color: #1e1e1e;
}
.tabs-content {
text-align: left;
display: inline-block;
transition: all 0.3s;
}
.tabs-content img {
max-width: 100%;
overflow: hidden;
}
.tabs-content h4 {
font-size: 20px;
font-weight: 700;
letter-spacing: 0.25px;
margin-bottom: 15px;
margin-top: 30px;
}
.tabs-content p {
font-size: 15px;
color: #7a7a7a;
margin-bottom: 0px;
text-align: justify;
}
.dept-head {
padding-top: 50px;
}
@media (max-width: 992px) {
.slider-progress span {
position: absolute;
left: 0;
top: 0px !important;
}
}
</style>
<body>
<div class="sub-header">
<div class="container custom-container">
<div class="row">
<div class="col-md-9 col-xs-12">
<ul class="left-info">
<li><a href="mailto:[email protected]"><i class="fas fa-envelope"></i>[email protected]</a>
</li>
<li><i class="fas fa-phone"></i><a href=""> 8262-905-906</a></li>
<li><a href=""> College Code : 165</a></li>
<li><a href="career.html"> Career</a></li>
<li><a href="">Download</a></li>
<li><a href="">Students</a></li>
<li><a href="">NIRF</a></li>
<li><a href="">Contact</a></li>
</ul>
</div>
<div class="col-md-3">
<ul class="right-icons">
<li><a href="https://www.facebook.com/KIT165/"><i style="font-size: 20px;" class="fab fa-facebook-square"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCSmdUEra-pTReUuYsCydFrg"><i class="fab fa-youtube" style="background: none; font-size: 20px;"></i></a></li>
<li><a href="https://twitter.com/KIT_Kanpur"><i style="font-size: 20px;" class="fab fa-twitter-square"></i></a></li>
<li><a href="https://www.linkedin.com/school/kitkanpur/"><i style="font-size: 20px;" class="fab fa-linkedin-square"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<header class="">
<div class="header-area">
<div class="main-header d-none d-lg-block">
<div class="header-main-area sticky">
<div class="container custom-container">
<div class="row align-items-center position-relative">
<div class="col-lg-2">
<div class="logo">
<a href="index.html"><img src="assets/images/logo/logo.png" alt="" srcset=""></a>
</div>
</div>
<div class="col-lg-10 position-static">
<div class="main-menu-area">
<div class="main-menu">
<nav class="desktop-menu">
<ul>
<li><a href="index.html">Home</a></li>
<li class="static"><a href="#">Institute<i
class="fas fa-angle-down"></i></a>
<ul class="megamenu dropdown">
<li class="mega-title"><a href="#">About KIT</a>
<ul>
<li><a href="about.html">Who We are</a></li>
<li><a href="#">Why KIT</a></li>
<li><a href="#">Vision & Mission</a></li>
<li><a href="#">Affliction & Approvel</a></li>
<li><a href="#">Manadatory Discloser</a></li>
</ul>
</li>
<li class="mega-title"><a href="#">Institute</a>
<ul>
<li><a href="functionaries.html">Functionaries</a></li>
<li><a href="#">Managemnt</a></li>
<li><a href="#">Anti Ragging</a></li>
<li><a href="practorial.html">Proctoroal Board</a></li>
<li><a href="swc.html">Student's Walefare Cell</a></li>
</ul>
</li>
<li class="mega-title"><a href="#">Admission</a>
<ul>
<li><a href="feestructre.html">Fee Structre</a></li>
<li><a href="#">Online Enquiry</a></li>
<li><a href="#">Admission Form</a></li>
<li><a href="admissioncell.html">Admission Cell</a></li>
<li><a href="#">Information Brochure</a></li>
</ul>
</li>
<li class="mega-title title-image">
<img class="mt-3" src="assets/images/kit.jpg"
alt="kit-image">
</li>
</ul>
</li>
<li><a href="#">Academics<i class="fas fa-angle-down"></i></a>
<ul class="dropdown">
<li><a href="#">Academics<i class="fas fa-angle-right"></i></a>
<ul class="dropdown">
<li><a href="acedemiccell.html">Acedemic Cell</a></li>
<li><a href="#">Center of Exellence</a></li>
<li><a href="academiccalender.html">Academic
Calender</a></li>
<li><a href="#">List of Holidays</a></li>
<li><a href="#">B.Tech First Year</a></li>
<li><a href="examinationcell.html">Examination Cell</a>
</li>
<li><a href="#">Courses</a></li>
<li><a
href="https://aktu.ac.in/syllabus.html">Syllabus</a>
</li>
</ul>
</li>
<li><a href="ASH.html">Applied Science & Humanaties
Department</a></li>
<li><a href="B.tech.html">B.Tech <i
class="fas fa-angle-right"></i></a>
<ul class="dropdown">
<li class="pl-3" style="color: #fff; font-weight: 600;">
Departments</li>
<li><a href="CSE.html">Computer Science &
Engineering</a></li>
<li><a href="CSE-AI&ML.html">Computer Science (AI & ML) &
Engineering</a></li>
<li><a href="EEE.html">Electrical & Electronics
Engineering</a>
</li>
<li><a href="ECE.html">Electrical & Communication
Engineering</a></li>
<li><a href="IT.html">Information Technology Engineering</a>
</li>
<li><a href="ME.html">Mechanical Engineering</a></li>
<li><a href="Bio-Technology.html">Bio-Technology Engineering</a></li>
</ul>
</li>
<li><a href="#">M.Tech <i class="fas fa-angle-right"></i></a>
<ul class="dropdown">
<li class="pl-3" style="color: #fff; font-weight: 600;">
Departments</li>
<li><a href="#">Computer Sciencen & Engineering</a></li>
<li><a href="#">Electronics & Communiaction
Engineering</a></li>
<li><a href="#">Mechanical Engineering</a></li>
</ul>
</li>
<li><a href="#"> Diploam in Engineering <i
class="fas fa-angle-right"></i></a>
<ul class="dropdown">
<li class="pl-3" style="color: #fff; font-weight: 600;">
Departments</li>
<li><a href="#">Computer Sciencen & Engineering</a></li>
<li><a href="#">Electrical & Electronics Engineering</a>
</li>
<li><a href="#">Mechanical Engineering</a></li>
<li><a href="#">Civil Engineering</a></li>
</ul>
</li>
<li><a href="#"> Pharmacy<i class="fas fa-angle-right"></i></a>
<ul class="dropdown">
<li class="pl-3" style="color: #fff; font-weight: 600;">
Departments</li>
<li><a href="#">D.Pharma</a></li>
<li><a href="#">B.Pharma</a></li>
<li><a href="#">M.pharma</a></li>
</ul>
</li>
<li><a href="#">MBA</a></li>
<li><a href="#">MCA</a></li>
<li><a href="#">BFAD</a></li>
<li><a href="#">BFA</a></li>
</ul>
</li>
<li class="static"><a href="#">Infrastrucre<i
class="fas fa-angle-down"></i></a>
<ul class="megamenu dropdown">
<li class="mega-title"><a href="#">Infrastructure</a>
<ul>
<li><a href="hostels.html">Hostel & Mess</a></li>
<li><a href="#">Canteen</a></li>
<li><a href="#">Transport</a></li>
<li><a href="#">Gymnasium</a></li>
<li><a href="#">Mechanical Workshop</a></li>
</ul>
</li>
<li class="mega-title"><a href="#">Infrastructure</a>
<ul>
<li><a href="#">Smart Classrooms</a></li>
<li><a href="#">Lecture Theature</a></li>
<li><a href="Labs.html">Labs</a></li>
<li><a href="library.html">Central Library</a></li>
<li><a href="computercenter.html">Computer center</a>
</li>
</ul>
</li>
<li class="mega-title"><a href="#">Infrastructure</a>
<ul>
<li><a href="campus.html">Campus</a></li>
<li><a href="sports.html">Sports</a></li>
<li><a href="location.html">Location</a></li>
<li><a href="site-plane.html">Site Plane</a></li>
<li><a href="medical.html">Medical</a></li>
</ul>
</li>
<li class="mega-title title-image">
<img class="mt-3" src="assets/images/hostel.jpg"
alt="kit-image" style="height: 180px;">
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Achivements</a>
</li>
<li><a href="#">Life@KIT<i class="fas fa-angle-down"></i></a>
<ul class="dropdown">
<li><a href="#">Events</a></li>
<li><a href="#">Cultural Fest</a></li>
<li><a href="#">Sports Fest</a></li>
<li><a href="#">Clubs</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="https://erp.kit.ac.in/">ERP Login</a>
</li>
<li class="static"><a href="#">Placements<i
class="fas fa-angle-down"></i></a>
<ul class="megamenu dropdown">
<li class="mega-title">
<ul>
<li><a href="overview.html">OverView</a></li>
<li><a href="#">Placemnts Record</a></li>
<li><a href="#">Students Testimonials</a></li>
</ul>
</li>
<li class="mega-title">
<ul>
<li><a href="teampcrc.html">Team PCRC</a></li>
<li><a href="#">Recruiters@KIT</a></li>
<li><a href="#">Recruitrs Testimonial</a></li>
</ul>
</li>
<li class="mega-title">
<ul>
<li><a href="#">Palcements Policy</a></li>
<li><a href="#">PCRC Portal</a></li>
<li><a href="#">Contact PCRC</a></li>
</ul>
</li>
<li class="mega-title mt-0 title-image">
<img class="pt-3 pb-3" src="assets/images/kit.jpg"
alt="kit-image">
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Alumnie</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<div class="col-lg-2"></div>
</div>
</div>
</div>
</div>
<!-- Desktop navbar End here -->
<!-- Mobile Sidebar start here -->
<div class="mobile-header d-lg-none d-md-block sticky">
<div class="container">
<div class="row align-items-center">
<div class="col-12">
<div class="mobile-main-header">
<div class="mobile-logo">
<a href="index.html"> <img src="assets/images/logo/logo.png" alt="" srcset=""></a>
</div>
<div class="mobile-menu-toggler">
<div class="mobile-menu-btn">
<div class="off-canvas-btn">
<i class="fas fa-bars"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<aside class="off-canvas-wrapper">
<div class="off-canvas-overlay"></div>
<div class="off-canvas-inner-content">
<div class="btn-close-off-canvas">
<i class="fas fa-times"></i>
</div>
<div class="off-canvas-inner">
<div class="mobile-navigation">
<nav>
<img src="assets/images/logo/white_logo.png" alt="" srcset="">
<ul class="mobile-menu">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="menu-item-has-children"><a href="#">Institute</a>
<ul class="megamenu dropdown">
<li class="mega-title menu-item-has-children"><a href="#">About KIT</a>
<ul class="dropdown">
<li><a href="#">Who We are</a></li>
<li><a href="#">Why KIT</a></li>
<li><a href="#">Vision & Mission</a></li>
<li><a href="#">Affliction & Approvel</a></li>
<li><a href="#">Manadatory Discloser</a></li>
</ul>
</li>
<li class="mega-title menu-item-has-children"><a href="#">Institute</a>
<ul class="dropdown">
<li><a href="functionaries.html">Functionaries</a></li>
<li><a href="#">Managemnt</a></li>
<li><a href="#">Anti Ragging</a></li>
<li><a href="practorial.html">Proctoroal Board</a></li>
<li><a href="swc.html">Student's Walefare Cell</a></li>
</ul>
</li>
<li class="mega-title menu-item-has-children"><a href="#">Admission</a>
<ul class="dropdown">
<li><a href="feestructre.html">Fee Structre</a></li>
<li><a href="#">Online Enquiry</a></li>
<li><a href="#">Admission Form</a></li>
<li><a href="admissioncell.html">Admission Cell</a></li>
<li><a href="#">Information Brochure</a></li>
</ul>
</li>
</ul>
</li>
<li class="menu-item-has-children "><a href="#"> Academics </a>
<ul class="dropdown">
<li class="menu-item-has-children"><a href="#">Academics</a>
<ul class="dropdown">
<li><a href="acedemiccell.html">Acedemic Cell</a></li>
<li><a href="#">Center of Exellence</a></li>
<li><a href="academiccalender.html">Academic Calender</a></li>
<li><a href="#">List of Holidays</a></li>
<li><a href="#">B.Tech First Year</a></li>
<li><a href="examinationcell.html">Examination Cell</a></li>
<li><a href="#">Courses</a></li>
<li><a href="https://aktu.ac.in/syllabus.html">Syllabus</a></li>
</ul>
</li>
<li><a href="ASH.html">Applied Science & Humanaties Department</a></li>
<li class="menu-item-has-children"><a href="#">B.Tech</a>
<ul class="dropdown">
<li><a href="CSE.html">Computer Science & Engineering</a></li>
<li><a href="CSE-AI&ML.html">Computer Science (AI & ML) & Engineering</a></li>
<li><a href="EEE.html">Electrical & Electronics Engineering</a></li>
<li><a href="ECE.html">Electrical & Communication Engineering</a></li>
<li><a href="IT.html">Information Technology Engineering</a></li>
<li><a href="ME.html">Mechanical Engineering</a></li>
<li><a href="Bio-Technology.html">Bio-Technology Engineering</a></li>
</ul>
</li>
<li class="menu-item-has-children"><a href="#">M.Tech</a>
<ul class="dropdown">
<li><a href="#">Computer Sciencen & Engineering</a></li>
<li><a href="#">Electronics & Communiaction
Engineering</a></li>
<li><a href="#">Mechanical Engineering</a></li>
</ul>
</li>
<li class="menu-item-has-children"><a href="#">Diploma in Engineering</a>
<ul class="dropdown">
<li><a href="#">Computer Sciencen & Engineering</a></li>
<li><a href="#">Electrical & Electronics Engineering</a>
</li>
<li><a href="#">Mechanical Engineering</a></li>
<li><a href="#">Civil Engineering</a></li>
</ul>
</li>
<li class="menu-item-has-children"><a href="#">Pharmacy</a>
<ul class="dropdown">
<li><a href="#">D.Pharma</a></li>
<li><a href="#">B.Pharma</a></li>
<li><a href="#">M.pharma</a></li>
</ul>
</li>
<li><a href="#">MBA</a></li>
<li><a href="#">MCA</a></li>
<li><a href="#">BFAD</a></li>
<li><a href="#">BFA</a></li>
</ul>
</li>
<li class="menu-item-has-children "><a href="#"> Infrastrucre </a>
<ul class="dropdown">
<li><a href="hostels.html">Hostel & Mess</a></li>
<li><a href="#">canteen</a></li>
<li><a href="#">Transport</a></li>
<li><a href="#">Gymnasium</a></li>
<li><a href="site-plane.html">Site Plane</a></li>
<li><a href="#">Smart Classrooms</a></li>
<li><a href="#">Lecture Theature</a></li>
<li><a href="Labs.html">Labs</a></li>
<li><a href="library.html">Central Library</a></li>
<li><a href="computercenter.html">Computer center</a></li>
<li><a href="campus.html">Campus</a></li>
<li><a href="sports.html">Sports</a></li>
<li><a href="location.html">Location</a></li>
<li><a href="medical.html">Medical</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Achivements</a>
</li>
<li class="menu-item-has-children "><a href="#"> Life@KIT </a>
<ul class="dropdown">
<li><a href="#">Events</a></li>
<li><a href="#">Cultural Fest</a></li>
<li><a href="#">Sports Fest</a></li>
<li><a href="#">Clubs</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="https://erp.kit.ac.in/">ERP Login</a>
</li>
<li class="menu-item-has-children "><a href="#"> Placements</a>
<ul class="dropdown">
<li><a href="overview.html">Overview</a></li>
<li><a href="#">Placemnts Record</a></li>
<li><a href="#">Students Testimonials</a></li>
<li><a href="teampcrc.html">Team PCRC</a></li>
<li><a href="#">Recruiters @ KIT</a></li>
<li><a href="#">Recruiters Testimoials</a></li>
<li><a href="#">Placements Polcy</a></li>
<li><a href="#">PCRC Portal</a></li>
<li><a href="#">Contact PCRC</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="Alumni.html">Alumnie</a>
</li>
<li class="nav-item">
<a class="nav-link" href="University-Toppers.html">Students</a>
</li>
<li class="nav-item">
<a class="nav-link" href="career.html">Career</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">SDC</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Dowloads</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</aside>
<div class="banner"
style="background-image: linear-gradient( 360deg, #0d2522 0%, rgb(10 26 27 / 70%) 0%, rgb(4 16 16 / 70%) 100%), url(assets/images/ECE.jpg); background-position: center;">
<div class="banner-content">
<h1 class="text-white dept-head text-center">Electronics & communication Engineering</h1>
</div>
</div>
<section class="breadcam-section" id="breadcam">
<div class="breadcrumb pb-0">
<div class="container">
<ol class="breadcrumb pb-0 pt-0">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item"><a href="index.html">B.Tech</a></li>
<li class="breadcrumb-item active" aria-current="page">ECE</li>
</ol>
</div>
</div>
</section>
<div class="single-services mt-5">
<div class="container">
<div class="row" id="tabs">
<div class="col-md-4">
<ul>
<li><a href='#tabs-1'>About Department<i class="fas fa-angle-right"></i></a></li>
<li><a href='#tabs-2'>Vision & Mission <i class="fas fa-angle-right"></i></a></li>
<li><a href='#tabs-3'>Head of Department<i class="fas fa-angle-right"></i></a></li>
<li><a href='#tabs-4'>Faculty<i class="fas fa-angle-right"></i></a></li>
<li><a href='#tabs-5'>Department Achivements<i class="fas fa-angle-right"></i></a></li>
<li><a href='#tabs-6'>Department Society<i class="fas fa-angle-right"></i></a></li>
<li><a href='#tabs-7'>Placements<i class="fas fa-angle-right"></i></a></li>
<li><a href='#tabs-8'>Labs<i class="fas fa-angle-right"></i></a></li>
<li><a href='#tabs-9'>Staff<i class="fas fa-angle-right"></i></a></li>
<li><a href='#tabs-10'>syllabus<i class="fas fa-angle-right"></i></a></li>
</ul>
</div>
<div class="col-md-8 text-here">
<div class="header-text" id="top">
<div class="slider-wrap">
<div class="image-slider" style="height: 200px">
<div class="img-wrap" style="height: 200px;">
<img class="img-fluid" src="assets/images/banner2.jpg" style="height: 200px" alt="">
</div>
<div class="img-wrap" style="height: 200px;">
<img class="img-fluid" src="assets/images/banner3.jpg" style="height: 200px" alt="">
</div>
<div class="img-wrap" style="height: 200px;">
<img class="img-fluid" src="assets/images/banner4.jpg" style="height: 200px" alt="">
</div>
<div class="img-wrap" style="height: 200px;">
<img class="img-fluid" src="assets/images/bnnaer1.jpg" style="height: 200px" alt="">
</div>
</div>
<div class="slider-progress">
<span></span>
</div>
</div>
</div>
<section class='tabs-content'>
<article id='tabs-1'>
<h4>Department of Electronics & Communication Engineering</h4>
<p>Computer Science and Engineering designates the scientific and mathematical approach in
information technology and computing. Its subfields can be divided into practical
techniques for its implementation and application in computer systems and purely
theoretical areas. Some, such as computational complexity theory, which studies
fundamental properties of computational problems, are highly abstract, while others,
such as computer graphics, emphasize real-world applications. Still others focus on the
challenges in implementing computations. The Department is headed by Mrs. Shubha Jain,
with the team having blend of young and experienced faculty members.</p>
<p class="mt-3"> The Department of Computer Science and Engineering came into its existence
right from
the inception of the Institute in the year 2004. The first batch was started with an
intake of 60 students which has now been enhanced to 180 students by the Ministry of
HRD, Government of India from the session 2011-2012.</p>
<p class="mt-3"> The department has faculty members with M.Tech Degrees and perusing Ph.D
from
reputed
institutes in India.. Our graduates are well placed through on-campus and off-campus
placement and are holding responsible positions in Industries and Research organizations
Viz. Microsoft, oracle, HSL, Infosys, TCS, Aricent Accenture, ST Microelectronics,
Girnar Technologies, Amazon, Newzen, Wipro, Airforce, etc. The campus placement has been
nearly 100% for pre final and final years with reputed industries. Accordingly more
facilities and expertise are being developed in the areas programming languages and
complex systems, and human-computer interaction focuses on the challenges in making
computers and computations useful, usable, and universally accessible to humans.</p>
</article>
<article id='tabs-2'>
<h4>E-Commerce Dvelopement</h4>
<p>As the leading E-Commerce web development company Web-cyclone located in Kanpur, and with
hands-on
development
experience of hundreds of E-Commerce project, we understand that brilliant click
functionality,
alluring home pages, user-friendly and interactive scrolling and traversing, multi-store
capabilities,
simplified data and order management, and secure checkouts are some of the feature that
your visitors
looks out for.
</p>
</article>
<article id='tabs-3'>
<div class="profile-content mt-4">
<div class="row">
<div class="col-md-4 mb-3">
<img src="assets/images/faculty/sweta.png" class="img-thumbnail" alt="...">
</div>
<div class="col-md-8">
<p class="name pt-4" style="font-size: 25px; font-weight: 200;">Dr. Sweta
Tripathi
</p>
<div class="dropdown-divider mt-3"></div>
<p><b style="color: #26558F;">Qualification :</b> Ph.D, M.Tech</p>
<div class="dropdown-divider mt-3"></div>
<p><b style="color: #26558F;">Working Experience :</b> 22 Year</p>
<div class="dropdown-divider mt-3"></div>
<p><b style="color: #26558F;">Email : </b> <a style="font-size: 15px;"
href="mailto: [email protected] "> [email protected]</a>
</p>
</div>
</div>
</div>
<div class="desk-mssage text-justify mt-4">
<h3 style="color: #26558F;">From the Desk of HOD</h3>
<p class="mt-4">It's my privilege to welcome you all to the Department of Electrical &
Electronics Engineering at KIT Kanpur. The department of Electrical & Electronics
Engineering came into being in the year 2004 and the first batch of the branch
graduated in the year 2008. The department offers an undergraduate course in
Electronics & Communication Engineering.</p>
<p class="mt-3">Like any other area of science, Electronics & Communication Engineering
is
also going through rapid changes. To impart education in such an ever-changing
arena, a department needs to keep itself always updated through course curriculum,
laboratories resources, technical training, soft skills training, reasoning /
analytical skill training and faculty development. We at KIT are at the forefront,
as far as high-quality engineering education is concerned. Our engineering,
laboratory equipment and computer laboratories are well equipped with the
state-of-the-art facilities. Our curriculum goes through regular revisions to
incorporate new developments in the industry for imparting outcome-based course
contents and knowledge beyond the syllabus.</p>
<p class="mt-3">We have a team of qualified, experienced & dedicated faculty. The
department is also supported by dedicated, qualified laboratory staff. Industry-
Institute interaction in the form of industrial visits, student technical training,
expert lectures and arranging of seminars & workshops are an integral part of our
educational program.
<p class="mt-3">We nurture graduates with the ability to apply knowledge of science,
mathematics and engineering to design, develop and conduct investigation of complex
engineering problems. The department endows students with the ability of engineering
knowledge, analytical skills, and effective communication to work in
multidisciplinary environments.It also provides leadership and technical expertise
through a good blend of course work and projects and inculcates the practice of
engineering with an ethical approaches and concern for the society and environment.
</p>
<p class="mt-3">I welcome the prospective students and all stakeholders to the
Department of Electrical &Electronics Engineering at KIT Kanpur.</p>
<div class="Regards mt-4 mb-4">
--
<p class="regards" style="font-weight: Bold; color: #f11c1c; font-size: 18px;">Dr.
Sweta Tripathi</p>
<p class="regards" style="font-weight: Bold; color: #26558F; font-size: 18px;">
Head, Electronics and Communication Engineering <br> Kanpur Institute of
Technology, Kanpur <br> [Uttar-Pradesh], India</p>
</div>
</div>
</article>
<article id='tabs-4'>
<div class="profile-content mt-4">
<div class="row">
<div class="col-md-4 mb-3">
<img src="assets/images/faculty/sweta.png" class="img-thumbnail" alt="...">
</div>
<div class="col-md-8">
<p class="name pt-4"
style="font-size: 22px; font-weight: bold; color: #26558F;">Dr. Sweta
Tripathi
</p>
<div class="dropdown-divider mt-2"></div>
<p class="desgination">Associate Professor & HOD</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Qualification :</b> Ph.D, M.Tech</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Working Experience :</b> 22 Year</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Areas of Specialization :</b> Some thing will
be
Here</p>
<a href="Faculty/Dr-Sweta-Tripathi.html" class="profilr-btn">View Profile</a>
</div>
<div class="col-md-4 mb-3 mt-4">
<img src="assets/images/user.png" class="img-thumbnail" alt="...">
</div>
<div class="col-md-8">
<p class="name pt-4"
style="font-size: 22px; font-weight: bold; color: #26558F;">Dr. Atul
Makrariya</p>
<div class="dropdown-divider mt-2"></div>
<p class="desgination">Associate Professor</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Qualification :</b> Ph.D, M.Tech</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Working Experience :</b> 22 Year</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Areas of Specialization :</b> Some thing will be
Here</p>
<a href="" class="profilr-btn">View Profile</a>
</div>
<div class="col-md-4 mb-3 mt-4">
<img src="assets/images/faculty/ashesh.png" class="img-thumbnail" alt="...">
</div>
<div class="col-md-8">
<p class="name pt-4"
style="font-size: 22px; font-weight: bold; color: #26558F;">Mr. Asheesh
Gupta</p>
<div class="dropdown-divider mt-2"></div>
<p class="desgination">Assistant Professor</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Qualification :</b> M.Tech</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Working Experience :</b> 22 Year</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Areas of Specialization :</b> Some thing will be
Here</p>
<a href="" class="profilr-btn">View Profile</a>
</div>
<div class="col-md-4 mb-3 mt-4">
<img src="assets/images/user.png" class="img-thumbnail" alt="...">
</div>
<div class="col-md-8">
<p class="name pt-4"
style="font-size: 22px; font-weight: bold; color: #26558F;">Mr. Shashank
Srivastava</p>
<div class="dropdown-divider mt-2"></div>
<p class="desgination">Assistant Professor</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Qualification :</b> M.Tech</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Working Experience :</b> 22 Year</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Areas of Specialization :</b> Some thing will be
Here</p>
<a href="" class="profilr-btn">View Profile</a>
</div>
<div class="col-md-4 mb-3 mt-4">
<img src="assets/images/user.png" class="img-thumbnail" alt="...">
</div>
<div class="col-md-8">
<p class="name pt-4"
style="font-size: 22px; font-weight: bold; color: #26558F;">Mr. Prabhat
Gupta</p>
<div class="dropdown-divider mt-2"></div>
<p class="desgination">Assistant Professor</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Qualification :</b> M.Tech</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Working Experience :</b> 22 Year</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Areas of Specialization :</b> Some thing will be
Here</p>
<a href="" class="profilr-btn">View Profile</a>
</div>
<div class="col-md-4 mb-3 mt-4">
<img src="assets/images/user.png" class="img-thumbnail" alt="...">
</div>
<div class="col-md-8">
<p class="name pt-4"
style="font-size: 22px; font-weight: bold; color: #26558F;">Ms. Pooja Ramesh
Chandra Ahirwar</p>
<div class="dropdown-divider mt-2"></div>
<p class="desgination">Assistant Professor</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Qualification :</b> M.Tech</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Working Experience :</b> 22 Year</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Areas of Specialization :</b> Some thing will be
Here</p>
<a href="" class="profilr-btn">View Profile</a>
</div>
<div class="col-md-4 mb-3 mt-4">
<img src="assets/images/user.png" class="img-thumbnail" alt="...">
</div>
<div class="col-md-8">
<p class="name pt-4"
style="font-size: 22px; font-weight: bold; color: #26558F;">Ms. Shanu Patel
</p>
<div class="dropdown-divider mt-2"></div>
<p class="desgination">Assistant Professor</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Qualification :</b> M.Tech</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Working Experience :</b> 22 Year</p>
<div class="dropdown-divider mt-2"></div>
<p><b style="color: #26558F;">Areas of Specialization :</b> Some thing will be
Here</p>
<a href="" class="profilr-btn">View Profile</a>
</div>
</div>
</div>
</article>
<article id='tabs-5'>
<h4>Overall Evaluation-5</h4>
<p>Integer vehicula sapien quis dolor efficitur, eget molestie eros tempus. Curabitur
sollicitudin, tortor
at suscipit volutpat, nisi arcu aliquet dui, vitae semper sem turpis quis libero.
Quisque vulputate
lacinia nisl ac lobortis. Ut ultricies maximus turpis, in sollicitudin ligula posuere
vel.
<br><br>Donec finibus maximus neque, vitae egestas quam imperdiet nec. Proin nec mauris
eu tortor
consectetur tristique. Etiam suscipit ante a odio consequat, in ornare lacus suscipit.
Cras ac libero
massa. Quisque rhoncus velit feugiat vulputate mollis. Donec nisl eros, malesuada sed
nisi id,
condimentum condimentum quam.
</p>
</article>
</section>
</div>
</div>
</div>
</div>
<footer id="footer-part">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="footer-about">
<div class="footer-logo">
<a href="index.html"><img src="assets/images/logo/logo.png" alt="Logo"></a>
</div>
<p>Since its inception in 2004, Kanpur Institute of Technology has been successfully
shouldering the
monumental responsibility of producing capable technocrats and managers.</p>
<ul class="social-icon">
<li><a href="https://www.facebook.com/KIT165/" target="_blank"><i
class="fa fa-facebook"></i></a></li>
<li><a href="https://www.instagram.com/kanpurinstituteoftechnology/" target="_blank"><i
class="fab fa-instagram"></i></a></li>
<li><a href="https://twitter.com/KIT_Kanpur" target="_blank"><i
class="fab fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/school/kitkanpur/" target="_blank"><i
class="fab fa-linkedin"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCSmdUEra-pTReUuYsCydFrg"
target="_blank"><i class="fab fa-youtube"></i></a></li>
</ul>
</div> <!-- footer about -->
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="footer-link mt-40">
<div class="footer-title pb-25">
<h6>Quick links</h6>
</div>
<ul class="mt-4">
<li><a href="index.html"><i class="fas fa-angle-right"></i>Home</a></li>
<li><a href="about.html"><i class="fas fa-angle-right"></i>About us</a></li>
<li><a href="B.tech.html"><i class="fas fa-angle-right"></i>Courses</a></li>
<li><a href="functionaries.html"><i class="fas fa-angle-right"></i>Functionaries</a></li>
<li><a href="hostels.html"><i class="fas fa-angle-right"></i>Hostel</a></li>
<li><a href="events.html"><i class="fas fa-angle-right"></i>Privacy</a></li>
</ul>
<ul class="mt-4">
<li><a href="#"><i class="fas fa-angle-right"></i>Clubs</a></li>
<li><a href=""><i class="fas fa-angle-right"></i>Transport</a></li>
<li><a href="feestructre.html"><i class="fas fa-angle-right"></i>Fee Structre</a></li>
<li><a href="swc.html"><i class="fas fa-angle-right"></i>Student Cell</a></li>
<li><a href="acedemiccell.html"><i class="fas fa-angle-right"></i>Academic Cell</a></li>
<li><a href="overview.html"><i class="fas fa-angle-right"></i>Placement Cell</a></li>
</ul>
</div> <!-- footer link -->
</div>
<div class="col-lg-2 col-md-6 col-sm-6">
<div class="footer-link support mt-40">
<div class="footer-title pb-25">
<h6>External Links</h6>
</div>
<ul class="mt-4">
<li><a href="#"><i class="fas fa-angle-right"></i>ERP Portal</a></li>
<li><a href="#"><i class="fas fa-angle-right"></i>Placemnt Posrtal</a></li>
<li><a href="#"><i class="fas fa-angle-right"></i>Alumnie Contact</a></li>
<li><a href="location.html"><i class="fas fa-angle-right"></i>Location</a></li>
<li><a href="site-plane.html"><i class="fas fa-angle-right"></i>Site Plane</a></li>
<li><a href="#"><i class="fas fa-angle-right"></i>Important Contact</a></li>
</ul>
</div> <!-- support -->
</div>
<div class="col-lg-3 col-md-6">
<div class="footer-address mt-40">
<div class="footer-title pb-25">
<h6>Contact Us</h6>
</div>
<ul class="mt-4">
<li>
<div class="cont">
<p>Plot No. A-1, UPSIDC Industrial Area,Rooma, Kanpur – 208 001
Uttar Pradesh</p>
</div>
</li>