-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
215 lines (205 loc) · 7.25 KB
/
Copy pathindex.html
File metadata and controls
215 lines (205 loc) · 7.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JobHub - Jobs & Events Platform</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<a href="index.html" class="logo">
Jobby<span class="logo-dot">.</span>
</a>
<button class="menu-btn" id="menuBtn">☰</button>
<ul class="menu" id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="search.html">Job Search</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="hero-container">
<div class="hero-content fade-in">
<h1>Find Jobs & Events That Matter</h1>
<p>Discover career opportunities and exciting events. Connect with employers and event organizers all in one place.</p>
<div class="search-box">
<input type="text" class="search-input" placeholder="Search jobs, events, companies...">
<button class="search-btn">Search</button>
</div>
<div class="cta-btns">
<a href="search.html" class="btn btn-primary">Browse Jobs</a>
<a href="events.html" class="btn btn-primary">Browse Events</a>
<a href="#" class="btn btn-secondary">For Organizations</a>
</div>
</div>
<div class="hero-image fade-in delay-1">
<img src="hero-image.jpg" alt="Jobs and Events Platform">
</div>
</div>
</section>
<!-- Features Section -->
<section class="features">
<div class="section-title fade-in">
<h2>Why Choose Us</h2>
<p>A comprehensive platform for both career opportunities and professional events.</p>
</div>
<div class="features-container">
<div class="feature-card fade-in delay-1">
<div class="feature-icon">🌟</div>
<h3>Top Companies & Events</h3>
<p>Connect with leading companies and attend premier industry events.</p>
</div>
<div class="feature-card fade-in delay-2">
<div class="feature-icon">🔍</div>
<h3>Smart Search</h3>
<p>Find relevant jobs and events with our advanced filtering system.</p>
</div>
<div class="feature-card fade-in delay-3">
<div class="feature-icon">📈</div>
<h3>Career Growth</h3>
<p>Enhance your career through job opportunities and networking events.</p>
</div>
<div class="feature-card fade-in delay-4">
<div class="feature-icon">💼</div>
<h3>Easy Application</h3>
<p>Apply to jobs and register for events with just a few clicks.</p>
</div>
<div class="feature-card fade-in delay-4">
<div class="feature-icon">📅</div>
<h3>Event Calendar</h3>
<p>Stay updated with upcoming job fairs, workshops, and networking events.</p>
</div>
<div class="feature-card fade-in delay-4">
<div class="feature-icon">🤝</div>
<h3>Networking</h3>
<p>Build professional connections through both jobs and events.</p>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="stats">
<div class="stats-container">
<div class="stat-item fade-in">
<h3>500+</h3>
<p>Companies</p>
</div>
<div class="stat-item fade-in delay-1">
<h3>10,000+</</h3>
<p>Job Listings</p>
</div>
<div class="stat-item fade-in delay-2">
<h3>1,000+</h3>
<p>Events</p>
</div>
<div class="stat-item fade-in delay-3">
<h3>50+</h3>
<p>Industries</p>
</div>
</div>
</section>
<!-- How It Works Section -->
<section class="how-it-works">
<div class="section-title fade-in">
<h2>How It Works</h2>
<p>Simple steps to find jobs and events that match your interests.</p>
</div>
<div class="steps-container">
<div class="step fade-in">
<div class="step-content">
<h3>Step 1</h3>
<p>Create an account and complete your professional profile.</p>
</div>
<div class="step-number">1</div>
</div>
<div class="step fade-in delay-1">
<div class="step-content">
<h3>Step 2</h3>
<p>Search for jobs and events using our smart filters.</p>
</div>
<div class="step-number">2</div>
</div>
<div class="step fade-in delay-2">
<div class="step-content">
<h3>Step 3</h3>
<p>Apply to jobs and register for events seamlessly.</p>
</div>
<div class="step-number">3</div>
</div>
<div class="step fade-in delay-3">
<div class="step-content">
<h3>Step 4</h3>
<p>Track applications and event registrations in one place.</p>
</div>
<div class="step-number">4</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="cta">
<div class="cta-container fade-in">
<h2>Ready to Advance Your Career?</h2>
<p>Find the perfect job opportunities and professional events to help you grow.</p>
<a href="search.html" class="btn btn-primary">Explore Jobs</a>
<a href="events.html" class="btn btn-primary">Discover Events</a>
<a href="contact.html" class="btn btn-secondary">Contact Us</a>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer-container">
<div class="footer-column">
<h3>About Us</h3>
<ul class="footer-links">
<li><a href="about.html">Our Story</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="careers.html">Careers</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Resources</h3>
<ul class="footer-links">
<li><a href="jobs.html">Jobs</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Contact</h3>
<ul class="footer-links">
<li><a href="contact.html">Contact Us</a></li>
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="terms.html">Terms of Service</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Follow Us</h3>
<div class="footer-social">
<a href="#" class="social-icon">🔗</a>
<a href="#" class="social-icon">🔗</a>
<a href="#" class="social-icon">🔗</a>
</div>
</div>
</div>
<div class="copyright">
© 2025 JobHub. All rights reserved.
<br>
<p class="cj">CJ_</p>
</div>
</footer>
<script>
const menuBtn = document.getElementById('menuBtn');
const menu = document.getElementById('menu');
menuBtn.addEventListener('click', () => {
menu.classList.toggle('active');
});
</script>
</body>
</html>