-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
445 lines (387 loc) · 20.2 KB
/
Copy pathindex.html
File metadata and controls
445 lines (387 loc) · 20.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
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
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="HackSeries is a premier technical event hosted by ACES, offering interactive sessions and hands-on learning opportunities in programming, web development, and more. Join us to build strong foundations, explore career-oriented domains, and enhance your technical skills through practical exercises and networking. Discover more about our event schedule and registration." />
<title>HackSeries</title>
<!-- Logo on taskbar -->
<link rel="icon" type="image/png" href="./images/logo.png">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<!-- CSS link -->
<link rel="stylesheet" href="style.css">
<!-- Font links -->
<link href="https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap" rel="stylesheet">
<!-- Bootstrap link -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- AOS Animation library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css">
</head>
<body>
<!-- Loader -->
<div id="mainloader">
<h1>LEARN</h1>
<h1>BUILD</h1>
<h1>INNOVATE</h1>
</div>
<!-- Header -->
<section class="bg-img">
<header class="container-fluid p-1">
<div class="d-flex justify-content-between align-items-center">
<!-- Logo Section -->
<div class="d-flex align-items-center">
<a href="https://aces.dypvp.edu.in/">
<img src="./images/logo.png" class="logo-img" alt="logo">
</a>
<!-- <h1 class="logo text-light ms-3 text-center d-none d-lg-block">A C E S</h1> -->
<h1 class="logo text-light ms-3 text-center d-none d-lg-block hack-series">HackSeries</h1>
</div>
<!-- Navigation Links - Right Aligned for Laptop View -->
<nav class="navItems d-none d-lg-flex ms-auto">
<a href="./index.html" class="text-light mx-3">Home</a>
<a href="#Event" class="text-light mx-3">Event</a>
<!-- <a href="./hackathon.html" class="text-light mx-3">Hackathon</a> -->
<a href="#Contact" class="text-light mx-3">Contact us</a>
<!-- <a href="https://forms.gle/j6A9536zgPCNj2PK6" class="text-light mx-3">Registration</a> -->
<!-- <a href="./registration.html" class="text-light mx-3">Registration</a> -->
</nav>
<!-- Mobile Toggle Button - Shown Only on Smaller Screens -->
<div class="d-flex justify-content-end">
<button class="navbar-toggler d-lg-none" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</div>
</header>
<!-- Mobile Navbar -->
<div class="collapse navbar-collapse d-lg-none" id="navbarNav">
<nav class="navbar-nav bg-dark rounded-3 p-3 shadow-lg">
<a class="nav-item nav-link text-light px-4 py-2 mb-2 rounded transition-transform" href="./index.html">Home</a>
<a class="nav-item nav-link text-light px-4 py-2 mb-2 rounded transition-transform" href="#Event">Event</a>
<a class="nav-item nav-link text-light px-4 py-2 mb-2 rounded transition-transform" href="#Contact">Contact us</a>
<a class="nav-item nav-link text-light px-4 py-2 mb-2 rounded transition-transform" href="./hackathon.html">Hackathon </a>
<!-- <a class="nav-item nav-link text-light px-4 py-2 mb-2 rounded transition-transform" href="https://forms.gle/j6A9536zgPCNj2PK6">Registration</a> -->
<!-- <a class="nav-item nav-link text-light px-4 py-2 mb-2 rounded transition-transform" href="./registration.html">Registration</a> -->
<!-- <a class="nav-item nav-link text-light px-4 py-2 rounded transition-transform" href="./schedule-hackseries.html">Schedule</a> -->
</nav>
</div>
<!-- Section 1: HackSeries -->
<section class="vh-custom text-white d-flex justify-content-center align-items-center section1" data-aos="zoom-in">
<div class="text-center pt-4 py-4">
<h1 class="title-2 display-2 text-highlight-section0 text-center">HackSeries 01</h1>
<div class="leaderboard">
<div class="winner-image-container">
<img src="./images/winners.jpg" alt="HackSeries Winners" class="winner-group-img" width="600" height="200">
</div>
<h1 class="title-3">Winners</h1>
<div class="winners-list container">
<div class="row justify-content-center g-3">
<!-- Advanced -->
<div class="col-md-4">
<div class="category-card">
<h4 class="text-highlight fw-bold mb-2">Advanced</h4>
<div class="h6 text-light">
Sanskar Dagade<br>
Prathamesh Gandule
</div>
</div>
</div>
<!-- Intermediate -->
<div class="col-md-4">
<div class="category-card">
<h4 class="text-highlight fw-bold text-center mb-2">Intermediate</h4>
<div class="h6 text-light">
Pratik Bhagat <br>
Umesh Pakhare
</div>
</div>
</div>
<!-- Beginner -->
<div class="col-md-4">
<div class="category-card">
<h4 class="text-highlight fw-bold mb-2">Beginner</h4>
<div class="h6 text-light">
Ayush Auti
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Main sections -->
<section class="text-center py-5 section2" data-aos="zoom-in">
<h1 class="title gradient-text">Why HackSeries?</h1>
<ul class="feature-list">
<li><i class="fas fa-code"></i>
<h3>Build Strong Foundations</h3>
<p>Learn the basics of various technologies, ensuring solid programming understanding</p>
</li>
<li><i class="fas fa-laptop-code"></i>
<h3>Hands-on Learning</h3>
<p>Apply concepts through real-world projects and case studies</p>
</li>
<li><i class="fas fa-rocket"></i>
<h3>Career-Oriented Domains</h3>
<p>Focus on high-demand domains with latest industry trends</p>
</li>
<li><i class="fas fa-users"></i>
<h3>Peer Learning</h3>
<p>Collaborative environment fostering student-led learning</p>
</li>
</ul>
</section>
<!-- Section 3: Information -->
<section class="text-center py-5 section3" data-aos="zoom-in">
<h1 class="title gradient-text-2">How HackSeries Helps?</h1>
<ul class="feature-list">
<li><i class="fas fa-brain"></i>
<h3>Technical Proficiency</h3>
<p>Develop deep understanding of programming concepts for internships</p>
</li>
<li><i class="fas fa-puzzle-piece"></i>
<h3>Problem-Solving Skills</h3>
<p>Tackle challenging tasks requiring critical thinking</p>
</li>
<li><i class="fas fa-network-wired"></i>
<h3>Networking Opportunities</h3>
<p>Connect with mentors and peers for career growth</p>
</li>
</ul>
</section>
<!-- Section 4: Roadmap events -->
<section class="section4" id="Event">
<div class="text-highlight-section6">
<h2 class="title fw-bold display-4 mb-1 pt-5">HackSeries</h2>
</div>
<div class="ag-format-container">
<div class="ag-courses_box d-flex justify-content-center align-items-center">
<div class="ag-courses_item ">
<a href="./hackseries00.html" class="ag-courses-item_link">
<div class="ag-courses-item_bg"></div>
<div class="ag-courses-item_title d-flex justify-content-center align-items-center" >
HackSeries 00
</div>
</a>
</div>
<div class="ag-courses_item">
<a href="./hackseries01.html" class="ag-courses-item_link">
<div class="ag-courses-item_bg"></div>
<div class="ag-courses-item_title d-flex justify-content-center align-items-center">
HackSeries 01
</div>
</a>
</div>
</div>
</div>
</section>
<div class="text-highlight-section6 text-center" style="background-color: #F1F1F1; color: black; margin: 0; padding: 0;"></div>
<h2 class="title fw-bold display-4 pt-5" style="background-color: #F1F1F1; color: black; padding: 0; margin: 0; border: 0; font-size: 3rem;">Gallery</h2>
<!-- <section class="section5">
<div id="animatedCarousel" class="carousel slide carousel-fade" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active"></div>
<div class="carousel-item d-flex justify-content-center align-items-center"></div>
<div class="carousel-item"></div>
<div class="carousel-item"></div>
<div class="carousel-item"></div>
<div class="carousel-item"></div>
<div class="carousel-item"></div>
<div class="carousel-item"></div>
<div class="carousel-item"></div>
<div class="carousel-item"></div>
<div class="carousel-item"></div>
<div class="carousel-item"></div>
<div class="carousel-item"></div>
<div class="carousel-item"></div>
<div class="carousel-item"></div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#animatedCarousel" data-bs-slide="prev" style="background: none;">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#animatedCarousel" data-bs-slide="next" style="background: none;">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</section> -->
<!-- <section class="section5">
<div class="container">
<div class="block block-1"></div>
<div class="block block-2"></div>
<div class="block block-3"></div>
<div class="block block-4"></div>
<div class="block block-5"></div>
<div class="block block-6"></div>
<div class="block block-7"></div>
<div class="block block-8"></div>
<div class="block block-9"></div>
<div class="block block-10"></div>
<div class="block block-11"></div>
<div class="block block-12"></div>
<div class="block block-13"></div>
<div class="block block-14"></div>
<div class="block block-15"></div>
</div>
</section>
-->
<section class="section5">
<div class="slider-img">
<span style="--i:1;"><img src="./images/01.JPG" alt=""></span>
<span style="--i:2;"><img src="./images/02.JPG" alt=""></span>
<span style="--i:3;"><img src="./images/03.JPG" alt=""></span>
<span style="--i:4;"><img src="./images/04.JPG" alt=""></span>
<span style="--i:5;"><img src="./images/05.JPG" alt=""></span>
<span style="--i:6;"><img src="./images/06.jpg" alt=""></span>
<span style="--i:7;"><img src="./images/07.jpg" alt=""></span>
<span style="--i:8;"><img src="./images/08.jpg" alt=""></span>
<span style="--i:9;"><img src="./images/09.jpg" alt=""></span>
<span style="--i:10;"><img src="./images/10.jpg" alt=""></span>
<span style="--i:11;"><img src="./images/11.jpg" alt=""></span>
<span style="--i:12;"><img src="./images/12.jpg" alt=""></span>
<span style="--i:13;"><img src="./images/13.jpg" alt=""></span>
<span style="--i:14;"><img src="./images/14.jpg" alt=""></span>
<span style="--i:15;"><img src="./images/15.jpg" alt=""></span>
</div>
</section>
<!-- Section 6: Contact Us -->
<section class="section6">
<div class="form-container " id="Contact">
<h2 class="title fw-bold display-4 text-light mb-4 text-highlight-section5">Reach Us Out</h2>
<form id="contactForm" >
<label for="name" class="text-light fs-5">Name:</label>
<input type="text" id="name" class="bg-dark text-light" placeholder="Enter Your Name" name="name" required>
<label for="email" class="text-light fs-5">Email:</label>
<input type="email" id="email" class="bg-dark text-light" placeholder="Enter Your Email" name="email" required>
<label for="phone" class="text-light fs-5">Phone Number:</label>
<input type="text" id="phone" class="bg-dark text-light" placeholder="Enter Your Phone Number" name="phone" required>
<label for="message" class="text-light fs-5">Message:</label>
<textarea id="message" name="message" class="bg-dark text-light" rows="4" required></textarea>
<div class="button-container">
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</div>
</form>
<div id="responseMessage"></div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<div class="logo-text">
<img src="images/acesLogo(Black).svg" alt="ACES Logo" class="logo">
<div class="institution-text">
<h1>Association of Computer <br> Engineering Students</h1>
<p>Dr. D.Y. Patil Institute of Technology, <br>Pimpri</p>
</div>
</div>
<div class="social-links">
<h2>Socials</h2>
<ul>
<li><a href="https://www.instagram.com/aces.dit/">Instagram</a></li>
<li><a href="https://www.linkedin.com/company/acesdit/">LinkedIn</a></li>
<li><a href="https://github.com/acesdit">GitHub</a></li>
</ul>
</div>
<div class="other-links">
<h2>Other Links</h2>
<ul>
<li><a href="https://www.youtube.com/@ACESDIT">YouTube</a></li>
<li><a href="https://aces.dypvp.edu.in/blog">Blog</a></li>
<li><a href="https://linktr.ee/acesdit">Linktree</a></li>
</ul>
</div>
</div>
<div class="copyright">
<p>© 2024 Association of Computer Engineering Students, DIT. All rights reserved.</p>
</div>
</footer>
</section>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<!--
<script>
const form = document.getElementById('contactForm');
const responseMessage = document.getElementById('responseMessage');
form.addEventListener('submit', async (e) => {
e.preventDefault();
const formData = new FormData(form);
const endpoint = 'https://script.google.com/macros/s/AKfycbxMqguJm0Muas_Oq6R_5oHZaIIMA-XSqfSplTv4QZ1IUJOj-byQd1LrjGlL9xaJFMTq/exec'; // Replace with your Apps Script URL
try {
const response = await fetch(endpoint, {
method: 'POST',
body: formData
});
const text = await response.text();
responseMessage.textContent = text;
// Clear form after submission
form.reset();
} catch (error) {
responseMessage.textContent = 'An error occurred. Please try again.';
}
});
</script> -->
<script>
document.getElementById('contactForm').addEventListener('submit', async (e) => {
e.preventDefault();
const formData = new FormData(e.target);
const responseMessage = document.getElementById('responseMessage');
const endpoint = 'https://script.google.com/macros/s/AKfycbxMqguJm0Muas_Oq6R_5oHZaIIMA-XSqfSplTv4QZ1IUJOj-byQd1LrjGlL9xaJFMTq/exec'; // Replace with your actual Apps Script URL
// Display loader while processing
responseMessage.innerHTML = '<div class="loader"></div> Processing...';
try {
const response = await fetch(endpoint, {
method: 'POST',
body: formData
});
const result = await response.text();
// Display success or error message
if (result.includes('success')) {
responseMessage.innerHTML = '✅ <span class="success">Data saved successfully!</span>';
} else {
responseMessage.innerHTML = '❌ <span class="error">Failed to save data. Please try again.</span>';
}
// Fade out the message and reload after 2 seconds
setTimeout(() => {
responseMessage.classList.add('fade-out');
setTimeout(() => {
window.location.reload(); // Reloads the page after fade out
}, 1000); // Delays reload to allow the fade-out animation to complete
}, 2000); // Keep the message visible for 2 seconds
} catch (error) {
responseMessage.innerHTML = '❌ <span class="error">An error occurred. Please try again.</span>';
}
});
</script>
<!-- AOS Animation library JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
<script>
AOS.init();
</script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>AOS.init();</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WWNC0W9K89"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WWNC0W9K89');
</script>
<script src="./index.js"></script>
<script src="./script.js"></script>
<script>
var blocks = document.getElementsByClassName('block');
var container = document.getElementsByClassName('container');
var hs = new HorizontalScroll.default({
blocks : blocks,
container: container,
isAnimated: true,
springEffect: 0.8,
});
</script>
</body>
</html>