forked from GarimaSingh0109/Resum-Resume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
504 lines (433 loc) · 13.9 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LinkedIn Resume Builder - Home</title>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;400&display=swap"
rel="stylesheet"
/>
<link rel="icon" href="images/favicon-removebg-preview.png" />
<link rel="stylesheet" href="style.css" />
<style>
<label for="dark-mode-toggle">
<input type="checkbox" id="dark-mode-toggle" />
Toggle Dark Mode
</label>
/* Features Section */
.features {
padding: 60px 20px;
background-color: #f9f9f9;
}
.features h2 {
text-align: center;
color: #333;
margin-bottom: 40px;
font-size: 32px;
}
.features-cards {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
max-width: 1200px;
margin: 0 auto;
}
.features-card {
background-color: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
width: calc(25% - 30px);
text-align: center;
transition: transform 0.3s, box-shadow 0.3s, z-index 0.3s;
position: relative;
z-index: 1;
}
.features-card:hover {
transform: translateY(-10px) scale(1.1);
box-shadow: 0 4px 8px #0073b1;
z-index: 3;
}
.features-card img {
width: 260px;
height: 260px;
margin-bottom: 15px;
height: 50%; /* Set height to 50% of the card */
/* /* object-fit: cover; */
border-radius: 10px;
transition: transform 0.3s ease;
}
.features-card:hover {
transform: translateY(-5px);
}
.features-card img {
width: 60px;
height: 60px;
margin-bottom: 20px;
}
.features-card h3 {
color: #aca7eb;
margin: 15px 0;
font-size: 22px;
}
.features-card p {
color: #666;
font-size: 16px;
}
/* Testimonials Section */
.testimonials {
padding: 60px 20px;
background-color: #ffffff;
}
.testimonials h2 {
text-align: center;
color: #333;
margin-bottom: 40px;
font-size: 32px;
}
.testimonial-cards {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
max-width: 1200px;
margin: 0 auto;
}
.testimonial-card {
background-color: #f9f9f9;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
width: calc(33.33% - 30px);
text-align: center;
}
.testimonial-card img {
width: 80px;
height: 80px;
border-radius: 50%;
margin-bottom: 20px;
}
.testimonial-card h3 {
color: #aca7eb;
margin: 10px 0;
font-size: 20px;
}
.testimonial-card p {
color: #666;
font-size: 16px;
font-style: italic;
}
</style>
</head>
<body>
<!-- header section starts -->
<header>
<input type="checkbox" name="" id="toggler" />
<label for="toggler" class="fas fa-bars"></label>
<a href="#" class="logo">Resum Resume<span>.</span></a>
<nav class="navbar">
<a href="#home">Home</a>
<a href="about.html">About</a>
<a href="resume.html">Build Resume</a>
<a href="signup.html">Sign Up</a>
<a href="login.html">Login</a>
</nav>
<div class="icons">
<a href="about.html" class="fas fa-info-circle"></a>
<a href="#" class="fas fa-envelope"></a>
<a href="login.html" id="loginIcon" class="fas fa-user"></a>
</div>
</header>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="Home">
<div class="content">
<h3 class="poppins-regular">Build Your Resume in Seconds from LinkedIn</h3>
<p>
Easily generate a professional resume using your LinkedIn profile.
Select a template, enter your LinkedIn URL, and get a downloadable
resume in a few clicks. Save time and create a resume that stands out.
</p>
<a href="signup.html" class="btn">Get Started</a>
</div>
</section>
<!-- home section ends-->
/* Footer Styles */
.footer {
background-color: #aca7eb; /* Keeping the existing background color */
color: #ffffff;
padding: 40px 0;
}
.footer-content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.footer-section {
flex: 1;
margin-bottom: 20px;
min-width: 200px;
}
/* Making the text section more responsive */
.text {
padding-right: 20px;
max-width: 50%;
}
.image {
max-width: 50%;
}
.image img {
width: 100%;
height: auto;
border-radius: 5px;
}
/* Footer headings */
.footer-section h3 {
font-size: 20px; /* Increased font size for better readability */
font-weight: 800; /* Bolder text for stronger emphasis */
margin-bottom: 15px;
color: #ffffff;
}
/* Footer links */
.footer-section ul {
list-style-type: none;
padding: 0;
}
.footer-section ul li {
margin-bottom: 10px; /* Added some extra space between links */
}
.footer-section ul li a {
color: #ffffff; /* Brighter color to make links stand out */
text-decoration: none;
font-weight: 600; /* Bolder links */
transition: color 0.3s ease, font-size 0.3s ease; /* Smooth transition for hover effect */
}
.footer-section ul li a:hover {
color: #ffffff;
text-decoration: underline;
font-size: 1.1em; /* Slight size increase on hover */
}
/* Social media icons styling */
.social-icons {
margin-top: 15px;
}
.social-icons a {
color: #ffffff;
font-size: 24px; /* Increased size for more visibility */
margin-right: 15px;
transition: color 0.3s ease, transform 0.3s ease; /* Adding hover effect transition */
}
.social-icons a:hover {
color: #ffdd57; /* Hover effect on social media icons */
transform: scale(1.2); /* Slight zoom effect on hover */
}
/* Footer bottom section (copyright) */
.footer-bottom {
text-align: center;
padding-top: 20px;
margin-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.2); /* Making the border more visible */
}
.footer-bottom p {
font-size: 16px; /* Increased font size for better readability */
font-weight: 600; /* Bolder text for emphasis */
color: #ffffff;
}
/* Responsive Styles */
@media (max-width: 768px) {
.navbar {
flex-direction: column;
align-items: flex-start;
}
.navbar ul {
flex-direction: column;
gap: 10px;
margin-top: 10px;
}
.hero-content {
flex-direction: column;
}
.hero-text {
padding-right: 0;
margin-bottom: 30px;
}
.features-card, .testimonial-card {
width: 100%;
}
.footer-content {
flex-direction: column;
}
.footer-section {
margin-bottom: 30px;
}
}
</style>
</head>
<body>
<!-- header section starts -->
<header>
<input type="checkbox" name="" id="toggler">
<label for="toggler" class="fas fa-bars"></label>
<a href="#" class="logo">Resum Resume<span>.</span></a>
<nav class="navbar">
<a href="#home">Home</a>
<a href="about.html">About</a>
<a href="resume.html">Build Resume</a>
<a href="signup.html">Sign Up</a>
<a href="login.html">Login</a>
<a href="comment.html">Login</a>
</nav>
<div class="icons">
<a href="about.html" class="fas fa-info-circle"></a>
<a href="#" class="fas fa-envelope"></a>
<a href="login.html" id="loginIcon" class="fas fa-user"></a>
</div>
</header>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="Home">
<div class="content">
<h3>Build Your Resume in Seconds from LinkedIn</h3>
<p>Easily generate a professional resume using your LinkedIn profile. Select a template, enter your LinkedIn URL,
and get a downloadable resume in a few clicks. Save time and create a resume that stands out. </p>
<a href="signup.html" class="btn">Get Started</a>
</div>
</section>
<!-- home section ends-->
<!-- Features Section -->
<section class="features">
<h2>Our Features</h2>
<div class="features-cards">
<div class="features-card">
<img
src="assets/joao-ferrao-4YzrcDNcRVg-unsplash.jpg"
alt="Easy to Use"
/>
<h3>Easy to Use</h3>
<p>
Create a professional resume effortlessly with our user-friendly
interface.
</p>
</div>
<div class="features-card">
<img src="assets/instant resume.jpg" alt="Instant Resume" />
<h3>Instant Resume</h3>
<p>
Generate a polished resume in seconds using your LinkedIn profile
data.
</p>
</div>
<div class="features-card">
<img src="assets/securedata.jpg" alt="Secure Data" />
<h3>Secure Data</h3>
<p>
Your personal information is safe with our secure and encrypted
platform.
</p>
</div>
<div class="features-card">
<img src="assets/support.jpg" alt="24/7 Support" />
<h3>24/7 Support</h3>
<p>
Our dedicated support team is available round the clock to assist
you.
</p>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="testimonials">
<h2>What Our Users Say</h2>
<div class="testimonial-cards">
<div class="testimonial-card">
<img src="assets/jondoe.jpg" alt="User 1" />
<h3>Jane Doe</h3>
<p>
"This resume builder transformed my LinkedIn profile into a
professional resume effortlessly. Highly recommended!"
</p>
</div>
<div class="testimonial-card">
<img src="assets/john_smith.jpg" alt="User 2" />
<h3>John Smith</h3>
<p>
"I was amazed at how quickly I was able to generate a resume. The
process was smooth and the result was perfect."
</p>
</div>
<div class="testimonial-card">
<img src="assets/emily_johnson.jpg" alt="User 3" />
<h3>Emily Johnson</h3>
<p>
"The platform is user-friendly and secure. I felt confident that my
data was protected. Great service!"
</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<div class="footer-section">
<h3>About Us</h3>
<ul>
<li><a href="#">Our Story</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">Careers</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Services</h3>
<ul>
<li><a href="#">Resume Builder</a></li>
<li><a href="#">CV Templates</a></li>
<li><a href="#">Career Advice</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Support</h3>
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Connect With Us</h3>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Resume Builder. All rights reserved.</p>
</div>
</footer>
<!-- Scripts -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>