-
Notifications
You must be signed in to change notification settings - Fork 260
/
about.html
689 lines (592 loc) · 19.5 KB
/
about.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
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
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - LinkedIn Resume Builder</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&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/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<style>
:root {
--deep-teal: #003d4d;
/* Updated primary color */
--off-white: #f8f9fa;
/* Updated background color */
--dark-slate: #2f4f4f;
/* Text color */
--soft-gold: #d9c79e;
/* Accent color */
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Verdana, Geneva, Tahoma, sans-serif;
outline: none;
border: none;
text-decoration: none;
text-transform: capitalize;
transition: .2s linear;
}
body {
background-color: var(--off-white);
/* Updated background color */
margin: 0;
padding: 0;
}
.header {
background-color: var(--deep-teal);
/* Updated header color */
padding: 20px;
text-align: center;
color: var(--off-white);
/* Text color for better contrast */
}
.header h1 {
margin: 0;
font-size: 36px;
}
.content1 {
display: flex;
justify-content: flex-start;
}
.gif {
margin-left: 100px;
}
.content {
max-width: 70%;
/* Further reduced width to prevent hiding the GIFs */
margin: 30px auto;
/* Centered margin */
background-color: #f5f5f5;
/* Slightly off-white background */
border-radius: 10px;
padding: 20px;
/* Padding to maintain space inside the box */
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
/* Transition for scaling and glow */
}
.content:hover {
transform: scale(1.05);
/* Slightly reduced scale effect for a minimalist look */
box-shadow: 0 0 15px rgba(0, 77, 79, 0.8);
/* Glow effect with Dark Teal color */
transition: transform 0.5s ease, box-shadow 0.5s ease;
/* Ensure smooth transition */
}
.content h2 {
font-size: 28px;
color: var(--dark-slate);
/* Updated heading color */
border-radius: 5px;
padding: 2px 5px;
margin-bottom: 20px;
background-color: var(--soft-gold);
/* Updated background color for h2 */
text-align: center;
/* Center align the heading */
transition: background-color 0.5s ease, color 0.5s ease;
}
.content h2:hover {
background-color: var(--deep-teal);
/* Updated hover effect to match the theme */
color: var(--off-white);
transition: background-color 0.5s ease, color 0.5s ease;
/* Transition for background and color */
}
.content p {
font-size: 18px;
color: var(--dark-slate);
/* Updated paragraph color to Dark Slate */
line-height: 1.6;
margin-bottom: 20px;
text-align: left;
/* Left-align paragraph text */
}
.content ul {
padding-left: 20px;
/* Indent list */
margin-bottom: 20px;
text-align: left;
/* Ensure ul is left aligned */
}
.content ul li {
font-size: 18px;
color: var(--dark-slate);
/* Updated list item color */
margin-bottom: 10px;
text-align: left;
/* Left-align list items */
}
/* footer section styles */
:root {
--deep-teal: #003d4d;
--off-white: #f8f9fa;
--dark-slate: #2f4f4f;
--soft-gold: #d9c79e;
}
.footer {
width: 100%;
background-color: var(--deep-teal);
color: white;
padding: 13px 0;
}
.footer-content {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.ul {
padding: 0;
list-style: none;
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-align: center;
}
.footer-bottom {
text-align: center;
color: #fff;
font-size: 14px;
margin: 0;
margin-bottom: 10px;
}
.footer a {
color: var(--soft-gold);
text-decoration: none;
font-size: 16px;
}
.social-icons {
display: flex;
justify-content: space-between;
margin-top: 20px
}
.social-icons a:hover {
color: var(--light-grey);
transform: scale(1.2) translateY(-5px);
}
.footer a:hover {
text-decoration: underline;
}
.footer-section h3 {
margin-bottom: 14px;
font-size: 28px;
}
/* footer section style ends */
.back-button {
display: block;
text-align: center;
margin-top: 20px;
/* Decrease this value to move the button up */
margin-bottom: 0px;
}
.back-button a {
padding: 10px 20px;
background-color: var(--deep-teal);
/* Updated back button color */
color: var(--off-white);
/* Text color for back button */
text-decoration: none;
border-radius: 5px;
}
.back-button a:hover {
background-color: var(--soft-gold);
/* Updated hover color */
}
/* .navbar {
background-color: var(--deep-teal); /* Updated navbar background color
padding: 31px 20px; /* Increased top and bottom padding
display: flex;
justify-content: space-between;
align-items: center;
}
.navbar img{
width: 100px;
padding: 0px 6px;
margin-right: -64px;
}
.navbar h1 {
color: var(--off-white); /* Changed to use off-white for better contrast
margin: 0;
font-size: 2rem;
margin-left: -38rem; /* Adjust this value to move the logo right
transition: color 0.3s ease; /* Smooth transition for color change
}
.navbar h1:hover {
color: var(--soft-gold); /* Color change on hover
}
.navbar ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
gap: 20px;
margin-right: 30px; /* Adjust this value to move the items left
}
.navbar ul li {
display: inline;
}
.navbar ul li a {
color: var(--off-white); /* Updated navbar link color *
text-decoration: none;
font-size: 18px;
}
.navbar ul li a:hover {
color: var(--soft-gold); /* Updated hover color to Soft Gold *
text-decoration: none;
transition: color 0.3s ease;
} */
/* Responsive adjustments */
@media (max-width: 768px) {
.navbar {
flex-direction: column;
align-items: flex-start;
}
.navbar ul {
flex-direction: column;
gap: 10px;
}
.navbar h1 {
margin-bottom: 10px;
}
.footer-section h3 {
font-size: 18px;
}
.footer a {
font-size: 13px;
}
.footer-section {
margin-bottom: 0;
gap: 18px;
}
.footer-bottom {
font-size: 12px;
margin: 0px;
margin-top: 8px;
}
}
@media (max-width:450px) {
.footer-section h3 {
font-size: 14px;
}
.footer a {
font-size: 11px;
}
.footer-section {
margin-bottom: 0;
}
.footer-bottom {
font-size: 10px;
margin: 0px;
margin-top: 5px;
}
}
#progress-container {
width: 100%;
height: 5px;
background-color: white;
border-radius: 5px;
overflow: hidden;
position: fixed;
top: 0;
left: 0;
z-index: 9999;
}
#progress-bar {
height: 100%;
background-color: #3f10ea;
}
.panel-1 {
padding-top: 40px;
width: 100vw;
height: auto;
position: relative;
}
.about {
width: 100%;
display: flex;
flex-direction: column;
justify-self: center;
align-items: center;
text-align: center;
padding-top: 5rem;
padding-bottom: 5rem;
}
.about h1 {
font-size: 4rem;
margin-bottom: 1rem;
font-weight: 600;
}
.about p {
width: 70%;
font-size: 1.8rem;
}
.cards {
width: 100%;
display: flex;
justify-content: space-evenly;
position: relative;
padding-bottom: 5rem;
}
.card {
width: 30%;
padding: 2rem;
border-radius: 2rem;
background-color: #f8f9fa;
}
.card:hover {
scale: 105%;
}
.card h2 {
font-size: 2.8rem;
margin-bottom: 1rem;
font-weight: 600;
}
.card p {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.card ul li {
font-size: 1.5rem;
}
.card img {
margin-bottom: 2rem;
}
@media (max-width:450px) {
.cards {
flex-direction: column;
justify-content: center;
align-items: center;
gap: 3rem;
}
.card {
width: 90%;
}
}
</style>
</head>
<body>
<div id="progress-container">
<div id="progress-bar"></div>
</div>
<script>
let lastScrollPercentage = 0;
function updateProgressBar() {
const scrollTop = window.scrollY;
const windowHeight = document.documentElement.scrollHeight - window.innerHeight;
const scrollPercentage = (scrollTop / windowHeight) * 100;
const progressBar = document.getElementById('progress-bar');
lastScrollPercentage += (scrollPercentage - lastScrollPercentage) * 0.1;
progressBar.style.width = lastScrollPercentage + '%';
}
window.addEventListener('scroll', updateProgressBar);
</script>
<!-- Navbar -->
<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="auth-and-theme">
<!-- Login/Signup dynamically added, adding JS below, you can see -->
<div id="auth-links">
<a href="signup.html" id="signup-link">Sign Up</a>
<a href="login.html" id="login-link">Login</a>
</div>
<!-- Hamburger menu for small screens -->
<div class="hamburger">
<input type="checkbox" id="menu-toggle" class="menu-toggle">
<label for="menu-toggle" class="fas fa-bars menu-icon"></label>
</div>
<!-- Dark mode toggle, better in last of nav -->
<div class="dark-mod">
<input type="checkbox" name="" id="toggler" class="dark-mode-toggle">
<label for="toggler" class="fas fa-moon theme-mode"></label>
</div>
</div>
</header>
<nav class="mobile-navbar">
<div class="main-links">
<a href="#home">Home</a>
<a href="about.html">About</a>
<a href="resume.html">Build Resume</a>
</div>
<div class="auth-links">
<a href="signup.html">Sign Up</a>
<a href="login.html">Login</a>
</div>
</nav>
<script>
// Get the menu toggle checkbox and mobile navbar elements
const menuToggle = document.getElementById('menu-toggle');
const mobileNavbar = document.querySelector('.mobile-navbar');
// Event listener to show/hide mobile navbar based on checkbox state
menuToggle.addEventListener('change', function () {
if (this.checked) {
mobileNavbar.style.transform = 'translateY(0)'; // Slide down into view
} else {
mobileNavbar.style.transform = 'translateY(-100%)'; // Slide up out of view
}
});
</script>
<script>
document.getElementById('toggler').addEventListener('change', function () {
// document.body.classList.toggle('dark-mode-toggle', this.checked);
// Change icon between darl and light
const icon = document.querySelector('.theme-mode');
if (this.checked) {
icon.classList.remove('fa-sun');
icon.classList.add('fa-moon');
} else {
icon.classList.remove('fa-moon');
icon.classList.add('fa-sun');
}
});
</script>
<!-- main section -->
<div class="panel-1">
<div class="about">
<h1>About</h1>
<p>LinkedIn Resume Builder simplifies your job search by converting your LinkedIn profile into a
professional resume. In just a few clicks, you can generate a polished resume from your profile, saving
time and effort. With accurate data and a selection of professional templates, it’s the easiest way to
create a standout resume quickly and efficiently.</p>
</div>
<div class="cards">
<!-- Our Mission Card -->
<div class="card">
<img src="images/Gemini_Generated_Image_fx9dejfx9dejfx9d.jpg" alt="">
<h2>Our Mission</h2>
<p>
The LinkedIn Resume Builder aims to simplify your job search by transforming your LinkedIn profile
into a polished, professional resume.
We recognize the challenges of job hunting and the importance of having an up-to-date resume. Our
mission is to offer a fast, reliable solution
that saves you time and effort.
</p>
</div>
<!-- How It Works Card -->
<div class="card">
<img src="images/Gemini_Generated_Image_52rg8r52rg8r52rg.jpg" alt="">
<h2>How It Works</h2>
<p>
Our tool seamlessly integrates with LinkedIn to pull essential details from your profile, such as
work experience, education, and skills.
In just a few clicks, you can convert your profile into a beautifully formatted resume. Here’s how
it works:
</p>
<ul>
<li>Enter your LinkedIn profile URL in our resume form.</li>
<li>Select a resume template from our professionally designed options.</li>
<li>Download your resume in PDF format within seconds.</li>
</ul>
</div>
<!-- Why Use LinkedIn Resume Builder Card -->
<div class="card">
<img src="images/Gemini_Generated_Image_ootrdvootrdvootr.jpg" alt="">
<h2>Why Choose Us?</h2>
<p>
Here are some reasons why professionals prefer our tool:
</p>
<ul>
<li><strong>Time-saving:</strong> No manual updates or formatting required.</li>
<li><strong>Professional templates:</strong> Choose from a variety of modern and classic designs.
</li>
<li><strong>User-friendly:</strong> Generate resumes in just a few clicks.</li>
<li><strong>Accurate data:</strong> Information is directly pulled from your LinkedIn profile.</li>
</ul>
</div>
</div>
</div>
<!-- <div class="back-button">
<a href="index.html">Go Back to Home</a>
</div> -->
<!-- footer section -->
<footer class="footer">
<div class="footer-content">
<div class="footer-section">
<h3>About Us</h3>
<ul class="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 class="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 class="ul">
<li><a href="#">FAQ</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="privacypolicy.html">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-x-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>
<style>
.footer-section{
display: flex;
justify-content: left;
flex-direction: column;
}
.ul{
display: flex;
flex-direction: column;
justify-content: left;
}
li{
text-align: left;
}
.footer a{
color: white;
}
.footer p{
margin-top: 2rem;
}
</style>
<script>
const toggler = document.getElementById("toggler");
const body = document.body;
const closeBtn = document.querySelector(".close-btn");
closeBtn.addEventListener("click", function () {
toggler.checked = false;
body.classList.remove("sidebar-active");
});
toggler.addEventListener("change", function () {
if (toggler.checked) {
body.classList.add("sidebar-active");
} else {
body.classList.remove("sidebar-active");
}
});
</script>
</body>
</html>