forked from GarimaSingh0109/Resum-Resume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
479 lines (382 loc) · 12.7 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
<!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/5.15.3/css/all.min.css">
<link rel="icon" href="images/favicon-removebg-preview.png">
<style>
:root {
--purple: #aca7eb;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
border: none;
text-decoration: none;
text-transform: capitalize;
transition: .2s linear;
}
html {
font-size: 62.5%;
scroll-behavior: smooth;
scroll-padding-top: 6rem;
overflow-x: hidden;
}
header {
position: fixed;
top: 0;
left: 0;
right: 0;
background: #fff;
padding: 2rem 9%;
display: flex;
align-items: center;
justify-content: space-between;
z-index: 1000;
box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
}
header .logo {
font-size: 3rem;
color: #3f10ea;
font-weight: bolder;
}
header .logo:hover {
font-size: 3rem;
color: #f03c0b;
font-weight: bolder;
text-decoration: none;
}
header .logo span {
color: var(--#3f10ea);
}
header .navbar a {
font-size: 2rem;
padding: 0 1.5rem;
color: #666;
}
header .navbar a:hover {
color: var(--red);
text-decoration: none;
}
header .icons a {
font-size: 2.5rem;
color: #333;
margin-left: 1.5rem;
}
header .icons a:hover {
text-decoration: none;
color: var(--purple);
}
header #toggler {
display: none;
}
header .fa-bars {
font-size: 3rem;
color: #333;
border-radius: .5rem;
padding: .5rem 1.5rem;
cursor: pointer;
border: .1rem solid rgba(0, 0, 0, 0.3);
display: none;
}
.footer-login {
margin-top: 20px;
}
.footer-login p {
color: #666;
font-size: 14px;
}
.footer-login a {
color: #aca7eb;
text-decoration: none;
}
.footer-login a:hover {
text-decoration: underline;
}
.footer {
background-color: #1a1a1a;
color: #fff;
padding: 40px 0;
font-size: 14px;
}
.footer .footer-content {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.footer .footer-section {
flex-basis: 23%;
margin-bottom: 20px;
}
.footer .footer-section h3 {
font-size: 18px;
margin-bottom: 20px;
font-weight: 600;
color: #fff;
border-bottom: 2px solid #00c6ff;
padding-bottom: 10px;
}
.footer .footer-section ul {
list-style: none;
padding: 0;
}
.footer .footer-section ul li {
margin-bottom: 10px;
}
.footer .footer-section ul li a {
color: #ccc;
text-decoration: none;
transition: color 0.3s ease;
}
.footer .footer-section ul li a:hover {
color: #00c6ff;
}
.footer .footer-section .social-icons a {
margin-right: 10px;
color: #ccc;
text-decoration: none;
font-size: 18px;
transition: color 0.3s ease;
}
.footer .footer-section .social-icons a:hover {
color: #00c6ff;
}
.footer-bottom {
text-align: center;
padding: 20px 0;
background-color: #111;
font-size: 12px;
}
.footer-bottom p {
margin: 0;
color: #ccc;
}
@media (max-width: 768px) {
.footer .footer-content {
flex-direction: column;
align-items: center;
}
.footer .footer-section {
flex-basis: 100%;
text-align: center;
}
.footer .footer-section ul li {
margin-bottom: 8px;
}
}
@media (max-width:991px) {
html {
font-size: 55%;
}
header {
padding: 2rem;
}
}
@media (max-width:768px) {
html .fa-bars {
display: block;
}
header .navbar {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #eee;
border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
header #toggler:checked~.navbar {
clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
header .navbar a {
margin: 1.5rem;
padding: 1.5rem;
background: #fff;
border: 0.1rem solid rgba(0, 0, 0, 0.1);
display: block;
}
.icons-container .icons h3 {
font-size: 2rem;
}
.icons-container .icons span {
font-size: 1.7rem;
}
}
.footer-signup {
margin-top: 20px;
}
.footer-signup p {
color: #666;
font-size: 14px;
}
.footer-signup a {
color: var(--purple);
text-decoration: none;
}
.footer-signup a:hover {
text-decoration: underline;
}
.content1 {
margin-top: 150px;
display: flex;
justify-content: flex-start;
}
.gif {
margin-left: 100px;
}
.content {
max-width: 800px;
margin: 50px auto;
background-color: #fff;
border-radius: 10px;
padding: 30px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out;
box-shadow: 0 12px 12px;
}
.content:hover {
transform: scale(1.1);
transform: 0.5s ease;
}
.content h2 {
font-size: 28px;
color: white;
border-radius: 5px;
padding: 2px 5px;
margin-bottom: 20px;
background-color: black;
text-align: center;
}
.content h2:hover {
background-color: #0073b1;
}
.content p {
font-size: 18px;
color: #555;
line-height: 1.6;
margin-bottom: 20px;
}
.content ul {
padding-left: 20px;
margin-bottom: 20px;
}
.content ul li {
font-size: 18px;
color: #555;
margin-bottom: 10px;
}
/* Main Content Placeholder */
.content {
padding: 20px;
}
/* Responsive adjustments */
</style>
</head>
<body>
<!-- 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="index.html">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>
<div class="content1">
<img src="Li.gif" alt="" height="150px">
<div class="content">
<div class="action">
<h2>Our Mission</h2>
<p>
The LinkedIn Resume Builder is designed to make your job search easier and faster by transforming
your LinkedIn profile into a polished, professional resume.
We understand the challenges of job hunting and the importance of having an up-to-date resume. Our
mission is to provide a simple, fast, and reliable solution
that saves you time and effort.
</p>
</div>
<h2>How It Works</h2>
<p>
Our tool integrates with LinkedIn to gather essential details from your profile, including your work
experience, education, and skills.
With just a few clicks, you can convert your profile into a beautifully formatted resume. Here’s a
simple breakdown of how it works:
</p>
<ul>
<li>Enter your LinkedIn profile URL in our resume form.</li>
<li>Choose a resume template from our professionally designed options.</li>
<li>Generate a downloadable resume in PDF format within seconds.</li>
</ul>
<h2>Why Use LinkedIn Resume Builder?</h2>
<p>
Here are a few reasons why professionals prefer our tool:
</p>
<ul>
<li><strong>Time-saving:</strong> No need to manually update or format your resume.</li>
<li><strong>Professional templates:</strong> Choose from various modern and classic designs.</li>
<li><strong>Easy to use:</strong> Generate resumes in just a few clicks.</li>
<li><strong>Accurate data:</strong> Directly pulls information from your LinkedIn profile.</li>
</ul>
</div>
<img src="Li.gif" alt="" height="150px">
</div>
<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>
</body>
</html>