forked from Placement-USICT/GBU_USICT_PLACEMENT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlacement.html
413 lines (365 loc) · 12.9 KB
/
Placement.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Placement</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
background-color: #f4f4f4;
}
/* Navigation Styles */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 1.5rem;
background-color: #333;
position: sticky;
top: 0;
z-index: 1000;
}
.nav-logo img {
height: 50px;
}
.nav-menu {
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-item {
list-style: none;
margin-left: 2rem;
}
.nav-link {
text-decoration: none;
color: #fff;
font-size: 1.1rem;
font-weight: 400;
transition: 0.3s ease;
}
.nav-link:hover {
color: #007bff;
}
.hamburger {
display: none;
cursor: pointer;
}
.bar {
display: block;
width: 25px;
height: 3px;
margin: 5px auto;
transition: all 0.3s ease-in-out;
background-color: #fff;
}
/* News Ticker Styles */
.news-ticker {
width: 100%;
background-color: #f8f8f8;
padding: 10px 0;
overflow: hidden;
position: relative;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.ticker-content {
display: inline-block;
white-space: nowrap;
padding-left: 100%;
animation: ticker 30s linear infinite;
}
.ticker-content:hover {
animation-play-state: paused;
}
.ticker-content a {
display: inline-block;
padding: 0 2rem;
color: #333;
text-decoration: none;
transition: color 0.3s ease;
}
.ticker-content a:hover {
color: #007bff;
}
@keyframes ticker {
0% {
transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(-100%, 0, 0);
}
}
/* Download Section Styles */
.download-section {
max-width: 600px;
margin: 2rem auto;
padding: 2rem;
background: linear-gradient(145deg, #ffffff, #e6e6e6);
border-radius: 10px;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
}
.download-section:hover {
transform: translateY(-5px);
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}
.download-icon {
font-size: 3rem;
color: #007bff;
margin-bottom: 1rem;
}
.download-button {
background: #007bff;
color: white;
border: none;
padding: 0.75rem 1.5rem;
font-size: 1.2rem;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s, transform 0.3s;
text-decoration: none;
display: inline-block;
}
.download-button:hover {
background: #0056b3;
transform: scale(1.05);
}
/* Statistics Section Styles */
.statistics {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 1.5rem;
max-width: 1200px;
margin: 2rem auto;
padding: 2rem;
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.stat {
background-color: #007bff;
color: white;
padding: 2rem;
border-radius: 8px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
position: relative;
overflow: hidden;
}
.stat:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.stat::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 300%;
height: 300%;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
transform: translate(-50%, -50%) scale(0);
transition: transform 0.4s;
z-index: 0;
}
.stat:hover::before {
transform: translate(-50%, -50%) scale(1);
}
.stat h3 {
font-size: 2rem;
margin-bottom: 0.5rem;
position: relative;
z-index: 1;
}
.stat p {
font-size: 1rem;
position: relative;
z-index: 1;
}
/* Footer Styles */
footer {
background-color: #333; /* Dark background for the footer */
color: #fff; /* White text color */
padding: 2rem 1rem; /* Padding for spacing */
font-family: Arial, sans-serif;
}
.footer-container {
display: flex;
justify-content: space-around; /* Space out sections evenly */
text-align: center; /* Center text */
flex-wrap: wrap; /* Allow wrapping on smaller screens */
}
footer ul {
list-style-type: none; /* Removes the dots */
padding: 0; /* Removes any padding */
margin: 0; /* Removes any margin */
}
/* Responsive Styles */
@media only screen and (max-width: 768px) {
.nav-menu {
position: fixed;
left: -100%;
top: 5rem;
flex-direction: column;
background-color: #333;
width: 100%;
text-align: center;
transition: 0.3s;
box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
}
.nav-menu.active {
left: 0;
}
.nav-item {
margin: 2.5rem 0;
}
.hamburger {
display: block;
}
.hamburger.active .bar:nth-child(2) {
opacity: 0;
}
.hamburger.active .bar:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}
.footer-container {
flex-direction: column; /* Stack sections vertically on very small screens */
align-items: center; /* Center align content */
}
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<nav class="navbar">
<div class="nav-logo">
<img src="image.png" alt="GBU-logo">
</div>
<ul class="nav-menu">
<li class="nav-item"><a href="./index.html" class="nav-link">Home</a></li>
<li class="nav-item"><a href="./About.html" class="nav-link">About Us</a></li>
<li class="nav-item"><a href="./training.html" class="nav-link">Training Events</a></li>
<li class="nav-item"><a href="./Placement.html" class="nav-link">Placement Statistics</a></li>
<li class="nav-item"><a href="./upcoming.html" class="nav-link">Upcoming Events</a></li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
<div class="news-ticker">
<div class="ticker-content">
<a href="#news1" target="_blank">🔹 Breaking News: Record placements this year!</a>
<a href="#news2" target="_blank">🔹 Upcoming workshop on resume building</a>
<a href="#news3" target="_blank">🔹 New companies joining campus recruitment</a>
<a href="#news4" target="_blank">🔹 Student achievements in recent hackathons</a>
</div>
</div>
<!-- Download Section -->
<div class="download-section">
<i class="fas fa-file-download download-icon"></i>
<h2>Download Placement Report</h2>
<a href="https://www.gbu.ac.in/content/placement/Placement/SOICT_12April2023.pdf" class="download-button" target="_blank">Download Now</a>
</div>
<!-- Statistics Section -->
<div class="statistics">
<div class="stat">
<h3>250+</h3>
<p>Students Placed</p>
</div>
<div class="stat">
<h3>20+</h3>
<p>Companies Visited</p>
</div>
<div class="stat">
<h3>15</h3>
<p>Workshops Conducted</p>
</div>
<div class="stat">
<h3>5</h3>
<p>Online Competitions</p>
</div>
<div class="stat">
<h3>100+</h3>
<p>Job Offers</p>
</div>
<div class="stat">
<h3>30+</h3>
<p>Internships Offered</p>
</div>
</div>
<footer>
<div class="footer-container">
<div class="con-info">
<img src="./image.png" alt="GBU-logo">
<h3>Gautam Buddha University</h3>
<p>
Opp. Yamuna Expressway <br>
Greater Noida <br>
Gautam Buddha Nagar <br>
Uttar Pradesh-201312 (INDIA) <br>
Phone No.: 0120-2344200
</p>
</div>
<div class="drive-links">
<h4>Events Occurred in 2024</h4>
<ul>
<li><a href="https://drive.google.com/your-file-link" target="_blank">Download File 1</a></li>
<li><a href="https://drive.google.com/your-file-link" target="_blank">Download File 2</a></li>
<li><a href="https://drive.google.com/your-file-link" target="_blank">Download File 3</a></li>
</ul>
</div>
<div class="dev">
<h4>This site is developed & designed by</h4>
<p><i><b>Achyut Kr Pandey</b></i></p>
<p>Assisted and UI/UX performed by <i><b>Arnav</b></i></p>
</div>
<div class="dicr">
<p>© Gautam Buddha University 2024 | Maintained by: Achyut & Arnav</p>
<p>Contact detail: <a href="mailto:achyutpandey2203@gmail.com">Email to Achyut</a></p>
</div>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', () => {
const hamburger = document.querySelector('.hamburger');
const navMenu = document.querySelector('.nav-menu');
hamburger.addEventListener('click', () => {
hamburger.classList.toggle('active');
navMenu.classList.toggle('active');
});
document.querySelectorAll('.nav-link').forEach(n => n.addEventListener('click', () => {
hamburger.classList.remove('active');
navMenu.classList.remove('active');
}));
// News Ticker Functionality
const tickerContent = document.querySelector('.ticker-content');
const newsItems = tickerContent.querySelectorAll('a');
// Calculate the total width of all news items
let totalWidth = 0;
newsItems.forEach(item => {
totalWidth += item.offsetWidth;
});
// Set the animation duration based on the total width
const animationDuration = totalWidth / 50; // Adjust the divisor to change speed
tickerContent.style.animationDuration = `${animationDuration}s`;
// Duplicate news items to create a seamless loop
tickerContent.innerHTML += tickerContent.innerHTML;
});
</script>
</body>
</html>