-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
1552 lines (1394 loc) · 80.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
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">
<!-- Basic -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Site Metas -->
<title>T&P Cell, NIT Delhi</title>
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="author" content="">
<!-- Site Icons -->
<link rel="shortcut icon" href="images/download.png" type="image/x-icon" />
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Site CSS -->
<link rel="stylesheet" href="style.css">
<!-- ALL VERSION CSS -->
<link rel="stylesheet" href="css/versions.css">
<!-- Responsive CSS -->
<link rel="stylesheet" href="css/responsive.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.green.css">
<link rel="stylesheet" href="css/galery.css">
<!-- Modernizer for Portfolio -->
<script src="js/modernizer.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="host_version">
<!-- LOADER -->
<div id="preloader">
<div class="loader-container">
<div class="progress-br float shadow">
<div class="progress__item"></div>
</div>
</div>
</div>
<!-- END LOADER -->
<!-- Start header -->
<header class="top-navbar" style="height: 72px;position: fixed;z-index: 40;width: 100%;top: 0;left: 0;">
<nav class="navbar navbar-expand-lg navbar-light" style="background: rgba(153,41,65,1); padding: 0;">
<div class="container-fluid">
<style>
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');
#lg div div div span {
font-family: 'Times New Roman', Times, serif;
/* content: "NIT, DELHI"; */
color: white;
margin-left: 10px;
/* display: inline-block; */
cursor: pointer;
}
#lg {
/* padding-top: 10px; */
height: 72px;
padding-bottom: 0;
display: flex;
align-items: center;
}
.llll {
margin-top: 20px;
}
#logoo {
width: 140%;
}
@media (max-width:991px) {
#lg {
padding-top: 20px;
height: 60px;
}
.llll {
margin-top: 10px;
}
#logoo {
margin-right: 30px;
}
}
@media (max-width:430px) {
#logoo {
margin-right: 30px;
width: 60%;
padding-left: 5px;
}
.sm1 {
padding: 0;
}
.sm1 img {
margin-right: 0;
}
.sm11 {
margin-left: -28px;
padding: 0;
}
.sm11>span {
padding: 0;
}
.sm11>span {
font-size: 0.9rem;
}
.sm11>span span {
font-size: 0.8rem;
}
}
</style>
<a class="navbar-brand" href="index.html" style="width: 200px; " id="lg">
<div class="container llll">
<div class="row align-items-center">
<div class="column col-4 sm1"><img src="images/Logo_best.png" id="logoo" alt="" /></div>
<div class="column col-8 sm11" style="line-height: 20px; color: white;"><span>NIT DELHI <br><span style="font-size: 0.9rem; font-family: Arial, Helvetica, sans-serif;">Training and Placement Cell</span></span>
</div>
</div>
</div>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbars-host" aria-controls="navbars-rs-food" aria-expanded="false" aria-label="Toggle navigation" style=" margin-right: 20px;">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="collapse navbar-collapse" id="navbars-host" style="height: 72px;">
<style>
#ctm {
display: none;
}
@media (max-width:991px) {
#ct {
display: none;
}
#ctm {
display: block;
}
.top-navbar nav #navbars-host li {
margin: 0px 20px;
margin-left: 30px;
}
#sl {
margin-bottom: 10px;
}
}
</style>
<ul class="navbar-nav ml-auto">
<li class="nav-item active"><a class="nav-link" href="index.html">HOME</a></li>
<li class="nav-item dropdown"><a class="nav-link " id="dropdown-a" data-toggle="" href="#">WHY RECRUIT @ NITD</a>
<div class="dropdown-menu" aria-labelledby="dropdown-a">
<a class="dropdown-item" href="whyrecruit.html" style="padding-right: 3px;">LIFE @ NITD</a>
<a class="dropdown-item" href="studentachievment.html" style="padding-right: 3px;">STUDENT ACHIEVEMENTS</a>
<a class="dropdown-item" href="academics.html" style="padding-right: 3px;">ACADEMICS</a>
<a class="dropdown-item" href="departments.html" style="padding-right: 3px;">DEPARTMENTS</a>
<a class="dropdown-item" href="https://nitdelhi.irins.org/" style="padding-right: 3px;" target="_blank">RESEARCH</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link " href="#" id="dropdown-a" data-toggle="">For Recruiters</a>
<div class="dropdown-menu" aria-labelledby="dropdown-a">
<a class="dropdown-item" href="Recruiters.html" style="padding-right: 3px;">PAST RECRUITERS</a>
<a class="dropdown-item" href="statistics.html" style="padding-right: 3px;">PLACEMENT STATISTICS</a>
<a class="dropdown-item" href="process.html" style="padding-right: 3px;">RECRUITMENT PROCEDURE</a>
<a class="dropdown-item" href="companyInterestForm.html" style="padding-right: 3px;">COMPANY INTEREST FORM</a>
<a class="dropdown-item" href="Placement Brochure 2021-22(Final).pdf" style="padding-right: 3px;" target="_blank">PLACEMENT BROCHURE (2021-22)</a>
</div>
</li>
<li class="nav-item dropdown" style="margin-right: -0px;">
<a class="nav-link dropdown-toggle" href="#" id="dropdown-a" data-toggle="dropdown">For Students</a>
<div class="dropdown-menu" aria-labelledby="dropdown-a">
<a class="dropdown-item" href="https://tnp-nitdelhi.herokuapp.com/" style="padding-right: 3px;">STUDENT LOGIN</a>
<a class="dropdown-item" href="faq.html" style="padding-right: 3px;">FAQ</a>
</div>
</li>
<li class="nav-item"><a class="nav-link" href="team.html" style="padding-right: -5px;padding-left: 5px;">TEAM</a></li>
<li class="nav-item"><a class="nav-link" href="contact.html">CONTACT US</a></li>
</ul>
</div>
</div>
</nav>
</header>
<!-- End header -->
<style>
#carouselExampleControls {
margin-top: 72px;
}
@media (max-width:991px) {
#carouselExampleControls {
margin-top: 60px;
}
}
</style>
<div id="carouselExampleControls" class="carousel slide bs-slider box-slider" data-ride="carousel" data-pause="hover" data-interval="false" style="width: 100%;height: 88vh;background-color: rgb(95, 54, 70);">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carouselExampleControls" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleControls" data-slide-to="1"></li>
<li data-target="#carouselExampleControls" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div id="home" class="first-section" style="background-image:url('images/c2.jpeg');
object-fit: cover;">
<div class="dtab">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 text-right">
<div class="big-tagline">
<h2 style="font-size: 2rem;text-align: center;text-transform: none;">Training and Placement Cell<br> National Institute of Technology, Delhi</h2><br><br>
<!-- <p class="lead" style="text-align: center;">Here Give Some description </p> -->
<a href="companyInterestForm.html" class="hover-btn-new"><span>Contact Us</span></a>
<a href="#readmorehere" class="hover-btn-new"><span>Read More</span></a>
</div>
</div>
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
</div>
<!-- end section -->
</div>
<div class="carousel-item">
<div id="home" class="first-section" style="background-image:url('images/students.jpg');">
<div class="dtab">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 text-left">
<div class="big-tagline">
<h2 style="font-size: 2rem;text-transform: none;"> An Institute of National Importance<br> NIT Delhi</h2>
<br><br>
<a href="companyInterestForm.html" class="hover-btn-new"><span>Contact Us</span></a>
<a href="#readmorehere" class="hover-btn-new"><span>Read More</span></a>
</div>
</div>
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
</div>
<!-- end section -->
</div>
<div class="carousel-item">
<div id="home" class="first-section" style="background-image:url('images/fourth.jpg');filter: brightness(100%);">
<div class="dtab">
<!-- <script type="text/javascript">
$(document).ready(function(){
let w = window.innerWidth;
if(w<600){
console.log("hhhh");
$('#carouselExampleControls>div>div:nth-child(3)>div').css("background-image","url('images/nitt.jpg')");
}
});
</script> -->
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 text-center">
<div class="big-tagline">
<h2 style="font-size: 2rem;text-align: center;"><strong></strong> </h2>
<!-- <p class="lead" style="text-align: center;">Here Give Some description </p> -->
<!-- <a href="contact.html" class="hover-btn-new"><span>Contact Us</span></a>
<a href="#readmorehere" class="hover-btn-new"><span>Read More</span></a> -->
</div>
</div>
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
</div>
<!-- end section -->
</div>
<div class="carousel-item">
<div id="home" class="first-section" style="background-image:url('images/fifth.jpg');filter: brightness(150%);">
<div class="dtab">
<!-- <script type="text/javascript">
$(document).ready(function(){
let w = window.innerWidth;
if(w<600){
console.log("hhhh");
$('#carouselExampleControls>div>div:nth-child(3)>div').css("background-image","url('images/nitt.jpg')");
}
});
</script> -->
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 text-center">
<div class="big-tagline">
<h2 style="font-size: 2rem;text-align: center;"><strong></strong> </h2>
<!-- <p class="lead" style="text-align: center;">Here Give Some description </p> -->
<!-- <a href="contact.html" class="hover-btn-new"><span>Contact Us</span></a>
<a href="#readmorehere" class="hover-btn-new"><span>Read More</span></a> -->
</div>
</div>
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
</div>
<!-- end section -->
</div>
<div class="carousel-item">
<div id="home" class="first-section" style="background-image:url('images/sixth.jpg');filter: brightness(150%);">
<div class="dtab">
<!-- <script type="text/javascript">
$(document).ready(function(){
let w = window.innerWidth;
if(w<600){
console.log("hhhh");
$('#carouselExampleControls>div>div:nth-child(3)>div').css("background-image","url('images/nitt.jpg')");
}
});
</script> -->
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 text-center">
<div class="big-tagline">
<h2 style="font-size: 2rem;text-align: center;"><strong></strong> </h2>
<!-- <p class="lead" style="text-align: center;">Here Give Some description </p> -->
<!-- <a href="contact.html" class="hover-btn-new"><span>Contact Us</span></a>
<a href="#readmorehere" class="hover-btn-new"><span>Read More</span></a> -->
</div>
</div>
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
</div>
<!-- end section -->
</div>
<div class="carousel-item">
<div id="home" class="first-section" style="background-image:url('images/c1.jpeg');filter: brightness(150%);">
<div class="dtab">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 text-center">
<div class="big-tagline">
<h2 style="font-size: 2rem;text-align: center;"><strong></strong> </h2>
</div>
</div>
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
</div>
<!-- end section -->
</div>
<!-- Left Control -->
<style>
@media (max-width:826px) {
.box-slider .carousel-control-prev,
.box-slider .carousel-control-next {
width: 30px;
height: 40px;
}
}
</style>
<a class="new-effect carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
<span class="fa fa-angle-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<!-- Right Control -->
<a class="new-effect carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
<span class="fa fa-angle-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<span id="readmorehere"></span>
<div id="overviews" class="section wb" style="padding-bottom: 100px;">
<div class="container">
<!-- about us and updates and succesful startups -->
<div class="row ">
<!-- about nitd -->
<style>
p {
text-align: justify;
}
</style>
<div class="row text-center col-xl-8 col-lg-8 col-md-12 col-sm-12" style=" color:#696969;" id="abb">
<div>
<h3 style=" color: #eea412;font-size: 1.3rem;font-weight: 600;">ABOUT NIT DELHI</h3>
<p class="" style="font-size: 1rem;text-align: justify;padding-left: 18px;" id="about-cnt">
In a short span of 10 years, this Institute has soared over the horizons of new beginnings and is building its magnificent home brick by brick. The Institute has taken great leaps and is creating waves among the Intelligentsia and the world of academia.
Founded in 2010 by the Government of India, NIT Delhi strives to provide world class education to its intellectually stimulated students. Its underlying mission is to promote the development of individuals who seek world class
technical and professional competence in their respective fields. As a fully funded governmental body, NIT Delhi was established as an institute of ‘National Importance’ during the 11th Five Year Plan under the Ministry of
Human Resource Development. For the initial two years, academic activities were conducted at NIT Warangal, the mentor Institute for NIT Delhi. Presently the operations are being carried out at its temporary campus being in
Narela. The Institute’s permanent campus is being built at Narela with world class infrastructure. Through generating cohorts of motivated students, NIT Delhi aims to continue on its path of achieving international distinction.
It also commits to develop technologies for society through the cultivation of knowledge and research.</p>
</div>
</div>
<!-- this is updates and successful startups -->
<div class="col-xl-4 col-lg-4 col-md-12 col-sm-12">
<div class="post-media wow fadeIn">
<!-- updates -->
<div class=" text-center align-center " style="float: right;">
<h5 class="headings" style="margin-top: 0px;color: #eea412;font-size: 1.2rem;font-weight: 600;">Updates</h5>
<hr style="width: 80%; margin-top: 0">
<div class="boxu" style="height: 315px;">
<marquee behavior="scroll" direction="up" scrollamount="2" onmouseover="this.stop();" onmouseout="this.start();" width="80%" height="100%">
<!-- <div class="news-updates">
<p>
<a href="updates.html" style="color:#696969"></a> NIT Delhi participated in All India Inter NIT Cricket and Badminton tournament at NIT Surat from 20 th -23 rd February 2020 and Badminton Boys and Girls team reached till Quarter-final of the tournament.
</p>
</div>
<div class="news-updates">
<p>
<a href="updates.html" style="color:#696969"></a> NIT Delhi participated in All India Inter NIT Volleyball and Athletics tournament held at NIT Rourkela from 24th -26th January 2020.
</p>
</div>
<div class="news-updates">
<p>
<a href="updates.html" style="color:#696969"></a> NIT Delhi participated in All India Inter NIT Volleyball and Athletics tournament held at NIT Rourkela from 24th -26th January 2020.
</p>
</div>
<div class="news-updates">
<p>
<a href="updates.html" style="color:#696969"></a> NIT Delhi participated in All India Inter NIT Weightlifting, Powerlifting, Best Physique Tournament 2019-20 held at MNIT Jaipur from 17th-19th October 2019. The institute bagged total 11 medals.
</p>
</div> -->
<div class="news-updates">
<p>
<a href="updates.html" style="color:#696969"></a>NIT Delhi student, recently got the highest placement of 55 lpa</p>
</div>
</marquee>
</div>
</div>
</div>
<!-- end media -->
</div>
<!-- end col -->
</div>
<!-- about us and updates and succesful startups End here-->
<hr>
<style>
figure {
overflow: hidden;
width: 100%;
margin-bottom: 0;
}
#tpoo {
position: absolute;
bottom: 0;
left: -1000px;
background: rgba(146, 142, 142, 0.6);
width: 100%;
height: 100%;
transition: all 0.3s ease-in-out;
padding-top: 100%;
padding-left: 20px;
padding-bottom: 0;
}
#dirr {
position: absolute;
bottom: -0px;
left: -5000px;
background: rgba(146, 142, 142, 0.6);
width: 100%;
height: 100%;
transition: all 0.5s;
padding-top: 100%;
padding-left: 20px;
}
#tpoo h2,
#dirr h2 {
color: #fff;
}
figure:hover #tpoo,
figure:hover #dirr {
left: 0;
}
#director-desk,
#TPO-desk {
text-align: justify;
}
</style>
<!-- director desk and tpo desk -->
<div class="row">
<div class="col-xl-5 col-lg-5 col-md-12 col-sm-12" style="margin-top: 40px;">
<div class="post-media wow fadeIn" style="overflow: hidden;margin-bottom: 20px;">
<figure>
<img src="images/director.jpg" alt="" class="img-fluid img-rounded">
<figcaption id="dirr">
<h2 style="font-size: 1.2rem;margin-top: -90px;">Prof. Ajay K.Sharma<br>Director, NITD</h2>
</figcaption>
</figure>
</div>
<!-- end media -->
</div>
<div class="col-xl-7 col-lg-7 col-md-12 col-sm-12" style="margin-top: -5px;">
<div class="message-box" id="director-desk" style="font-size: 1rem;color:#696969;padding-top: 0;">
<h4 style="font-size: 1.5rem;text-align:center;">From Director's Desk</h4>
Being the Director of an ‘Institution of National Importance’ is a matter of pride as well as a burden of responsibility. This position has been held by stalwarts who have nurtured this institution to where it is today in such short span of time. Now,
as the baton has passed on to me, I realize that it is for me to lay a roadmap that would take this institution to even greater heights. <br>NIT Delhi has been successfully fulfilling its mandate of developing
competent professionals to serve not only our country, but the world as a whole. At the National Institute of Technology Delhi, achieving academic excellence has been our ambition right from inception. As we spread our wings of
knowledge, the Institute has already begun its journey of excellence with advanced learning and research endeavors in various disciplines of Engineering, Science and Technology, Management and Humanity. <br>NIT Delhi is sincerely
committed to accumulating the best talents of learners and instructors from across the globe and thus imparting holistic education along with the best practice of superior professional ethics. We are hopeful to develop our permanent
campus soon with state of the art infrastructure and advanced facilities. With these milestones and a lot more to achieve in the near future, I feel gratified to invite all the recruiting organizations for the placement session
of 2021-22 batch.
</div>
<!-- end messagebox -->
</div>
<!-- end col -->
<!-- end col -->
</div>
<div class="row">
<div class="col-xl-7 col-lg-7 col-md-12 col-sm-12" style="margin-top: -5px;">
<div class="message-box" id="director-desk" style="font-size: 1rem;color:#696969;padding-top: 0;">
<h4 style="font-size: 1.5rem;text-align:center;">From TPO’s Desk</h4>
NIT Delhi has been able to carve a niche for itself among the premier institutes and aims to achieve international distinction for commitment, creativity, innovation and excellence as the prior standards. It also prioritises cultivation of knowledge and
research activities to develop technologies for the society. The institute has the finest faculty and the best students for its Bachelor’s, Master’s and Doctoral programmes with a rich tradition of pursuing excellence in terms
of academic programmes and research infrastructure. The students are not only exposed to challenging research-based academics but also a host of sports, cultural and organizational activities on its vibrant campus.
<br> The institute offers plethora of placement opportunities to its students graduating with Bachelors of Technology and Masters of Technology degrees. Though very young, NIT Delhi is on its pathway of progress and has been able
to attract some big names in the corporate world. <br> We highly value our partnership with recruiters and alumni of NIT Delhi and remain committed to make this endeavor productive and positive. I, on behalf of NIT Delhi invite
the recruiting organizations and graduating students to find the best match between their needs and capabilities.
</div>
<!-- end messagebox -->
</div>
<div class="col-xl-5 col-lg-5 col-md-12 col-sm-12" style="margin-top: 40px;">
<div class="post-media wow fadeIn" style="overflow: hidden;margin-bottom: 20px;">
<figure>
<img src="images/tpo.jpeg" alt="" class="img-fluid img-rounded">
<figcaption id="dirr">
<h2 style="font-size: 1.2rem;margin-top: -90px;">Dr. Kapil Sharma<br>Head Training and Placement Cell</h2>
</figcaption>
</figure>
</div>
<!-- end media -->
</div>
<!-- end col -->
<!-- end col -->
</div>
<!-- <div class="col-xl-4 col-lg-4 col-md-12 col-sm-12">
<div class="post-media wow fadeIn" style="overflow: hidden; float:left;">
<br><br><br>
<figure>
<img src="images/kapil.jpg" alt="">
<figcaption id="tpoo">
<h2 style="font-size: 1.2rem;margin-top: 20px;">Dr. Kapil Sharma<br>Head Training and Placement Cell<br> NIT Delhi</h2>
</figcaption>
</figure>
</div>
</div>
<div class="row" style="margin-top: 50px;" id="tpppo">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12" style="margin-top: -5px;">
<div class="message-box" id="TPO-desk" style="font-size: 1rem;color:#696969;padding-top: 0;">
<h4 style="font-size: 1.5rem;text-align:center;">From TPO’s Desk</h4>
NIT Delhi has been able to carve a niche for itself among the premier institutes and aims to achieve international distinction for commitment, creativity, innovation and excellence as the prior standards. It also prioritises cultivation of knowledge and
research activities to develop technologies for the society. The institute has the finest faculty and the best students for its Bachelor’s, Master’s and Doctoral programmes with a rich tradition of pursuing excellence in terms
of academic programmes and research infrastructure. The students are not only exposed to challenging research-based academics but also a host of sports, cultural and organizational activities on its vibrant campus.
<br> The institute offers plethora of placement opportunities to its students graduating with Bachelors of Technology and Masters of Technology degrees. Though very young, NIT Delhi is on its pathway of progress and has been able
to attract some big names in the corporate world. <br> We highly value our partnership with recruiters and alumni of NIT Delhi and remain committed to make this endeavor productive and positive. I, on behalf of NIT Delhi invite
the recruiting organizations and graduating students to find the best match between their needs and capabilities.
<h2 style="font-size: 1.2rem;margin-top: 20px;"><span style="position: absolute;right: 0;">Dr. Kapil Sharma<br>Head Training and Placement Cell<br> NIT Delhi</span></h2>
</div>
end messagebox
</div> -->
<!-- end col -->
<!-- end media -->
<!-- end col -->
</div>
<!-- director desk and tpo desk End here -->
</div>
<!-- end container -->
</div>
<!-- end section -->
<div class="container">
<div class="row">
<div class="col gal" style="margin-bottom: 60px;">
<h4 style="font-size: 1.5rem;text-align:center; color: #eea412;font-weight: bold;margin-bottom: 30px;">Gallery</h4>
<div class="gallery">
<div class="gallery__column">
<a href="images/sixth.jpg" target="_blank" class="gallery__link">
<figure class="gallery__thumb">
<img src="images/sixth.jpg" alt="Portrait by Jessica Felicio" class="gallery__image">
<!-- <figcaption class="gallery__caption">Portrait by Jessica Felicio</figcaption> -->
</figure>
</a>
<a href="images/c5.jpeg" target="_blank" class="gallery__link">
<figure class="gallery__thumb">
<img src="images/c5.jpeg" alt="Portrait by Sam Burriss" class="gallery__image">
<!-- <figcaption class="gallery__caption">Portrait by Sam Burriss</figcaption> -->
</figure>
</a>
<a href="images/fifth.jpg" target="_blank" class="gallery__link">
<figure class="gallery__thumb">
<img src="images/fifth.jpg" alt="Portrait by Oladimeji Odunsi" class="gallery__image">
<!-- <figcaption class="gallery__caption">Portrait by Oladimeji Odunsi</figcaption> -->
</figure>
</a>
</div>
<div class="gallery__column">
<a href="images/c2.jpeg" target="_blank" class="gallery__link">
<figure class="gallery__thumb">
<img src="images/c2.jpeg" alt="Portrait by Noah Buscher" class="gallery__image">
<!-- <figcaption class="gallery__caption">Portrait by Noah Buscher</figcaption> -->
</figure>
</a>
<a href="images/fourth.jpg" target="_blank" class="gallery__link">
<figure class="gallery__thumb">
<img src="images/fourth.jpg" alt="Portrait by Alex Perez" class="gallery__image">
<!-- <figcaption class="gallery__caption">Portrait by Alex Perez</figcaption> -->
</figure>
</a>
<a href="images/nitd.jpg" target="_blank" class="gallery__link">
<figure class="gallery__thumb">
<img src="images/nitd.jpg" alt="Portrait by Ethan Haddox" class="gallery__image">
<!-- <figcaption class="gallery__caption">Portrait by Ethan Haddox</figcaption> -->
</figure>
</a>
</div>
<div class="gallery__column">
<a href="images/students.jpg" target="_blank" class="gallery__link">
<figure class="gallery__thumb">
<img src="images/students.jpg" alt="Portrait by Mari Lezhava" class="gallery__image">
<!-- <figcaption class="gallery__caption">Portrait by Mari Lezhava</figcaption> -->
</figure>
</a>
<a href="images/c3.jpeg" target="_blank" class="gallery__link">
<figure class="gallery__thumb">
<img src="images/c3.jpeg" alt="Portrait by Ivana Cajina" class="gallery__image">
<!-- <figcaption class="gallery__caption">Portrait by Ivana Cajina</figcaption> -->
</figure>
</a>
<a href="images/startups.jpg" target="_blank" class="gallery__link">
<figure class="gallery__thumb">
<img src="images/startups.jpg" alt="Portrait by Amir Geshani" class="gallery__image">
<!-- <figcaption class="gallery__caption">Portrait by Amir Geshani</figcaption> -->
</figure>
</a>
</div>
<!-- <div class="gallery__column">
<a href="https://unsplash.com/@frxgui" target="_blank" class="gallery__link">
<figure class="gallery__thumb">
<img src="https://source.unsplash.com/FQhLLehm4dk/300x300" alt="Portrait by Guilian Fremaux" class="gallery__image">
<figcaption class="gallery__caption">Portrait by Guilian Fremaux</figcaption>
</figure>
</a>
<a href="https://unsplash.com/@majestical_jasmin" target="_blank" class="gallery__link">
<figure class="gallery__thumb">
<img src="https://source.unsplash.com/OQd9zONSx7s/300x300" alt="Portrait by Jasmin Chew" class="gallery__image">
<figcaption class="gallery__caption">Portrait by Jasmin Chew</figcaption>
</figure>
</a>
<a href="https://unsplash.com/@dimadallacqua" target="_blank" class="gallery__link">
<figure class="gallery__thumb">
<img src="https://source.unsplash.com/XZkEhowjx8k/300x500" alt="Portrait by Dima DallAcqua" class="gallery__image">
<figcaption class="gallery__caption">Portrait by Dima DallAcqua</figcaption>
</figure>
</a>
</div> -->
</div>
</div>
</div>
</div>
<!-- end section -->
<!--graphs-->
<h4 class="headings" style="font-size: 1.5rem;font-weight: 600;color: #eea412;">Our Achievements</h4>
<div class="column large-2 medium-2 small-12 " style="text-align: center;margin-top: -20px;width: 100%;">
<!-- <div style="vertical-align: middle;"><img src="./images/highest_salary1.png" class =" stats_img responsive" ></div> -->
<div style="vertical-align: middle;">
<div>
<span style="font-size: 5rem; color: red; font-weight: bold;">55<span style="font-size: 1rem; font-weight: bold;">LPA</span></span>
<br>
<span style="font-weight: bold; font-size: 1.5rem; letter-spacing: 3px;margin-top: -20px;">HIGHEST SALARY</span>
<br>
</div>
</div>
</div>
<div class="row container" style="margin-left: auto;margin-right: auto;text-align: center;display: flex;flex-wrap: wrap;justify-content: center; width: 100%;padding: 0;">
<script type="text/javascript">
google.load("visualization", "1", {
packages: ["corechart"]
});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'Name');
data.addColumn('number', 'Value');
data.addColumn({
type: 'string',
role: 'annotation'
});
data.addRows([
['2018', 63, '63'],
['2019', 65, '65'],
['2020', 70, '70'],
['2021', 73, '73']
]);
var view = new google.visualization.DataView(data);
view.setColumns([0, 1, 1, 2]);
var chart = new google.visualization.ComboChart(document.getElementById('chart_div'));
var options = {
title: 'Number of Recruiters',
series: {
0: {
type: 'bars',
visibleInLegend: false,
color: '#006666'
},
1: {
type: 'line',
color: 'grey',
lineWidth: 0,
pointSize: 0,
visibleInLegend: false
}
},
titleTextStyle: {
fontSize: 20,
textAlign: 'center'
},
vAxis: {
maxValue: 80,
baseline: 0
},
hAxis: {
title: 'Year'
}
}
chart.draw(view, options);
}
</script>
<script type="text/javascript">
google.load("visualization", "1", {
packages: ["corechart"]
});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'Name');
data.addColumn('number', 'Value');
data.addColumn({
type: 'string',
role: 'annotation'
});
data.addRows([
['2018', 6.5, '6.5'],
['2019', 8.2, '8.2'],
['2020', 8.8, '8.8'],
['2021', 9.5, '9.5']
]);
var view = new google.visualization.DataView(data);
view.setColumns([0, 1, 1, 2]);
var chart = new google.visualization.ComboChart(document.getElementById('chart_div2'));
var options = {
title: 'Year-wise Average Package',
series: {
0: {
type: 'bars',
visibleInLegend: false,
color: '#006666'
},
1: {
type: 'line',
color: 'grey',
lineWidth: 0,
pointSize: 0,
visibleInLegend: false
}
},
titleTextStyle: {
fontSize: 20,
textAlign: 'center'
},
vAxis: {
maxValue: 15,
baseline: 0
},
hAxis: {
title: 'Year'
}
}
chart.draw(view, options);
//bruteforce to remove values from charts
const remValues = (element) => {
element.removeChild(element.children[4]);
element.children[1].removeChild(element.children[1].children[element.children[1].children.length - 1])
}
const g = document.getElementsByTagName("g");
remValues(g[1]);
remValues(g[20]);
}
</script>
<!-- Pie chart script -->
<script>
google.charts.load('current', {
'packages': ['corechart']
});
google.charts.setOnLoadCallback(drawPieChart);
function drawPieChart() {
var data = google.visualization.arrayToDataTable([
['Students Placed', 'Percentage'],
['Students Placed', 92],
['', 8]
]);
var options = {
title: "Students Placed",
legend: 'none',
slices: {
0: {
color: '#3C75BA'
},
1: {
color: 'transparent'
}
},
titleTextStyle: {
fontSize: 20,
textAlign: 'center'
},
pieSliceTextStyle: {
fontSize: 30
}
}
var chart = new google.visualization.PieChart(document.getElementById("students-placed-chart"));
console.log(document.getElementById("students-placed-chart"));
chart.draw(data, options);
// For Average LPA
data = google.visualization.arrayToDataTable([
['Students got 8 LPA or more', 'Percentage'],
['Students got 8 LPA or more', 50],
['', 50]
])
options = {
title: "Students got 8 LPA or more",
legend: 'none',
slices: {
0: {
color: '#3AB54A',
textStyle: {
color: 'white'
}
},
1: {
color: '#F0663B',
textStyle: {
color: '#F0663B'
}
}
},
titleTextStyle: {
fontSize: 20,
textAlign: 'center'
},
pieStartAngle: 40,
pieSliceTextStyle: {
fontSize: 25
},
pieHole: 0.3
}
chart = new google.visualization.PieChart(document.getElementById("10lpa-or-more-chart"));
chart.draw(data, options);
}
</script>
<div class="column large-5 medium-5 small-12 ">
<div id="chart_div2" style="height: 300px; width: 100%;"></div>
</div>
<div class="large-2 medium-2 small-12 column stats2-res" style="text-align: center; margin-top: 6rem;">
<div class="paras complete-stats-res" style="text-align: center; color: #696969;">
<p>For Complete Statistics</p>
<a href="statistics.html" class="button large round click-here-res" style="background-color: #F0663B; padding: 14px;font-size: 1.5rem;color: white;">Click Here
</a>
</div>
</div>
<div class="column large-5 medium-5 small-12 ">
<div id="chart_div" style="height: 300px; width: 100%; "></div>
</div>
</div>
<!-- grphs end -->
<style>
.timeline__content img {
width: 400px;
height: auto;
}