-
Notifications
You must be signed in to change notification settings - Fork 22
/
index.html
798 lines (711 loc) · 37.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
<!doctype html>
<html>
<head>
<title>
Placement Cell, IIIT Kalyani
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#204584">
<meta name="msapplication-navbutton-color" content="#204584">
<meta name="apple-mobile-web-app-status-bar-style" content="#204584">
<link rel="icon" href="img/logo_small.png">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div id="header">
<div id="logo-holder" style="align-items: center;">
<div id="logo" style="height:50px; display: flex; align-items: center;">
<img src="img/logo.png" style="height: 90%; width: auto;">
</div>
</div>
<div id="nav" class="nav">
<a href="#header_top">Home</a>
<a href="#about">About Us</a>
<a href="#whyus">Why Us</a>
<a href="#recruiters">Past Recruiters</a>
<a href="#placement-record">Placement Record</a>
<a href="#infrastructure">Infrastructure</a>
<a href="#contactus">Contact Us</a>
<!-- <a href="register.html">Register</a> -->
<!-- <a href="javascript:void(0)" onclick="showLoginForm()" class="blue-background">Login</a> -->
</div>
<div id="nav-mobile" class="nav">
<a href="javascript:void(0)" onclick="$('#mobile-menu').css('display','flex')" class="blue-background">Menu</a>
</div>
</div>
<!-- hamburger -->
<div class="header-hamburgerrr">
<div class="hamburgerrr-line1"></div>
<!-- <div class="hamburger-line2"></div> -->
<div class="hamburgerrr-line3"></div>
</div>
<!-- hamburger end -->
<div id="header_top">
<div class="header_top-flex">
<div class="header_top-left" style="text-align: center;">
<img class="header_top-img" src="./img/left.png" alt="left img">
</div>
<div class="header_top-center">
<img class="header_top-imgCenter" src="./img/center.png" alt="center img">
<font weight="bold" ;letter-spacing:="3px" ; color="white">"विद्याधनं सर्वधनप्रधानम्"</font>
</div>
<div class="header_top-right" style="text-align: center;">
<img class="header_top-img" src="./img/right.png" alt="right img">
</div>
</div>
</div>
<div id="home" class="section">
<img src="img/background.svg" class="home-background">
<div>
<div class="home-text">
<span class="heading">Placement Portal</span><br>
<p style="max-width: 400px;" class="home_para">Passion is the difference between having a job or having a
career.</><br>
<a href="img/brochure/placement_brochure_2022.pdf" target="_blank" class="brochure-link">Placement
Brochure <i class="fas fa-download"></i></a>
<br>
<!-- <a href="#" class="download-link">Placement Invitation <i class="fas fa-download"></i></a> -->
</div>
</div>
<div class="employees-image"
style="display: flex; flex-direction: column; justify-content: center; align-items: center;">
<img src="img/team.png" style="width:100%;">
</div>
</div>
<div id="about" class="section">
<div class="about-text">
<h3 class="headinggs heading2">Indian Institute of Information Technology Kalyani</h3>
<p style="line-height: 100%;">
In 2014, a Memorandum of Understanding (MoU) was signed between the Govt. of India, Govt. of West Bengal, and
Industry Partners (viz. Coal India Limited, Rolta Foundation and Webel), for setting up IIIT Kalyani under
Public Private Partnership (PPP) mode. Since 2017, IIIT Kalyani has acquired the status of an Institute of
National Importance.
<br> <br>
The Institute currently runs a 4-year B.Tech programme in Computer Science and Engineering. It aims to impart
quality technical education to students, along with the skill set required to solve complex problems faced by
the industry in the 21st century. The Institute is backed by young and dynamic faculty members, who are
doctorates from prestigious Institutes and Universities in India and abroad. Under their able guidance, more
than 50 research scholars are working towards their PhD degree. Over the years, the Institute has transformed
into a place of research excellence.
<br> <br>
IIIT Kalyani looks forward to receiving enormous support and help from the major industries of India. Some of
the major IT Companies such as Wipro, TCS, Cognizant, IBM, PWC, Yellowclass, Goldman Sachs, ShareChat, OLA,
Mihup, TCG, Deloitte, Jio, Capgemini, MAQ Software, and many more, have recruited students from this Institute.
It is a calm, peaceful and productive place to study, with a student-friendly atmosphere all around.
</p>
</div>
<div class="about-img">
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="./img/cllg.jpg" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="https://lh3.ggpht.com/p/AF1QipNMxnZbJNMowgX_OeMr5bq87G2spf9uGn0bUkWc=s1536"
alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="./img/cllg1.jpeg" alt="Third slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="./img/cllg2.jpg" alt="Third slide">
</div>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
<hr>
<div id="whyus">
<div class="headinggs small-heading " style="margin:0 auto;">
<h2 style="text-align: center;">Why Recruit at IIIT Kalyani?</h2>
</div>
<div class="feat bg-gray pt-5 pb-5">
<div class="container">
<div class="row">
<div class="col-lg-4 col-sm-6">
<div class="item"> <span class="icon feature_box_col_one" style="text-align:center;"><i class="fa fa-globe"
style="font-size:40px;"></i></span>
<h6 style="text-align:center;">Our Motto</h6>
<p>The Indian Institute of Information Technology, Kalyani has been setup with an objective to produce
best-in-class human resources in IT and to harness the multidimensional facets of IT in various domains.
IIIT Kalyani strives to evolve into a world-class academic institution with the highest quality of
education and research facilities.
</p>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="item"> <span class="icon feature_box_col_two" style="text-align:center;"><i class="fa fa-anchor"
style="font-size:40px;"></i></span>
<h6 style="text-align:center;">Our Mission</h6>
<p>The Institute aligns all its activities to serve national interest and seeks To provide broad-based
education, helping students hone their professional skills and acquire the best-in-class capabilities in
their respective disciplines To draw the best expertise in science, technology, management and law so as
to equip students with the skills to visualize, synthesize and execute projects.
</p>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="item"> <span class="icon feature_box_col_three" style="text-align:center;"><i
class="fa fa-hourglass-half" style="font-size:40px;"></i></span>
<h6 style="text-align:center;">Our Vision</h6>
<p>To be a center of excellence in education and research, producing global leaders in science, technology
and management To be a hub of knowledge creation that priorities the frontier areas of national and
global importance IIIT, Kalyani will not only create industry ready IT Graduates to feed the demand of
the industry, but it will also act as a catalyst.</p>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="item"> <span class="icon feature_box_col_four" style="text-align:center;"><i
class="fa fa-database" style="font-size:40px;"></i></span>
<h6 style="text-align:center;">Strong Industry Interface</h6>
<p>IIIT Kalyani has a strong, active and growing interface with business and industry, with experts from a range of leading companies and thought leaders of IT Industry delivering regular guest lectures and serving as members of various advisory boards.</p>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="item"> <span class="icon feature_box_col_five" style="text-align:center;"><i
class="fa fa-upload" style="font-size:40px;"></i></span>
<h6 style="text-align:center;">Projects</h6>
<p>Students are encouraged to take up projects on contemporary topics as a part of their independent study. Arrangements will be made for practical training on live projects in conjunction with leading companies in the industry.</p>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="item"> <span class="icon feature_box_col_six" style="text-align:center;"><i class="fa fa-camera"
style="font-size:40px;"></i></span>
<h6 style="text-align:center;">Achievements</h6>
<p>Selection in GOOGLE SUMMER OF CODE, Teams in ICPC REGIONALS, Selections in SMART INDIA HACKATHON, GOOGLE SUMMER OF CODE & CODE-IN MENTOR Selections, GOOGLE BUILD FOR DIGITAL INDIA Selections, MLH FELLOWSHIP Selection (SPONSORED BY GITHUB).</p>
</div>
</div>
</div>
</div>
</div>
</div>
<hr>
<div id="recruiters">
<h1 class="headinggs small-heading" style="width: 90%; margin:0 auto;">
Past Recruiters
</h1>
<div id="slider" style="margin-bottom: 50px; margin-top: 50px;">
<figure>
<img src="img/adobe.jpg">
<img src="img/jio.png">
<img src="img/maq.png">
<img src="img/infosys.png">
<img src="img/wipro.png">
<img src="img/yelloClass_intern.png">
<img src="img/sqaudstack.jpg">
<img src="img/virtusa.png">
<img src="img/tcs.jfif">
<img src="img/fossee_old.png">
<img src="img/tcGDigital.jpeg">
<img src="img/deloitte.png">
<img src="img/capgemini.png">
<img src="img/AppyhighLogo.png">
<img src="img/314e.png">
<img src="img/oneshot.jpg">
<img src="img/extramarks.png">
<img src="img/gobudgo.jpg">
<img src="img/quolum.png">
<img src="img/publicSapient.png">
<img src="img/natinal_lib_old.png">
<img src="img/softech_old.png">
<img src="img/smartprix_old.png">
<img src="img/adecco_old.png">
<img src="img/infolo_old.jpg">
<img src="img/mihup_old.png">
<img src="img/sigmoid.png">
<img src="img/vap_old.png">
<img src="img/mindfire_old.png">
</figure>
</div>
</div>
<div id="placement-record" class="section">
<h1 class="headinggs small-heading">Placement Statistics - 2021</h1>
<div id="placement-synopsis">
<div id="placement-detail-1">
<div class="table100 ver5 m-b-110">
<div class="table100-body js-pscroll">
<table style="width: 100%;">
<caption
style="font-size: 25px; font-weight: none; text-align: center; background-color: #204584; color: white; padding: 7px; text-transform: uppercase; width: 100%; caption-side: top;">
Placement Statistics</caption>
<tbody>
<tr class="row100 body">
<td class="cell100 column1">No. of Students registered</td>
<td class="cell100 column2">75</td>
<td class="cell100 column3" style="background-color: #008000;"></td>
</tr>
<tr class="row100 body">
<td class="cell100 column1">Numbers of students selected</td>
<td class="cell100 column2">63</td>
<td class="cell100 column3" style="background-color: darkorange;"></td>
</tr>
<tr class="row100 body">
<td class="cell100 column1">No. of Job Offers</td>
<td class="cell100 column2">113</td>
<td class="cell100 column3" style="background-color: #E05194;"></td>
</tr>
<tr class="row100 body">
<td class="cell100 column1">No. of students with multiple job offers </td>
<td class="cell100 column2">34</td>
<td class="cell100 column3" style="background-color: #9B59B6;"></td>
</tr>
<tr class="row100 body">
<td class="cell100 column1">% of students selected</td>
<td class="cell100 column2">84%</td>
<td class="cell100 column3" style="background-color: brown;"></td>
</tr>
<tr class="row100 body">
<td class="cell100 column1">Highest Package</td>
<td class="cell100 column2">17 lpa</td>
<td class="cell100 column3"></td>
</tr>
<tr class="row100 body">
<td class="cell100 column1">Average Package</td>
<td class="cell100 column2">8 lpa</td>
<td class="cell100 column3"></td>
</tr>
<tr tr class="row100 body">
<td class="cell100 column1">Students going for Higher Studies</td>
<td class="cell100 column2">2</td>
<td class="cell100 column3" style="background-color: #F4D03F;"></td>
</tr>
<tr class="row100 body">
<td class="cell100 column1">Students qualified GATE-2021</td>
<td class="cell100 column2">12</td>
<td class="cell100 column3" style="background-color: cornflowerblue;"></td>
</tr>
<tr class="row100 body">
<td class="cell100 column1">Students qualified CAT-2021</td>
<td class="cell100 column2">1</td>
<td class="cell100 column3" style="background-color: Chocolate;"></td>
</tr>
<tr class="row100 body">
<td class="cell100 column1">Students qualified BARC</td>
<td class="cell100 column2">1</td>
<td class="cell100 column3" style="background-color: red;"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="2folds">
<img src="./img/2folds/20-21.jpg" alt="2folds of batch 2017-2021" class="batch20_21">
</div>
</div>
<div id="placement-chart">
<canvas id="mycanvas" width="700px" height="700px"></canvas>
</div>
<div class="placement-points">
<ul class="lists">
<li>IIIT Kalyani had a successful placement session during 2020-2021.</li>
<li>Students got offers from both on-campus and online/off-campus selection processes.</li>
<li>Some students have even qualified GATE, CAT and BARC, and some have went to pursue higher studies in IITs.
</li>
</ul>
</div>
<div class="passout">
<a href="placement_stats/placement19-20.pdf" target="_blank" class="download-link">Batch 2016 - 2020</a>
<a href="placement_stats/placement18-19.pdf" target="_blank" class="download-link">Batch 2015 - 2019</a>
<a href="placement_stats/placement17-18.pdf" target="_blank" class="download-link">Batch 2014 - 2018</a>
</div>
**Statistics for Academic Year 2021-22 will be updated post completion
</div>
<hr>
<div class="bera-class">
<div class="messagebox" style="width: 100%;">
<div class="title-bar">
Message from Chairman's desk
</div>
<div class="content">
<div class="img-div-mobile">
<img src="img/chairman.jfif" class="center">
<div style="font-size: 15px; text-align:center;">
<span style="font-size: 15px; font-weight: bold;">Manoj Kohli</span><br>
Chairman, Board of Governors
</div>
</div>
<div class="text">
Warm greetings to all the stakeholders in the Placement Session of IIIT Kalyani – my beloved students,
companies visiting the campus for recruitment drives, and the training and placement cell of the Institute
facilitating the whole recruitment process. This stage is very crucial for the graduating students as they
venture into a new phase of their life to fulfil their dream. I wish all the best to their journey.
<br><br>
<strong>IIIT Kalyani</strong>, established in 2014, is very young with four B.Tech. batches graduating so far.
However, the placement records of previous years are quite encouraging with continuous improvement over the
years. The young and vibrant faculty members of the Institute have made sure that adequate knowledge is
imparted to the students, making them ready to pick up the technological and management challenges in their
career. With the kind of grooming we give our students in both theory and practical aspects of their
engineering curriculum, I am sure that frontier companies in the domain of Information Technology will be
highly interested in recruiting them. In the broader picture, I see this as an overall development in terms of
socio-technical growth in our country.
<br><br>
In this background, I would like to invite all the corporates involved in the domain of Information Technology
to visit IIIT Kalyani and recruit our students.
</div>
<!-- <div>
</div> -->
<div class="img-div">
<img src="img/chairman.jfif" class="center" style="width: 60%; text-align:center;"><br><br>
<div style="padding-left: 10px; text-align:center;">
<span style="font-size: 15px; font-weight: bold;">Manoj Kohli</span><br>
Chairman, Board of Governors
</div>
</div>
</div>
</div>
</div>
<div class="bera-class">
<div class="messagebox" style="width: 100%;">
<div class="title-bar">
From the Director's Desk
</div>
<div class="content">
<div class="img-div-mobile">
<img src="img/director.jpg" class="center">
<div style="font-size: 15px;">
<span style="font-size: 15px; font-weight: bold;">Prof. Santanu Chattopadhyay</span><br>
Director, IIIT Kalyani
</div>
</div>
<div class="text">
It is my pleasure to introduce you to one of the youngest and vibrant technological institutes in Eastern
India,<b>Indian Institute of Information Technology Kalyani, West Bengal.</b> IIIT Kalyani has been set up by
the Government of India (MoE), the Government of West Bengal, and Industry Partners on an N-PPP basis.
Additionally, the Government of West Bengal has lent support to the institute by granting 50 acres of land for
setting up the campus.
<br><br>
The major objective of IIIT Kalyani is to set up a model of education which can produce best-in-class human
resources in IT and harness the multidimensional facets of IT in various domains. Established in the year
2014, the "Newness" factor of IIIT Kalyani allows us to be constantly dynamic in our curriculum.
<br><br>
We enjoy the flexibility to quickly respond to the rapidly changing global socio-economic conditions, and can
efficiently adapt to the best practices of leading technical institutes. We consider this agility essential
for technical education today. We look forward to building this Institute as a world-class academic
institution with the highest quality of education and research activities.
<br><br>
We look forward to building a long-lasting and mutually beneficial relationship with you.
</div>
<!-- <div>
</div> -->
<div class="img-div">
<img src="img/director.jpg" class="center" style="width: 90%;"><br><br>
<div style="padding-left: 10px; text-align:center;">
<span style="font-size: 15px; font-weight: bold;">Prof. Santanu Chattopadhyay</span><br>
Director, IIIT Kalyani
</div>
</div>
</div>
</div>
</div>
<div class="bera-class">
<div class="messagebox" style="width: 100%;">
<div class="title-bar">
From the Training and Placement Team
</div>
<div class="content">
<div class="img-div-mobile">
<div style="font-size: 15px;">
<span style="font-size: 15px; font-weight: bold;">Mr. Sudeep Chowdhury</span><br>
TPO, IIIT Kalyani
</div>
</div>
<div class="text">
<b>IIIT Kalyani </b> was established in 2014 with a motto to bridge the gap between education, research and
industries. It offers two B.Tech. programme in Computer Science and Engineering (CSE) and Electronics and
Communication Engineering (ECE). The Institute is equipped with current state-of-the-art equipment/
facilities/ laboratories, and the faculty members besides teaching, are involved in a broad range of research
activities and industrial consultancy. Apart from imparting quality technical education, we pay special
attention on interpersonal skill development and teamwork among students, which are essential ingredients to
excel at the workplace.
<!-- <br><br>
To highlight student-industry interaction at our institute, at the end of 3rd year students from undergraduate engineering streams go for a summer internship as a part of the course curriculum. This summer internship programme helps industries to harness the talents of students. -->
<br><br>
To emphasize on student-industry interaction, our undergraduate students undergo summer internships at the end
of 3rd year of their B.Tech. programme. Such endeavors not only inculcate a feel of the corporate culture
among students, but also help industries to identify potential candidates as their prospective employees.
<br><br>
We have the required facilities to conduct placement sessions, video conferencing, etc. to organize campus
placement activities. We invite esteemed organizations and eminent industry personnel to visit our campus
regularly. We envision this as opportunities to make students aware of the current industry needs, apart from
building the platform for recruiters to recruit our students and establish a synergetic interface. In
addition, we also invite companies to induct our third-year undergraduate students for summer training/
internships.
<br><br>
We look forward to build a long lasting and mutually beneficial relationship with you.
</div>
<div class="img-div">
<div style="padding-left: 10px;">
<span style="font-size: 15px; font-weight: bold;">Dr. Pratik Chakraborty</span><br>
Faculty In-charge,<br>Training and Placement Cell,<br> IIIT Kalyani
</div>
<br>
<div style="padding-left: 10px;">
<span style="font-size: 15px; font-weight: bold;">Mr. Sudeep Chowdhury</span><br>
Training and Placement Officer, IIIT Kalyani
</div>
<br>
<div style="padding-left: 10px;">
<span style="font-size: 15px; font-weight: bold;">Students</span><br>
IIIT Kalyani
</div>
</div>
</div>
</div>
</div>
<!-- Bera Version -->
<div id="infrastructure" class="section">
<div class="text-div">
<h2 class="headinggs">Infrastructure</h2>
<p>
The Government of West Bengal has lent support to the institute by granting
50 acres of land for setting up the Campus.
While construction has been started in the land provided,
the institute is presently running from the temporary campus at Webel IT Park, Kalyani.
<br><br>
The infrastructure of the building is pretty good and sufficient for the functioning of the institution.
The classrooms alloted for the institution are smart classrooms, which have video conferencing facility.
Faculties and industry experts from distant locations take classes and interact with the students through video
conferencing in the classrooms.
</p>
</div>
<div class="icons-div">
<a href="http://iiitkalyani.ac.in/php/Campus.php" target="_blank" class="infra-icon">
<img src="img/building_blue.svg">
<span>CAMPUS</span>
</a>
<a href="http://iiitkalyani.ac.in/php/Hostel.php" target="_blank" class="infra-icon">
<img src="img/bunk.svg">
<span>HOSTEL</span>
</a>
<a href="http://iiitkalyani.ac.in/php/Labs.php" target="_blank" class="infra-icon">
<img src="img/lab.svg">
<span>LAB</span>
</a>
<a href="http://iiitkalyani.ac.in/php/Library.php" target="_blank" class="infra-icon">
<img src="img/books.svg">
<span>LIBRARY</span>
</a>
</div>
</div>
<!-- CONTACT US -->
<div id="contactus">
<h2 class="headinggs" style="width: 90%; margin:0 auto;">Contact Us</h2>
<div class="container" style="margin-top:2%; ">
<div class="profile-sec row">
<div class="col-lg-4 col-md-6">
<div class="our-team">
<div class="picture">
<img class="img-fluid" src="./img/pratik.jfif">
</div>
<div class="team-content">
<h3 class="name">Pratik Chakraborty</h3>
<h4 class="title">Faculty In-Charge <br>Training And Placement Cell<br> IIIT Kalyani</h4>
<h6 style="margin-top:5px;"><a href="mailto:pratik@iiitkalyani.ac.in">
<li class="fas fa-envelope"> pratik@iiitkalyani.ac.in</li>
</a></h6>
<h6>
<li class="fas fa-phone"> +91 8168824544</li>
</h6>
</div>
<ul class="social" style="text-align:center;">
<li><a href="#" class="fa fa-linkedin" aria-hidden="true" target="_blank"></a></li>
<li><a href="mailto:pratik@iiitkalyani.ac.in" class="fa fa-google-plus" aria-hidden="true"></a></li>
</ul>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="our-team">
<div class="picture">
<img class="img-fluid" src="img/img-tpo.png">
</div>
<div class="team-content">
<h3 class="name">Sudeep Chowdhury</h3>
<h4 class="title">Training and Placement Officer<br>Training And Placement Cell<br> IIIT Kalyani</h4>
<h6 style="margin-top:5px;"><a href="mailto:sudeep@iiitkalyani.ac.in">
<li class="fas fa-envelope"> sudeep@iiitkalyani.ac.in</li>
</a></h6>
<h6>
<li class="fas fa-phone"> +91 8094123615</li>
</h6>
</div>
<ul class="social" style="text-align:center;">
<li><a href="https://www.linkedin.com/in/sudeep-chowdhury-722858144/" class="fa fa-linkedin"
aria-hidden="true" target="_blank"></a></li>
<li><a href="mailto:sudeep@iiitkalyani.ac.in" class="fa fa-google-plus" aria-hidden="true"></a></li>
</ul>
</div>
</div>
<div class="col-lg-4">
<div class="our-team">
<div class="picture">
<img class="img-fluid" src="img/contactus_tnp.png">
</div>
<div class="team-content">
<h4 class="name" style="text-align: left;"> Training and Placement</h4>
<h4 class="title">Training And Placement Cell<br> IIIT Kalyani</h4>
<h6 style="margin-top:5px;"><a href="mailto:tnp@iiitkalyani.ac.in">
<li class="fas fa-envelope" aria-hidden="true"> tnp@iiitkalyani.ac.in</li>
</a></h6>
<h6 style="margin-top:5px; font-size: 8px !important"><a href="mailto:studentcoordinator_placement@iiitkalyani.ac.in">
<li class="fas fa-envelope" aria-hidden="true"> studentcoordinator_placement<br>@iiitkalyani.ac.in</li>
</a></h6>
</div>
<ul class="social" style="text-align:center;">
<li><a href="https://www.linkedin.com/in/tnpiniiitkalyani/" class="fa fa-linkedin" aria-hidden="true"
target="_blank"></a></li>
<li><a href="mailto:tnp@iiitkalyani.ac.in" class="fa fa-google-plus" aria-hidden="true"></a></li>
</ul>
</div>
</div>
</div>
<button type="button" class="btn btn-primary btn-floating" id="btn-back-to-top"> <i class="fas fa-arrow-up"></i>
</button>
</div>
</div>
<div id="footer">
<div class="heading-footer" style="align-items: center;">
<h1 class="fot-head" style="color: white;">
Placement Cell, IIIT Kalyani
</h1>
</div>
<div id="footer-container-down">
<div id="footer-address" class="flex-footer">
<span class="footer-subsection-heading">
ADDRESS
</span>
<div class="footer-subsection-text">
<a href="https://www.google.com/maps/place/Indian+Institute+of+Information+Technology+Kalyani/@22.9610624,88.4323501,18z/data=!3m1!4b1!4m9!1m2!2m1!1siiit+kalyani+webel!3m5!1s0x39f894fc95000001:0x56bfd0b3bdadb903!8m2!3d22.9610624!4d88.4334444!15sChJpaWl0IGthbHlhbmkgd2ViZWxaFCISaWlpdCBrYWx5YW5pIHdlYmVskgEDaXV0mgEkQ2hkRFNVaE5NRzluUzBWSlEwRm5TVU13T1haWVVIcG5SUkFC"
target="_blank"><i class="fas fa-map-marker-alt"></i></a>
<br>
Indian Institute of Information <br> Technology, Kalyani <br>
Webel IT Park (Near Buddha Park),<br> Kalyani,
Nadia, West Bengal. <br> PIN - 741235.
</div>
</div>
<div id="footer-quick-links" class="flex-footer">
<span class="footer-subsection-heading">
QUICK LINKS
</span>
<div class="footer-subsection-text">
<a href="http://iiitkalyani.ac.in/php/e-Brochure.php" target="_blank" rel="noopener noreferrer">E
brochure</a></br>
<a href="http://iiitkalyani.ac.in/newfacultypages/faculty1.php" target="_blank"
rel="noopener noreferrer">Faculty Members</a></br>
<a href="http://iiitkalyani.ac.in/php/administration.php" target="_blank"
rel="noopener noreferrer">Administrative body</a></br>
<a href="https://cache9.in/" target="_blank" rel="noopener noreferrer">Student Corner</a></br>
</div>
</div>
<div id="footer-explore" class="flex-footer">
<span class="footer-subsection-heading">
EXPLORE
</span>
<div class="footer-subsection-text">
<a href="http://iiitkalyani.ac.in/php/Facilities_landing_page-v6.php" target="_blank"
rel="noopener noreferrer">Facilities</a></br>
<a href="http://iiitkalyani.ac.in/php/music.php" target="_blank" rel="noopener noreferrer">Symphony (Music
club)</a></br>
<a href="http://www.iiitkalyani.ac.in/php/algoholic3.0.php" target="_blank"
rel="noopener noreferrer">Algoholic (Technical club)</a></br>
<a href="http://iiitkalyani.ac.in/fmc/index.html" target="_blank" rel="noopener noreferrer">Film and Media
Club (FMC)</a></br>
<a href="http://iiitkalyani.ac.in/php/reach_iiit_kalyani.php" target="_blank" rel="noopener noreferrer">How to
reach IIIT Kalyani</a></br>
</div>
</div>
<div id="footer-contact-us" class="flex-footer">
<span class="footer-subsection-heading">
CONTACT US
</span>
<div class="footer-subsection-text">
<a href="mailto:pratik@iiitkalyani.ac.in">Faculty In-charge - pratik@iiitkalyani.ac.in</a></br>
<a href="mailto:sudeep@iiitkalyani.ac.in">TPO - sudeep@iiitkalyani.ac.in</a></br>
<a href="mailto:tnp@iiitkalyani.ac.in">Placement Cell - tnp@iiitkalyani.ac.in</a></br>
<a href="mailto:studentcoordinator_placement@iiitkalyani.ac.in">studentcoordinator_placement@iiitkalyani.ac.in</a></br>
</div>
<div id="footer-icons">
<a href="https://www.linkedin.com/in/tnpiniiitkalyani/" target="_blank"><img style="width:10%; height:10%;"
src="img/linkedin.png" /> </a>
<a href="https://twitter.com/iiitk_placement" target="_blank"><img style="width:10%; height:10%;"
src="img/twitter.png" /></a>
<a href="https://www.youtube.com/channel/UCdnaperuWO_6YfXzEov6-QA" target="_blank"><img
style="width:13%; height:13.5%;" src="img/youtube.png" /></a>
<a href="mailto:tnp@iiitkalyani.ac.in" target="_blank"><img style="width:11.1%; height:11%;"
src="img/email.png" /></a>
</div>
</div>
</div>
<div id="footer-credits">
Copyright © 2021 IIIT Kalyani.
</div>
</div>
<div class="complete-page-overlay hidden">
<div class="form-box login-box">
<div class="close-bar">
<a href="javascript:void(0)" onclick="closeForm()"><i class="fas fa-times"></i></a>
</div>
<div class="tab-bar">
<div class="tab active" onclick="switchToTabPane(this, 0)">Company</div>
<div class="tab" onclick="switchToTabPane(this, 1)">Student</div>
</div>
<div class="tab-content">
<div class="tab-pane" data-paneid="0" style="padding: 40px 50px; text-align: center;">
<img src="img/enterprise.png"
style="user-select:none; width: 80px; height: 80px; margin-bottom: 10px; padding: 10px; border: 1.5px solid rgb(32, 67, 128); border-radius : 5px;">
<input type="textbox" class="textbox" placeholder="Company Email" style="margin: 10px 0px; width: 100%;">
<input type="password" class="textbox" placeholder="Password" style="margin: 10px 0px; width: 100%;">
<input type="button" class="button" onclick="companySignUp()" style="width:100%; margin: 10px 0px;"
value="Login">
</div>
<div class="tab-pane" data-paneid="1" style="display: none; padding: 40px 50px; text-align: center;">
<img src="img/graduate.png"
style="user-select:none; width: 80px; height: 80px; margin-bottom: 10px; padding: 10px; border: 1.5px solid rgb(32, 67, 128); border-radius : 5px;">
<input type="textbox" class="textbox" placeholder="Student Email" style="margin: 10px 0px; width: 100%;">
<input type="password" class="textbox" placeholder="Password" style="margin: 10px 0px; width: 100%;">
<input type="button" class="button" onclick="companySignUp()" style="width:100%; margin: 10px 0px;"
value="Login">
</div>
</div>
</div>
</div>
<div id="mobile-menu">
<a href="#home" onclick="$('#mobile-menu').hide()">Home</a>
<a href="#about" onclick="$('#mobile-menu').hide()">About Us</a>
<a href="#infrastructure" onclick="$('#mobile-menu').hide()">Infrastructure</a>
<a href="#placement-record" onclick="$('#mobile-menu').hide()">Placement Record</a>
<a href="#footer" onclick="$('#mobile-menu').hide()">Contact Us</a>
<!-- <a href="register.html" onclick="$('#mobile-menu').hide()">Register</a> -->
<!-- <a href="javascript:void(0)" onclick="$('#mobile-menu').hide(); showLoginForm()" class="blue-background">Login</a> -->
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.2/Chart.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css"
integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
<script type="text/javascript" src="js/main.js"></script>
<script src="https://kit.fontawesome.com/66aa7c98b3.js" crossorigin="anonymous"></script>
<!-- <script type="text/javascript" src="js/main.js"></script> -->
</body>
</html>