forked from cbitosc/HTF24-Team-281
-
Notifications
You must be signed in to change notification settings - Fork 0
/
homepage.html
90 lines (80 loc) · 3.13 KB
/
homepage.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
<!-- Homepage -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tech Innovators 2024 | Home</title>
<link rel="stylesheet" href="homepage.css">
</head>
<body>
<!-- Navigation Bar -->
<header class="navbar">
<div class="logo">Tech Innovators 2024</div>
<nav>
<ul>
<li><a href="#about" class="nav-btn">About</a></li>
<li><a href="#description" class="nav-btn">Description</a></li>
<li><a href="login.html" class="nav-btn">Login</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<h1>🚀 Welcome to Tech Innovators 2024 🚀</h1>
<p>Join the most anticipated national-level hackathon! <br> Innovate, collaborate, and compete with the brightest minds across the country.</p>
<a href="signup.html" class="btn">📝 Register Now</a>
</div>
</section>
<!-- Get Ready Section -->
<section id="get-ready" class="section-alt">
<h2>Get Ready for the Hackathon! </h2>
<div class="fun-tips">
<div class="tip">
<h3>💡 Tip #1</h3>
<p>Gather your ideas and brainstorm with your team.</p>
</div>
<div class="tip">
<h3>🛠️ Tip #2</h3>
<p>Familiarize yourself with the tools and technologies you'll be using.</p>
</div>
<div class="tip">
<h3>😌 Tip #3</h3>
<p>Don’t forget to take breaks and enjoy the event!</p>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="section">
<h2 class="about-heading">✨ About the Event ✨</h2>
<p>Tech Innovators 2024 is a hybrid hackathon bringing together creators from across the nation. <br> Participate on-site or virtually to showcase your talents, collaborate, and learn.</p>
</section>
<!-- Description Section -->
<section id="description" class="section-alt">
<h2 class="description-heading">🌐 Website Description 🌐</h2>
<p>This platform provides a comprehensive overview of Tech Innovators 2024, featuring individual and team registrations, real-time updates, venue directions, and access details for virtual attendees.</p>
</section>
<!-- Eligibility Criteria Section -->
<section id="criteria" class="section">
<h2 class="eligibility-heading">🔍 Eligibility Criteria 🔍</h2>
<ul class="criteria-list">
<li>Open to students, professionals, and tech enthusiasts.</li>
<li>Register individually or as a team (up to 4 members).</li>
<li>Basic programming knowledge is recommended.</li>
</ul>
</section>
<!-- Registration Fee Section -->
<section id="registration" class="section-alt">
<h2 class="registration-heading">💰 Registration Fee 💰</h2>
<ul class="registration-list">
<li><strong>Team Registration:</strong> $100 per person</li>
</ul>
<p>Proceeds support providing an exceptional experience, prizes, and logistics for participants.</p>
</section>
<!-- Footer -->
<footer>
<p>© 2024 Tech Innovators Hackathon. All Rights Reserved.</p>
</footer>
</body>
</html>