-
Notifications
You must be signed in to change notification settings - Fork 258
/
resume_tips.html
452 lines (398 loc) · 15.5 KB
/
resume_tips.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume Tips - LinkedIn Resume Builder</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
<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);
margin: 0;
padding: 0;
line-height: 1.6;
font-family: Arial, Helvetica, sans-serif;
}
.gif {
margin-left: 100px;
}
.footer {
width: 100%;
background-color: var(--deep-teal);
color: white;
padding: 13px 0;
}
.footer-content{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.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 */
.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;
}
}
main {
max-width: 1200px;
margin: 30px auto;
padding: 0 20px;
text-align: justify;
font-size: 130%;
}
.summary, .education, .skills, .experience, .achieve, .tips {
background-color: var(--soft-gold);
color: var(--dark-slate);
padding: 30px;
margin-bottom: 25px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 4px 6px #2f4f4f;
border: 1px solid rgba(255, 255, 255, 0.3);
}
.summary:hover, .education:hover, .skills:hover, .experience:hover, .achieve:hover, .tips:hover {
background-color: rgb(185, 210, 210);
color: var(--deep-teal);
transform: translateY(-5px);
box-shadow: 0 8px 16px #2f4f4f;
}
.summary h2,.education h2,.skills h2,.experience h2,.achieve h2,.tips h2{
color: #003d4d;
font-weight: bold;
text-transform: uppercase;
}
#main_heading {
text-align: center;
margin: 10px;
padding: 10px;
text-transform: uppercase;
font-weight: bold;
color: #003d4d;
}
.logo {
font-size: 2rem; /* Decreased size for single line */
color: var(--deep-teal);
font-weight: 600;
margin-bottom:20px;
cursor: pointer; /* Change cursor to pointer */
}
#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;
}
</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 -->
<nav class="navbar">
<img src="images/logo.png" alt="logo">
<h1>Resum Resume</h1>
<nav class="navbar">
<div class="tabs-container"></div>
<a class="tab" href="#home">Home</a>
<a class="tab" href="about.html">About</a>
<a class="tab" href="resume.html">Build Resume</a>
<a class="tab" href="resume_tips.html">Resume Tips</a>
<a class="tab" href="signup.html">Sign Up</a>
<a class="tab" href="login.html">Login</a>
</div>
</nav>
</nav>
<h1 id="main_heading">Ace Your Resume: Essential Tips</h1>
<main>
<div class="summary">
<h2>How To Write a Strong Professional Summary?</h2>
<br>
<p>A resume summary, also known as a professional summary or summary statement, is a short description at the top of your resume that describes your experience, qualities and skills. Your professional summary is your first impression. Make it count!</p>
<br>
<ul>
<li>Length: Keep it concise—2-3 sentences long.</li>
<li>Customization: Tailor it for each job application using keywords from the job description.</li>
<li>Professional Background: Include your job title, years of experience, and relevant industries.</li>
<li>Core Skills: Mention both hard and soft skills pertinent to the role in short.</li>
<li>Value Proposition: Explain how you can contribute to the employer’s success.</li>
</ul>
<br>
<p>
<h3>Example: For a Recent Graduate</h3>
Motivated Computer Science graduate with hands-on software development experience through internships. Proficient in Python and Java, with a solid foundation in data structures and algorithms. Demonstrated strong analytical and problem-solving skills through academic projects, including a web application that enhanced user engagement by 30%. Eager to apply technical skills and passion for technology to contribute to a dynamic tech team while continuing to grow professionally.
<p>
</div>
<div class="education">
<h2>Education Section</h2>
<br>
<p>Your education background is important, especially if you are a recent graduate.</p>
<br>
<ul>
<li>Order: List your education in reverse chronological order (most recent first).</li>
<li>Degree: Specify your degree and major (if applicable).</li>
<li>Institution: Name the school, college, or university.</li>
<li>Graduation Date: Include month and year.</li>
<li>GPA/Percentage: Include if it's impressive.</li>
</ul>
</div>
<div class="skills">
<h2>Highlighting Skills Effectively</h2>
<br>
<p>Make sure to showcase the skills that set you apart.</p>
<br>
<ul>
<li>Relevance: Tailor skills to the job description.</li>
<li>Categorization: Categorize the skills into hard skills (field related skills) as well as soft skills (interpersonal skills).</li>
<li>Be honest: Do not list skills you don't possess.</li>
<li>Avoid Overloading: Limit to 8-12 relevant skills.</li>
</ul>
</div>
<div class="experience">
<h2>Detailing Work Experience</h2>
<br>
<p>Your work experience section should showcase your career journey.</p>
<br>
<ul>
<li>Reverse Chronological Order: List jobs starting with the most recent position.</li>
<li>Include Key Information: Job Title, Company Name, Location, Dates of Employment.</li>
<li>Quantify Achievements: Whenever possible, include numbers or metrics to showcase your accomplishments (e.g., “Increased sales by 20%”).</li>
<li>Projects: If applicable, mention significant projects and your role in them.</li>
</ul>
</div>
<div class="achieve">
<h2>Achievements and awards section</h2>
<br>
<p>Mentioning achievements on your resume demonstrates your skills, value, and contributions, helping you stand out to potential employers.</p>
<br>
<ul>
<li>Relevance: Include achievements that are relevant to the job you’re applying for. This could include academic honors, professional awards, or notable projects.</li>
<li>Specificity: Be specific about each achievement. Include the name of the award or recognition, the organization that granted it, and the date received.</li>
<li>Quantify When Possible: Use numbers to illustrate the impact of your achievements (e.g., “Awarded Employee of the Month for increasing sales by 25%”).</li>
</ul>
</div>
<div class="tips">
<h2>Additional Tips</h2>
<br>
<p>The way your resume looks can affect its readability.</p>
<br>
<ul>
<li>Use a clean and professional layout.</li>
<li>Keep your font size between 10-12 points.</li>
<li>Use consistent formatting for headings and bullet points.</li>
<li>Leave adequate white space for easy reading.</li>
<li>Avoid using jargons.</li>
<li>Double-check for typos, grammar mistakes, and inaccuracies.</li>
</ul>
</div>
</main>
<!-- 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="#">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>
<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>