forked from lakshyajn/TechHack2k24
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (78 loc) · 2.66 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TechHack 2024 - Innovate, Create, Elevate</title>
<link rel="stylesheet" href="/css/animations.css">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<header>
<nav>
<div class="logo">TechHack 2024</div>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/challenges">Challenges</a></li>
<li><a href="/schedule">Schedule</a></li>
<li><a href="/sponsors">Sponsors</a></li>
<li><a href="/register" class="cta-button1">Register Now</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h1>TechHack 2024</h1>
<p>Innovate. Create. Elevate.</p>
<a href="register.html" class="cta-button">Join the Hack</a>
</section>
<section class="quick-info">
<div class="info-card">
<h3>48 Hours</h3>
<p>Non-stop innovation</p>
</div>
<div class="info-card">
<h3>$10,000</h3>
<p>In prizes</p>
</div>
<div class="info-card">
<h3>500+ Hackers</h3>
<p>From around the globe</p>
</div>
</section>
<section class="featured-challenges">
<h2>Featured Challenges</h2>
<!-- Add featured challenges here -->
</section>
<section class="countdown">
<h2>Countdown to TechHack 2024</h2>
<div id="countdown-timer"></div>
</section>
<section class="quick-info reveal">
<div class="info-card">
<h3 class="counter" data-target="48">0</h3>
<p>Hours of hacking</p>
</div>
<!-- Add more info cards here -->
</section>
<section class="featured-challenges reveal">
<h2>Featured Challenges</h2>
<div class="challenge-grid">
<div class="challenge-card">
<!-- Challenge content here -->
</div>
<!-- Add more challenge cards here -->
</div>
</section>
</main>
<footer>
<p>© 2024 TechHack. All rights reserved.</p>
<div class="social-links">
<!-- Add social media links here -->
</div>
</footer>
<script src="../js/main.js"></script>
<script src="../js/animations.js"></script>
</body>
</html>