-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatistics.html
More file actions
200 lines (190 loc) · 6.05 KB
/
statistics.html
File metadata and controls
200 lines (190 loc) · 6.05 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Placement Statistics | TNP - BIT Deoghar</title>
<meta name="description"
content="Year-wise placement statistics, sector-wise offers, and top recruiters at BIT Deoghar." />
<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=Inter:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="images/logo.jpeg" />
</head>
<body class="page">
<header class="topbar">
<div class="container topbar__content">
<div class="topbar__left">
<span>Training & Placement Cell, BIT Deoghar</span>
</div>
<div class="topbar__right">
<a href="mailto:tnp@bitd.ac.in">tnp@bitd.ac.in</a>
<span class="divider">|</span>
<a href="tel:+910000000000">+91 00000 00000</a>
</div>
</div>
</header>
<nav class="navbar" id="navbar">
<div class="container navbar__content">
<a href="index.html" class="brand">
<img src="images/logo.jpeg" alt="BIT Deoghar TNP" class="brand-logo" />
<span class="brand-text">TNP • BIT Deoghar</span>
</a>
<button class="nav-toggle" id="navToggle" aria-label="Toggle menu" aria-expanded="false">☰</button>
<ul class="nav" id="navMenu">
<li><a href="index.html#about">About</a></li>
<li><a class="active" href="statistics.html">Statistics</a></li>
<li><a href="recruiters.html">Recruiters</a></li>
<li><a href="students.html">Students</a></li>
<li><a href="alumni.html">Alumni</a></li>
<li><a href="startups.html">Startups</a></li>
<li><a href="hrs.html">HRS</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<div class="page-hero">
<div class="container">
<div class="breadcrumbs"><a href="index.html">Home</a> / Placement Statistics</div>
<h1>Placement Statistics</h1>
<p class="dim">Snapshot of recent placement outcomes at BIT Deoghar.</p>
</div>
</div>
<section class="section">
<div class="container">
<h2>Year-wise Overview</h2>
<div class="card">
<table>
<thead>
<tr>
<th>Year</th>
<th>Eligible Students</th>
<th>Offers</th>
<th>Placement %</th>
<th>Highest CTC (LPA)</th>
<th>Average CTC (LPA)</th>
</tr>
</thead>
<tbody>
<tr>
<td>2024</td>
<td>320</td>
<td>350</td>
<td>85%</td>
<td>35.0</td>
<td>8.4</td>
</tr>
<tr>
<td>2023</td>
<td>305</td>
<td>332</td>
<td>83%</td>
<td>31.5</td>
<td>7.9</td>
</tr>
<tr>
<td>2022</td>
<td>298</td>
<td>310</td>
<td>80%</td>
<td>28.0</td>
<td>7.1</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<section class="section section--muted">
<div class="container grid grid--2">
<div>
<h2>Sector-wise Offers</h2>
<div class="card">
<table>
<thead>
<tr>
<th>Sector</th>
<th>Offers</th>
</tr>
</thead>
<tbody>
<tr>
<td>Software & IT</td>
<td>160</td>
</tr>
<tr>
<td>Analytics & Data</td>
<td>60</td>
</tr>
<tr>
<td>Core Engineering</td>
<td>45</td>
</tr>
<tr>
<td>Consulting</td>
<td>40</td>
</tr>
<tr>
<td>Others</td>
<td>45</td>
</tr>
</tbody>
</table>
</div>
</div>
<div>
<h2>Top Recruiters</h2>
<div class="card">
<ul class="list">
<li>Company A, Company B, Company C</li>
<li>Company D, Company E, Company F</li>
<li>Company G, Company H, Company I</li>
</ul>
<p class="dim mt-md">Full list available on the recruiters page.</p>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container grid grid--3">
<div>
<div class="brand brand--footer">
<img src="images/logo.jpeg" alt="BIT Deoghar TNP" class="brand-logo" />
<span>TNP • BIT Deoghar</span>
</div>
<p>
BIT Deoghar, Jasidih, Deoghar, Jharkhand 814142, India
</p>
</div>
<div>
<h4>Quick Links</h4>
<ul class="list">
<li><a href="statistics.html">Placement Statistics</a></li>
<li><a href="team.html">TNP Team</a></li>
<li><a href="recruiters.html">For Recruiters</a></li>
<li><a href="students.html">For Students</a></li>
</ul>
</div>
<div>
<h4>Contact</h4>
<ul class="list">
<li>Email: <a href="mailto:tnp@bitd.ac.in">tnp@bitd.ac.in</a></li>
<li>Phone: <a href="tel:+910000000000">+91 00000 00000</a></li>
<li>Office Hours: Mon–Fri, 9 AM – 5 PM</li>
</ul>
</div>
</div>
<div class="footer__bottom">
<div class="container">
<small>© <span id="year"></span> Training & Placement Cell, BIT Deoghar. All rights reserved.</small>
</div>
</div>
</footer>
<button id="backToTop" class="back-to-top" aria-label="Back to top">↑</button>
<script src="main.js"></script>
</body>
</html>