-
Notifications
You must be signed in to change notification settings - Fork 0
/
student-profile.php
236 lines (225 loc) · 6.77 KB
/
student-profile.php
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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="description" content="NIT Silchar student profile">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Student Profile - TNP | NIT Silchar</title>
<!--links and scripts-->
<link rel="icon" type="image/png" href="includes/images/nits-logo.png">
<link rel="stylesheet" href="includes/css/bootstrap.min.css">
<script src="includes/js/jquery.min.js"></script>
<script src="includes/js/bootstrap.min.js"></script>
<script src="includes/js/dropdown.js"> </script>
<link rel="stylesheet" type="text/css" href="includes/css/style.css" />
<!--page styles-->
<style>
.division{
margin:1em 1%;
}
.image{
width:100%;
padding:5px;
border:1px solid #000000;
border-radius:5px;
}
.separator{
clear:both;
}
.distribution1{
width:45%;
max-width:500px;
display:inline-block;
min-width:250px;
margin-bottom:2em;
margin-right:2.5%;
}
.distribution2{
width:45%;
max-width:500px;
display:inline-block;
min-width:250px;
margin-bottom:2em;
margin-left:2.5%;
}
@media only screen and (max-width:580px){
.distribution1{
margin-right:auto;
}
.distribution2{
margin-left:auto;
}
}
@media only screen and (min-width:401px)
{
.imagebox1{
float:right;
width:30%;
background:#ffffff;
margin-left:2em;
margin-top:0;
min-width:250px;
}
.imagebox2{
float:left;
width:30%;
background:#ffffff;
margin-right:2em;
min-width:250px;
}
.imagebox3{
float:right;
width:30%;
background:#ffffff;
margin-left:2em;
min-width:250px;
}
.content{
font-family:Rosario;
font-size:1.1em;
text-align:justify;
line-height:2.5em;
word-spacing:+0.1em;
letter-spacing:+0.05em;
}
.content1{
padding:0 1em 2em 2em;
line-height:2.6em;
}
.content2{
padding:0 2em 2em 1em;
}
.content3{
padding:0 1em 2em 2em;
}
}
@media only screen and (max-width:401px)
{
.imagebox1{
display:block;
margin:2px auto;
min-width:250px;
}
.imagebox2{
display:block;
margin:2px auto;
min-width:250px;
}
.imagebox3{
display:block;
margin:2px auto;
min-width:250px;
}
.content{
clear:both;
font-family:Rosario;
}
}
</style>
<!--end of page styles-->
</head>
<body>
<hr class="header-sep" style="padding-top:0; margin-top:0;">
<?php
include("header.php");
?>
<hr class="header-sep">
<nav class="navbar navbar-inverse" role="navigation" style="clear:both;">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- <a class="navbar-brand" href="#">Home</a> -->
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="index">Home</a></li>
<li class="dropdown" id="placement">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Placement<span class="caret"></span></a>
<ul class="dropdown-menu placementsub">
<li class="submenu"> <a href="placement-procedure">Procedure</a></li>
<!-- <li class="submenu"><a href="placement-rules">Rules and Regulations</a></li> -->
<li class="submenu"><a href="esteemed-recruiters">Recruiters</a></li>
<li class="submenu"><a href="includes/files/jnf_nits.docx">Job Notification Form</a></li>
</ul>
</li>
<li class="dropdown" id="training">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Training<span class="caret"></span></a>
<ul class="dropdown-menu trainingsub">
<li class="submenu"> <a href="internship-policies">Internship Policies</a></li>
</ul>
</li>
<li class="dropdown active" id="academic">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Academics<span class="caret"></span></a>
<ul class="dropdown-menu academicsub">
<li class="submenu"> <a href="academic-life">Academic Life</a></li>
<li class="submenu"><a href="student-profile">Student Profile</a></li>
</ul>
</li>
<li><a href="why-nits">Why recruit us</a></li>
<li><a href="team"> Team </a> </li>
<li><a href="facilities"> Facilities </a> </li>
<li><a href="reach-us"> Reach us </a> </li>
</ul>
</div>
</div>
</nav>
<!-- main content of body here-->
<div class="col-md-12" role=main>
<h3 style="margin-top:0;">Student's Profile</h3>
<div class="division box1">
<div class="imagebox1"><img class="image" src="includes/images/student-profile/fig1.png"></div>
<div class="content content1">
<p>
In the year 2012 about 1.2 million students appeared in the AIEEE (All India Engineering Entrance Examination), which approximately accounted for almost all the engineering aspirants of India. About 1% of these made it to the world renowned IITs (through IIT-JEE), and about 1.5% to the prestigious NITs and IIITs.
</p>
</div>
</div>
<hr class="separator">
<div class="division box2">
<div class="imagebox2"><img class="image" src="includes/images/student-profile/fig2.png"></div>
<div class="content content2">
<p>
Fig. 2 shows the rank profile of students at NIT-Silchar. The modal class being top 1-2 % ranks almost consistently in the AIEEE, our institute unquestionably happens to be one of the most preferred T-Schools in the country by highest quality students.
</p>
<p>
NIT Silchar has got a quality pool of students distributed among 6 branches.
</p>
</div>
</div>
<hr class="separator">
<div class="division box3">
<div class="imagebox3"><img class="image" src="includes/images/student-profile/fig3.png"></div>
<div class="content content3">
<p>
In the year 2012 about 1.2 million students appeared in the AIEEE (All India Engineering Entrance Examination), which approximately accounted for almost all the engineering aspirants of India. About 1% of these made it to the world renowned IITs (through IIT-JEE), and about 1.5% to the prestigious NITs and IIITs.
</p>
</div>
</div>
<hr class="separator">
<h2>Student Distribution</h2>
<hr class="stylish-rule" style="max-width:500px;">
<div class="student-distribution"><center>
<div class="distribution1"><img class="image" src="includes/images/student-profile/fig4.png"></div>
<div class="distribution2"><img class="image" src="includes/images/student-profile/fig5.png"></div>
</center></div>
</div>
<!--end of main content-->
<?php
include("footer.php");
?>
</body>
</html>
<!-- SITE DEVELOPED BY:-
Kunal Chaudhary
B.Tech, Computer Science and Engineering
Class of 2018, NIT Silchar
facebook: http://www.facebook.com/chaudhary.kc.kunal/
Om Satyam Swarnkar
B.Tech, Computer Science and Engineering
Class of 2018, NIT Silchar
facebook: https://www.facebook.com/profile.php?id=100006054881490
-->