-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathevents.html
More file actions
385 lines (333 loc) · 21.2 KB
/
events.html
File metadata and controls
385 lines (333 loc) · 21.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FINSTREET 25'</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="tailwind.config.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Diplomata&family=Josefin+Sans:wght@500;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');
body {
font-family: 'Poppins', sans-serif;
overflow-x: hidden;
/* Prevent horizontal scrolling */
}
.fin-font {
font-family: 'Diplomata', cursive;
}
.street-font {
font-family: 'Josefin Sans', sans-serif;
}
/* Fix the background video */
.background-video {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: fill;
z-index: -1;
/* Push the video far behind all content */
}
/* Ensure content can scroll properly */
.content {
position: relative;
z-index: 10;
color: white;
text-align: center;
padding: 20px;
}
</style>
</head>
<body class="bg-black text-white scroll-smooth">
<div class="relative h-screen">
<video class="background-video" autoplay loop muted>
<source src="bgbg2.mp4" type="video/mp4">
</video>
<!-- Navigation Bar -->
<nav class="fixed top-0 left-0 w-full bg-black bg-opacity-75 py-3 z-50">
<div class="container mx-auto flex justify-between items-center px-4">
<!-- Logo Section -->
<div class="flex items-center gap-4">
<img src="./Finstreet-logo.png" alt="Finstreet Logo" class="w-12">
<h1 class="text-4xl">
<span class="text-yellow-400 fin-font">Fin</span>
<span class="street-font">Street</span>
</h1>
</div>
<!-- Hamburger Icon for Mobile -->
<div class="lg:hidden flex items-center">
<button id="menu-toggle" class="text-white text-3xl focus:outline-none">
<span id="hamburger-icon">☰</span>
<span id="close-icon" class="hidden">×</span>
</button>
</div>
<!-- Navigation Links -->
<ul id="menu"
class="hidden lg:flex flex-col lg:flex-row lg:gap-8 lg:items-center text-lg font-medium transition-all duration-300 ease-in-out overflow-hidden">
<li><a href="#home" class="hover:text-cyan-400">Home</a></li>
<li><a href="#about" class="hover:text-cyan-400">About</a></li>
<li><a href="#schedule" class="hover:text-cyan-400">Schedule</a></li>
<li><a href="events.html#album" class="hover:text-cyan-400">Events</a></li>
<li><a href="#footer" class="hover:text-cyan-400">Contact Us</a></li>
</ul>
</div>
</nav>
<!-- Album Section -->
<div class="flex justify-center items-start mt-32">
<section id="album" class="py-12 px-4 mt-">
<h2 class="text-4xl font-bold text-center mb-32 uppercase text-yellow-400">Event Album</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-6 mx-auto">
<!-- Card 1 -->
<div
class="bg-blue-800 bg-opacity-100 border border-yellow-500 rounded-lg text-center shadow-lg hover:shadow-2xl hover:scale-105 transition-all duration-300 p-4">
<img src="./23.jpg" alt="Event 2"
class="w-auto h-auto object-cover rounded-lg mx-auto border-4 border-yellow-500">
<h3 class="text-lg font-semibold mt-4 text-white">Behind the Stumps</h3>
<p class="mt-2 text-gray-300">Learn the fundamentals of finance with industry experts.</p>
<button
class="mt-4 px-6 py-2 bg-yellow-500 text-sm font-semibold rounded-lg hover:bg-yellow-400 transition-colors">
Register
</button>
</div>
<!-- Card 2 -->
<div
class="bg-blue-800 bg-opacity-70 border border-yellow-500 rounded-lg text-center shadow-lg hover:shadow-2xl hover:scale-105 transition-all duration-300 p-4">
<img src="./25.jpg" alt="Event 3"
class="w-auto h-auto object-cover rounded-lg mx-auto border-4 border-yellow-500">
<h3 class="text-lg font-semibold mt-4 text-white">Escape the Rat Race</h3>
<p class="mt-2 text-gray-300">Explore stock trading strategies and tips.</p>
<button
class="mt-4 px-6 py-2 bg-yellow-500 text-sm font-semibold rounded-lg hover:bg-yellow-400 transition-colors">
Register
</button>
</div>
<!-- Card 3 -->
<div
class="bg-blue-800 bg-opacity-70 border border-yellow-500 rounded-lg text-center shadow-lg hover:shadow-2xl hover:scale-105 transition-all duration-300 p-4">
<img src="./25.jpg" alt="Event 4"
class="w-auto h-auto object-cover rounded-lg mx-auto border-4 border-yellow-500">
<h3 class="text-lg font-semibold mt-4 text-white">Sirf Excel</h3>
<p class="mt-2 text-gray-300">Dive into the world of cryptocurrencies and blockchain.</p>
<button
class="mt-4 px-6 py-2 bg-yellow-500 text-sm font-semibold rounded-lg hover:bg-yellow-400 transition-colors">
Register
</button>
</div>
<!-- Card 4 -->
<div
class="bg-blue-800 bg-opacity-70 border border-yellow-500 rounded-lg text-center shadow-lg hover:shadow-2xl hover:scale-105 transition-all duration-300 p-4">
<img src="./26.jpg" alt="Event 5"
class="w-auto h-auto object-cover rounded-lg mx-auto border-4 border-yellow-500">
<h3 class="text-lg font-semibold mt-4 text-white">Enigma</h3>
<p class="mt-2 text-gray-300">Showcase your analytical skills in a case challenge.</p>
<button
class="mt-4 px-6 py-2 bg-yellow-500 text-sm font-semibold rounded-lg hover:bg-yellow-400 transition-colors">
Register
</button>
</div>
<!-- Card 5 -->
<div
class="bg-blue-800 bg-opacity-70 border border-yellow-500 rounded-lg text-center shadow-lg hover:shadow-2xl hover:scale-105 transition-all duration-300 p-4">
<img src="./27.jpg" alt="Event 6"
class=" object-cover rounded-lg mx-auto border-4 border-yellow-500">
<h3 class="text-lg font-semibold mt-4 text-white">Estimania</h3>
<p class="mt-2 text-gray-300">Connect with industry professionals over dinner.</p>
<button
class="mt-4 px-6 py-2 bg-yellow-500 text-sm font-semibold rounded-lg hover:bg-yellow-400 transition-colors">
Register
</button>
</div>
<!-- Card 6 -->
<div
class="bg-blue-800 bg-opacity-70 border border-yellow-500 rounded-lg text-center shadow-lg hover:shadow-2xl hover:scale-105 transition-all duration-300 p-4">
<img src="./28.2.jpg" alt="Event 7"
class="object-cover rounded-lg mx-auto border-4 border-yellow-500">
<h3 class="text-lg font-semibold mt-4 text-white">Arth Anarth</h3>
<p class="mt-2 text-gray-300">Witness the innovative pitches by budding entrepreneurs.</p>
<button
class="mt-4 px-6 py-2 bg-yellow-500 text-sm font-semibold rounded-lg hover:bg-yellow-400 transition-colors">
Register
</button>
</div>
<!-- Card 7 -->
<div
class="bg-blue-800 bg-opacity-70 border border-yellow-500 rounded-lg text-center shadow-lg hover:shadow-2xl hover:scale-105 transition-all duration-300 p-4">
<img src="./22.jpg" alt="Event 8"
class="object-cover rounded-lg mx-auto border-4 border-yellow-500">
<h3 class="text-lg font-semibold mt-4 text-white">Stalk the Stock</h3>
<p class="mt-2 text-gray-300">Master personal budgeting and financial planning.</p>
<button
class="mt-4 px-6 py-2 bg-yellow-500 text-sm font-semibold rounded-lg hover:bg-yellow-400 transition-colors">
Register
</button>
</div>
<!-- Card 8 -->
<div
class="bg-blue-800 bg-opacity-70 border border-yellow-500 rounded-lg text-center shadow-lg hover:shadow-2xl hover:scale-105 transition-all duration-300 p-4">
<img src="./21.jpg" alt="Event 9"
class="object-cover rounded-lg mx-auto border-4 border-yellow-500">
<h3 class="text-lg font-semibold mt-4 text-white">Sell Me This</h3>
<p class="mt-2 text-gray-300">Test your business knowledge and win prizes.</p>
<button
class="mt-4 px-6 py-2 bg-yellow-500 text-sm font-semibold rounded-lg hover:bg-yellow-400 transition-colors">
Register
</button>
</div>
<!-- Card 9 -->
<div
class="bg-blue-800 bg-opacity-70 border border-yellow-500 rounded-lg text-center shadow-lg hover:shadow-2xl hover:scale-105 transition-all duration-300 p-4">
<img src="./21.jpg" alt="Event 10"
class="object-cover rounded-lg mx-auto border-4 border-yellow-500">
<h3 class="text-lg font-semibold mt-4 text-white">Chess</h3>
<p class="mt-2 text-gray-300">Collaborate and innovate in a 24-hour coding event.</p>
<button
class="mt-4 px-6 py-2 bg-yellow-500 text-sm font-semibold rounded-lg hover:bg-yellow-400 transition-colors">
Register
</button>
</div>
<!-- Card 10 -->
<div
class="bg-blue-800 bg-opacity-70 border border-yellow-500 rounded-lg text-center shadow-lg hover:shadow-2xl hover:scale-105 transition-all duration-300 p-4">
<img src="./21.jpg" alt="Event 11"
class="object-cover rounded-lg mx-auto border-4 border-yellow-500">
<h3 class="text-lg font-semibold mt-4 text-white">UNO/Bluff</h3>
<p class="mt-2 text-gray-300">Hear from successful alumni about their journeys.</p>
<button
class="mt-4 px-6 py-2 bg-yellow-500 text-sm font-semibold rounded-lg hover:bg-yellow-400 transition-colors">
Register
</button>
</div>
<!-- Card 11 -->
<div
class="bg-blue-800 bg-opacity-70 border border-yellow-500 rounded-lg text-center shadow-lg hover:shadow-2xl hover:scale-105 transition-all duration-300 p-4">
<img src="./21.jpg" alt="Event 12"
class="object-cover rounded-lg mx-auto border-4 border-yellow-500">
<h3 class="text-lg font-semibold mt-4 text-white">Snake & Ladder</h3>
<p class="mt-2 text-gray-300">Learn leadership lessons from top executives.</p>
<button
class="mt-4 px-6 py-2 bg-yellow-500 text-sm font-semibold rounded-lg hover:bg-yellow-400 transition-colors">
Register
</button>
</div>
<!-- Card 12 -->
<div
class="bg-blue-800 bg-opacity-70 border border-yellow-500 rounded-lg text-center shadow-lg hover:shadow-2xl hover:scale-105 transition-all duration-300 p-4">
<img src="./21.jpg" alt="Event 12"
class="object-cover rounded-lg mx-auto border-4 border-yellow-500">
<h3 class="text-lg font-semibold mt-4 text-white">Stumble Guys</h3>
<p class="mt-2 text-gray-300">Learn leadership lessons from top executives.</p>
<button
class="mt-4 px-6 py-2 bg-yellow-500 text-sm font-semibold rounded-lg hover:bg-yellow-400 transition-colors">
Register
</button>
</div>
</div>
</section>
</div>
<!-- Footer -->
<footer id="footer" class="bg-black text-white py-5 px-10 md:px-16 lg:px-32 z-10 mt-10">
<!-- Social Media Buttons -->
<!-- Footer Links -->
<section class="grid grid-cols-1 md:grid-cols-3 gap-6 text-center md:text-left z-10">
<div>
<h5 class="text-lg font-bold mb-2">About Us</h5>
<ul>
<li>
<p>Finstreet'25 is back at BIT Mesra, offering a dynamic blend of thrilling events and
insightful speaker sessions. Embrace the opportunity to test your skills and engage with
industry experts in this enriching financial extravaganza. Don't miss out on the
excitement!</p>
</li>
<li><a href="https://financeclubbitm.in/"
class="text-cyan-200 hover:text-lime-200">financeclub@bitmesra.ac.in</a></li>
</ul>
</div>
<div>
<h5 class="text-lg font-bold mb-2">Useful Links</h5>
<ul>
<li><a href="index.html#home" class="text-cyan-200 hover:text-lime-200">Home</a></li>
<li><a href="index.html#about" class="text-cyan-200 hover:text-lime-200">About</a></li>
<li><a href="#album" class="text-cyan-200 hover:text-lime-200">Events</a></li>
<li><a href="index.html#schedule" class="text-cyan-200 hover:text-lime-200">Schedule</a></li>
<li><a href="index.html#carousel" class="text-cyan-200 hover:text-lime-200">Highlights</a></li>
<li><a href="index.html#sponsor" class="text-cyan-200 hover:text-lime-200">Sponsors</a></li>
<li><a href="#footer" class="text-cyan-200 hover:text-lime-200">Contact Us</a></li>
</ul>
</div>
<div>
<h5 class="text-lg font-bold mb-2">Contact Us</h5>
<ul class="list-disc pl-6 text-left sm:text-left">
<li>Birla Institute of Technology, Mesra Ranchi 835215, Jharkhand, INDIA</li>
<li>Ronit Jain - 9340683467</li>
<li>Deevesh Mishra - 9508284013</li>
<li>financeclub@bitmesra.ac.in</li>
</ul>
</div>
</section>
<section class="flex justify-center gap-4 mb-0 z-10">
<!-- Facebook Button -->
<a href="https://www.facebook.com/p/Finance-Club-BIT-Mesra-100065447111184/"
class="flex items-center justify-center w-10 h-10 border-3 border-white rounded-full hover:bg-blue-800 hover:border-yellow-600">
<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24">
<path
d="M22.675 0H1.325C.593 0 0 .593 0 1.326v21.348C0 23.407.593 24 1.325 24h11.495v-9.294H9.692v-3.622h3.128V8.413c0-3.1 1.894-4.788 4.659-4.788 1.325 0 2.463.099 2.793.143v3.24h-1.916c-1.504 0-1.796.715-1.796 1.764v2.313h3.588l-.467 3.622h-3.121V24h6.116c.73 0 1.324-.593 1.324-1.326V1.326C24 .593 23.407 0 22.675 0z" />
</svg>
</a>
<!-- Twitter Button -->
<a href="https://www.linkedin.com/company/financeclubbit"
class="flex items-center justify-center w-10 h-10 border-3 border-white rounded-full hover:bg-blue-500 hover:border-yellow-600">
<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24">
<path
d="M19 0H5C2.239 0 0 2.239 0 5v14c0 2.761 2.239 5 5 5h14c2.761 0 5-2.239 5-5V5c0-2.761-2.239-5-5-5zM8.337 20.452H5.837v-9.35h2.5v9.35zM7.087 9.648c-.776 0-1.41-.635-1.41-1.41 0-.776.634-1.41 1.41-1.41s1.41.634 1.41 1.41c0 .775-.634 1.41-1.41 1.41zm13.365 10.804h-2.5v-4.515c0-1.081-.02-2.47-1.505-2.47-1.506 0-1.736 1.176-1.736 2.39v4.595h-2.5v-9.35h2.4v1.276h.033c.334-.633 1.153-1.299 2.374-1.299 2.541 0 3.01 1.672 3.01 3.843v5.53z">
</path>" />
</svg>
</a>
<!-- Instagram Button -->
<a href="https://www.instagram.com/financeclub_bitm/"
class="flex items-center justify-center w-10 h-10 border-3 border-white rounded-full hover:bg-pink-600 hover:border-yellow-600">
<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24">
<path
d="M12 2.163c3.204 0 3.584.012 4.85.07 1.366.062 2.633.333 3.608 1.308.975.975 1.246 2.243 1.308 3.608.058 1.267.069 1.646.069 4.85s-.012 3.584-.07 4.85c-.062 1.366-.333 2.633-1.308 3.608-.975.975-2.243 1.246-3.608 1.308-1.267.058-1.646.069-4.85.069s-3.584-.012-4.85-.07c-1.366-.062-2.633-.333-3.608-1.308-.975-.975-1.246-2.243-1.308-3.608-.058-1.267-.069-1.646-.069-4.85s.012-3.584.07-4.85c.062-1.366.333-2.633 1.308-3.608.975-.975 2.243-1.246 3.608-1.308 1.267-.058 1.646-.069 4.85-.069m0-2.163C8.755 0 8.343.015 7.052.072c-1.614.07-3.063.334-4.332 1.603C1.466 3.341 1.201 4.79 1.132 6.404.075 9.657.075 14.343 1.132 17.596c.07 1.614.334 3.063 1.603 4.332 1.269 1.269 2.718 1.533 4.332 1.603 1.206.048 1.629.068 4.901.068s3.695-.02 4.901-.068c1.614-.07 3.063-.334 4.332-1.603 1.269-1.269 1.533-2.718 1.603-4.332.048-1.206.068-1.629.068-4.901s-.02-3.695-.068-4.901c-.07-1.614-.334-3.063-1.603-4.332C18.688.334 17.239.07 15.625.072c-1.291-.058-1.703-.072-4.926-.072zm0 5.838a6.162 6.162 0 106.162 6.162 6.165 6.165 0 00-6.162-6.162zm0 10.162a3.998 3.998 0 114-4 4 4 0 01-4 4zm6.406-11.845a1.44 1.44 0 11-1.44-1.44 1.441 1.441 0 011.44 1.44z" />
</svg>
</a>
</section>
<!-- Footer Bottom -->
<div class="bg-black mt-0.1 border-t border-gray-700 pt-4 text-center z-10">
<p>
© Copyright:
<a href="https://financeclubbitm.in/" class="hover:text-cyan-400">2025 Finstreet Annual Fest. All
rights reserved.</a>
</p>
</div>
</footer>
</div>
<script>
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
<script>
// JavaScript for toggling the menu
const menuToggle = document.getElementById('menu-toggle');
const menu = document.getElementById('menu');
const hamburgerIcon = document.getElementById('hamburger-icon');
const closeIcon = document.getElementById('close-icon');
menuToggle.addEventListener('click', () => {
menu.classList.toggle('hidden');
menu.classList.toggle('flex');
menu.classList.toggle('max-h-0');
menu.classList.toggle('max-h-screen');
hamburgerIcon.classList.toggle('hidden');
closeIcon.classList.toggle('hidden');
});
</script>
</div>
</body>
</html>