-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
550 lines (540 loc) · 24.5 KB
/
index.html
File metadata and controls
550 lines (540 loc) · 24.5 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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SP Jain Hackathon Dubai 2024</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<div class="nav-logo">
<img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Crect width='40' height='40' fill='%23FF6B35'/%3E%3Ctext x='20' y='25' font-family='Arial' font-size='20' font-weight='bold' text-anchor='middle' fill='white'%3ESPJ%3C/text%3E%3C/svg%3E" alt="SPJ Logo">
<span>SPJ Hackathon</span>
</div>
<ul class="nav-menu">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#prizes">Prizes</a></li>
<li><a href="#rules">Rules</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#register" class="register-btn">Register Now</a></li>
</ul>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="hero-container">
<div class="hero-content">
<h1 class="hero-title">
SP Jain Global <span class="highlight">Hackathon</span>
<br>Dubai 2024
</h1>
<p class="hero-subtitle">
Join us for 48 hours of innovation, creativity, and collaboration.
Build the future of technology in the heart of Dubai.
</p>
<div class="hero-info">
<div class="info-item">
<i class="fas fa-calendar-alt"></i>
<span>December 15-17, 2024</span>
</div>
<div class="info-item">
<i class="fas fa-map-marker-alt"></i>
<span>SP Jain Global Campus, Dubai</span>
</div>
<div class="info-item">
<i class="fas fa-users"></i>
<span>500+ Participants</span>
</div>
</div>
<div class="hero-buttons">
<a href="#register" class="btn btn-primary">Register Now</a>
<a href="#about" class="btn btn-secondary">Learn More</a>
</div>
</div>
<div class="countdown-container">
<h3>Event Starts In:</h3>
<div class="countdown" id="countdown">
<div class="countdown-item">
<span class="countdown-number" id="days">00</span>
<span class="countdown-label">Days</span>
</div>
<div class="countdown-item">
<span class="countdown-number" id="hours">00</span>
<span class="countdown-label">Hours</span>
</div>
<div class="countdown-item">
<span class="countdown-number" id="minutes">00</span>
<span class="countdown-label">Minutes</span>
</div>
<div class="countdown-item">
<span class="countdown-number" id="seconds">00</span>
<span class="countdown-label">Seconds</span>
</div>
</div>
</div>
</div>
<div class="hero-bg">
<div class="floating-elements">
<div class="floating-element"></div>
<div class="floating-element"></div>
<div class="floating-element"></div>
<div class="floating-element"></div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<div class="container">
<div class="section-header">
<h2>About the Hackathon</h2>
<p>An exciting 48-hour coding marathon where innovation meets opportunity</p>
</div>
<div class="about-content">
<div class="about-text">
<h3>Welcome to SP Jain's Premier Tech Event</h3>
<p>
Join hundreds of talented developers, designers, and entrepreneurs for an unforgettable
48-hour hackathon experience. Build innovative solutions, network with industry leaders,
and compete for amazing prizes while contributing to the future of technology.
</p>
<div class="features">
<div class="feature">
<i class="fas fa-code"></i>
<div>
<h4>Build Amazing Projects</h4>
<p>Create innovative solutions across various technology domains</p>
</div>
</div>
<div class="feature">
<i class="fas fa-users"></i>
<div>
<h4>Network & Collaborate</h4>
<p>Meet like-minded individuals and form lasting connections</p>
</div>
</div>
<div class="feature">
<i class="fas fa-trophy"></i>
<div>
<h4>Win Exciting Prizes</h4>
<p>Competitive prizes and recognition for outstanding projects</p>
</div>
</div>
</div>
</div>
<div class="about-stats">
<div class="stat">
<h3>500+</h3>
<p>Participants</p>
</div>
<div class="stat">
<h3>48</h3>
<p>Hours</p>
</div>
<div class="stat">
<h3>50+</h3>
<p>Projects</p>
</div>
<div class="stat">
<h3>15+</h3>
<p>Sponsors</p>
</div>
</div>
</div>
</div>
</section>
<!-- Schedule Section -->
<section id="schedule" class="schedule">
<div class="container">
<div class="section-header">
<h2>Event Schedule</h2>
<p>Plan your hackathon experience with our detailed timeline</p>
</div>
<div class="schedule-timeline">
<div class="timeline-item">
<div class="timeline-date">
<span class="day">Day 1</span>
<span class="date">Dec 15</span>
</div>
<div class="timeline-content">
<h4>Registration & Opening</h4>
<p>09:00 - 10:00</p>
<span>Welcome ceremony, team formation, and initial briefings</span>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">
<span class="day">Day 1</span>
<span class="date">Dec 15</span>
</div>
<div class="timeline-content">
<h4>Hacking Begins</h4>
<p>10:00</p>
<span>Official start of the 48-hour coding marathon</span>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">
<span class="day">Day 2</span>
<span class="date">Dec 16</span>
</div>
<div class="timeline-content">
<h4>Midpoint Check-in</h4>
<p>10:00</p>
<span>Progress updates and mentor sessions</span>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">
<span class="day">Day 3</span>
<span class="date">Dec 17</span>
</div>
<div class="timeline-content">
<h4>Submissions & Judging</h4>
<p>10:00 - 14:00</p>
<span>Project submissions and preliminary judging</span>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">
<span class="day">Day 3</span>
<span class="date">Dec 17</span>
</div>
<div class="timeline-content">
<h4>Final Presentations</h4>
<p>14:00 - 16:00</p>
<span>Final pitches and winner announcements</span>
</div>
</div>
</div>
</div>
</section>
<!-- Prizes Section -->
<section id="prizes" class="prizes">
<div class="container">
<div class="section-header">
<h2>Amazing Prizes</h2>
<p>Compete for incredible rewards and recognition</p>
</div>
<div class="prizes-grid">
<div class="prize-card first-place">
<div class="prize-rank">1st Place</div>
<div class="prize-icon">🏆</div>
<h3>AED 25,000</h3>
<p>Cash Prize + Internship Opportunities</p>
<ul>
<li>Mentorship with industry experts</li>
<li>Free co-working space for 3 months</li>
<li>Tech conference tickets</li>
</ul>
</div>
<div class="prize-card second-place">
<div class="prize-rank">2nd Place</div>
<div class="prize-icon">🥈</div>
<h3>AED 15,000</h3>
<p>Cash Prize + Learning Resources</p>
<ul>
<li>Premium online courses</li>
<li>Tech gadgets bundle</li>
<li>Networking opportunities</li>
</ul>
</div>
<div class="prize-card third-place">
<div class="prize-rank">3rd Place</div>
<div class="prize-icon">🥉</div>
<h3>AED 10,000</h3>
<p>Cash Prize + Recognition</p>
<ul>
<li>Certificate of achievement</li>
<li>Tech books collection</li>
<li>Community spotlight</li>
</ul>
</div>
</div>
<div class="special-prizes">
<h3>Special Categories</h3>
<div class="special-grid">
<div class="special-prize">
<h4>Best UI/UX Design</h4>
<p>AED 5,000</p>
</div>
<div class="special-prize">
<h4>Most Innovative Solution</h4>
<p>AED 5,000</p>
</div>
<div class="special-prize">
<h4>Best Social Impact</h4>
<p>AED 5,000</p>
</div>
<div class="special-prize">
<h4>Audience Choice</h4>
<p>AED 3,000</p>
</div>
</div>
</div>
</div>
</section>
<!-- Rules Section -->
<section id="rules" class="rules">
<div class="container">
<div class="section-header">
<h2>Rules & Guidelines</h2>
<p>Important information to ensure a fair and exciting competition</p>
</div>
<div class="rules-content">
<div class="rules-categories">
<div class="rule-category">
<h3>Participation</h3>
<ul>
<li>Teams of 2-5 members allowed</li>
<li>All participants must be 18+ years old</li>
<li>Valid ID required for registration</li>
<li>Must be present for the entire duration</li>
</ul>
</div>
<div class="rule-category">
<h3>Project Guidelines</h3>
<ul>
<li>Projects must be built from scratch during the event</li>
<li>Use of open-source libraries is encouraged</li>
<li>All code must be available on GitHub</li>
<li>Presentations limited to 5 minutes</li>
</ul>
</div>
<div class="rule-category">
<h3>Judging Criteria</h3>
<ul>
<li>Innovation and creativity (30%)</li>
<li>Technical implementation (25%)</li>
<li>User experience and design (20%)</li>
<li>Market potential (15%)</li>
<li>Presentation quality (10%)</li>
</ul>
</div>
<div class="rule-category">
<h3>Code of Conduct</h3>
<ul>
<li>Respect all participants and organizers</li>
<li>No harassment or discrimination</li>
<li>Follow venue safety guidelines</li>
<li>Maintain professional behavior</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Sponsors Section -->
<section id="sponsors" class="sponsors">
<div class="container">
<div class="section-header">
<h2>Our Sponsors</h2>
<p>Thank you to our amazing partners who make this event possible</p>
</div>
<div class="sponsors-grid">
<div class="sponsor-category">
<h3>Title Sponsor</h3>
<div class="sponsor-logos">
<div class="sponsor-logo">TechCorp</div>
<div class="sponsor-logo">InnovateHub</div>
</div>
</div>
<div class="sponsor-category">
<h3>Gold Sponsors</h3>
<div class="sponsor-logos">
<div class="sponsor-logo">CloudTech</div>
<div class="sponsor-logo">DataFlow</div>
<div class="sponsor-logo">DevTools</div>
</div>
</div>
<div class="sponsor-category">
<h3>Silver Sponsors</h3>
<div class="sponsor-logos">
<div class="sponsor-logo">StartupX</div>
<div class="sponsor-logo">CodeAcademy</div>
<div class="sponsor-logo">TechNews</div>
<div class="sponsor-logo">DigitalFirst</div>
</div>
</div>
</div>
</div>
</section>
<!-- Registration Section -->
<section id="register" class="register">
<div class="container">
<div class="section-header">
<h2>Register Now</h2>
<p>Secure your spot in Dubai's premier hackathon</p>
</div>
<div class="register-content">
<div class="register-info">
<h3>Why Participate?</h3>
<ul>
<li>Network with industry professionals</li>
<li>Build your portfolio with real projects</li>
<li>Learn from expert mentors</li>
<li>Win amazing prizes</li>
<li>Free food and drinks throughout the event</li>
<li>Access to premium development tools</li>
</ul>
</div>
<form class="register-form" id="registrationForm">
<h3>Registration Form</h3>
<div class="form-group">
<label for="fullName">Full Name *</label>
<input type="text" id="fullName" name="fullName" required>
</div>
<div class="form-group">
<label for="email">Email Address *</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="phone">Phone Number *</label>
<input type="tel" id="phone" name="phone" required>
</div>
<div class="form-group">
<label for="experience">Experience Level</label>
<select id="experience" name="experience">
<option value="beginner">Beginner (0-1 years)</option>
<option value="intermediate">Intermediate (2-4 years)</option>
<option value="advanced">Advanced (5+ years)</option>
</select>
</div>
<div class="form-group">
<label for="skills">Primary Skills</label>
<select id="skills" name="skills">
<option value="frontend">Frontend Development</option>
<option value="backend">Backend Development</option>
<option value="fullstack">Full Stack</option>
<option value="mobile">Mobile Development</option>
<option value="ai">AI/ML</option>
<option value="design">UI/UX Design</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group">
<label for="teamSize">Preferred Team Size</label>
<select id="teamSize" name="teamSize">
<option value="individual">Individual</option>
<option value="2">2 members</option>
<option value="3">3 members</option>
<option value="4">4 members</option>
<option value="5">5 members</option>
</select>
</div>
<div class="form-group checkbox-group">
<input type="checkbox" id="terms" name="terms" required>
<label for="terms">I agree to the terms and conditions and code of conduct</label>
</div>
<button type="submit" class="btn btn-primary">Register Now</button>
</form>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<div class="container">
<div class="section-header">
<h2>Get In Touch</h2>
<p>Have questions? We're here to help!</p>
</div>
<div class="contact-content">
<div class="contact-info">
<div class="contact-item">
<i class="fas fa-map-marker-alt"></i>
<div>
<h4>Location</h4>
<p>SP Jain Global Campus<br>Dubai International Academic City<br>Dubai, UAE</p>
</div>
</div>
<div class="contact-item">
<i class="fas fa-phone"></i>
<div>
<h4>Phone</h4>
<p>+971 4 123 4567</p>
</div>
</div>
<div class="contact-item">
<i class="fas fa-envelope"></i>
<div>
<h4>Email</h4>
<p>hackathon@spjain.edu</p>
</div>
</div>
<div class="contact-item">
<i class="fas fa-clock"></i>
<div>
<h4>Office Hours</h4>
<p>Mon - Fri: 9:00 AM - 6:00 PM<br>Sat: 10:00 AM - 4:00 PM</p>
</div>
</div>
</div>
<div class="social-links">
<h4>Follow Us</h4>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<div class="footer-logo">
<img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Crect width='40' height='40' fill='%23FF6B35'/%3E%3Ctext x='20' y='25' font-family='Arial' font-size='20' font-weight='bold' text-anchor='middle' fill='white'%3ESPJ%3C/text%3E%3C/svg%3E" alt="SPJ Logo">
<span>SP Jain Hackathon</span>
</div>
<p>Building the future of technology through innovation and collaboration.</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#prizes">Prizes</a></li>
<li><a href="#rules">Rules</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Resources</h4>
<ul>
<li><a href="#">Code of Conduct</a></li>
<li><a href="#">Terms & Conditions</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">FAQ</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Contact Info</h4>
<p>SP Jain Global Campus<br>Dubai, UAE</p>
<p>Email: hackathon@spjain.edu</p>
<p>Phone: +971 4 123 4567</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 SP Jain Global. All rights reserved.</p>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>