-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.html
294 lines (282 loc) · 12.5 KB
/
cv.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>John Doe | Senior Software Engineer</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
@page {
margin: 0.75in;
size: letter;
}
body {
font-family: 'Inter', sans-serif;
background-color: white;
color: #1a1a1a;
line-height: 1.6;
width: 8.5in; /* US Letter width */
max-width: 100%;
margin: 0 auto;
padding: 0 0.75in;
box-sizing: border-box;
}
.section-title {
color: #2563eb;
font-size: 1.5rem;
font-weight: 600;
border-bottom: 2px solid #2563eb;
margin-bottom: 1rem;
padding-bottom: 0.25rem;
}
.skill-item {
display: inline-block;
border: 1px solid #2563eb;
color: #2563eb;
padding: 0.25rem 0.75rem;
margin: 0.25rem;
border-radius: 4px;
font-size: 0.875rem;
}
@media print {
body {
width: 100%;
padding: 0;
margin: 0;
}
.no-print {
display: none;
}
/* Force flex layout in print */
.print\:flex-row {
flex-direction: row !important;
}
.print\:text-left {
text-align: left !important;
}
.print\:items-end {
align-items: flex-end !important;
}
a {
text-decoration: none;
color: #1a1a1a;
}
/* Ensure content stays within page bounds */
* {
overflow: visible !important;
}
/* Prevent unwanted page breaks */
.page-break-inside-avoid {
page-break-inside: avoid;
}
}
</style>
</head>
<body class="print:bg-white">
<div class="w-full mx-auto py-8">
<!-- Header Section -->
<div class="mb-8">
<div class="flex flex-row items-center justify-between print:flex-row">
<div class="text-left print:text-left">
<h1 class="text-4xl font-bold text-[#2563eb] mb-2">John Doe</h1>
<h2 class="text-xl text-gray-700 font-medium">Senior Software Engineer</h2>
</div>
<div class="flex flex-col items-end space-y-2 print:items-end">
<a href="mailto:[email protected]" class="text-gray-600 hover:text-blue-500 transition-colors">
<i class="fas fa-envelope mr-2"></i>[email protected]
</a>
<a href="tel:1234567890" class="text-gray-600 hover:text-blue-500 transition-colors">
<i class="fas fa-phone mr-2"></i>(123) 456-7890
</a>
<div class="text-gray-600">
<i class="fas fa-map-marker-alt mr-2"></i>New York, NY
</div>
<a href="https://linkedin.com/in/johndoe" target="_blank" class="text-gray-600 hover:text-blue-500 transition-colors">
<i class="fab fa-linkedin mr-2"></i>linkedin.com/in/johndoe
</a>
</div>
</div>
</div>
<!-- Summary Section -->
<div class="mb-8">
<h2 class="section-title">Professional Summary</h2>
<p class="text-gray-700 leading-relaxed">
Results-driven software engineer with 5+ years of experience in developing scalable web applications and implementing efficient solutions. Proven track record in leading technical teams and delivering high-impact projects. Passionate about creating innovative solutions and maintaining code quality.
</p>
</div>
<!-- Experience Section -->
<div class="mb-8">
<h2 class="section-title">Work Experience</h2>
<div class="mb-8">
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-2">
<h3 class="text-xl font-semibold text-gray-800">Tech Solutions Inc.</h3>
<span class="text-blue-500 font-medium">Jan 2020 - Present</span>
</div>
<h4 class="text-lg text-gray-600 mb-3">Senior Software Engineer</h4>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
<span class="text-gray-700">Led the development of a microservices-based architecture that improved system scalability by 200%</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
<span class="text-gray-700">Managed a team of 5 developers and implemented agile methodologies that increased productivity by 40%</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
<span class="text-gray-700">Optimized database queries resulting in a 50% reduction in response time</span>
</li>
</ul>
</div>
<div>
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-2">
<h3 class="text-xl font-semibold text-gray-800">Digital Innovations Corp</h3>
<span class="text-blue-500 font-medium">Jun 2017 - Dec 2019</span>
</div>
<h4 class="text-lg text-gray-600 mb-3">Software Developer</h4>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
<span class="text-gray-700">Developed and maintained RESTful APIs serving 100k+ daily users</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
<span class="text-gray-700">Implemented automated testing procedures that reduced bug reports by 60%</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
<span class="text-gray-700">Collaborated with UX team to improve user interface, resulting in 35% increase in user satisfaction</span>
</li>
</ul>
</div>
</div>
<!-- Education Section -->
<div data-aos="fade-up" class="card p-8 mb-8">
<h2 class="text-2xl font-bold mb-6 gradient-text">Education</h2>
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-2">
<h3 class="text-xl font-semibold text-gray-800">University of Technology</h3>
<span class="text-blue-500 font-medium">2013 - 2017</span>
</div>
<h4 class="text-lg text-gray-600 mb-3">Bachelor of Science in Computer Science</h4>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-graduation-cap text-blue-500 mt-1 mr-2"></i>
<span class="text-gray-700">GPA: 3.8/4.0</span>
</li>
<li class="flex items-start">
<i class="fas fa-award text-blue-500 mt-1 mr-2"></i>
<span class="text-gray-700">Dean's List: All semesters</span>
</li>
<li class="flex items-start">
<i class="fas fa-project-diagram text-blue-500 mt-1 mr-2"></i>
<span class="text-gray-700">Senior Project: AI-powered Traffic Management System</span>
</li>
</ul>
</div>
<!-- Skills Section -->
<div data-aos="fade-up" class="card p-8 mb-8">
<h2 class="text-2xl font-bold mb-6 gradient-text">Skills</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<h3 class="text-lg font-semibold text-gray-800 mb-3">Technical Proficiency</h3>
<canvas id="technicalChart" width="400" height="300"></canvas>
</div>
<div>
<h3 class="text-lg font-semibold text-gray-800 mb-3">Soft Skills Rating</h3>
<canvas id="softSkillsChart" width="400" height="300"></canvas>
</div>
</div>
</div>
<!-- Certifications Section -->
<div data-aos="fade-up" class="card p-8">
<h2 class="text-2xl font-bold mb-6 gradient-text">Certifications</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<div class="p-4 bg-gray-50 rounded-lg text-center">
<i class="fab fa-aws text-3xl text-blue-500 mb-2"></i>
<p class="text-gray-700">AWS Certified Solutions Architect</p>
</div>
<div class="p-4 bg-gray-50 rounded-lg text-center">
<i class="fab fa-google text-3xl text-blue-500 mb-2"></i>
<p class="text-gray-700">Google Cloud Professional Developer</p>
</div>
<div class="p-4 bg-gray-50 rounded-lg text-center">
<i class="fas fa-certificate text-3xl text-blue-500 mb-2"></i>
<p class="text-gray-700">Certified Scrum Master</p>
</div>
</div>
</div>
</div>
<script>
AOS.init({
duration: 1000,
once: true,
offset: 100
});
// Technical Skills Chart
const technicalCtx = document.getElementById('technicalChart').getContext('2d');
new Chart(technicalCtx, {
type: 'radar',
data: {
labels: ['JavaScript/TypeScript', 'Python', 'Java', 'SQL', 'React.js', 'Node.js'],
datasets: [{
label: 'Skill Level',
data: [95, 90, 85, 88, 92, 89],
backgroundColor: 'rgba(37, 99, 235, 0.2)',
borderColor: 'rgba(37, 99, 235, 1)',
pointBackgroundColor: 'rgba(37, 99, 235, 1)',
pointBorderColor: '#fff',
}]
},
options: {
scales: {
r: {
beginAtZero: true,
max: 100,
ticks: {
stepSize: 20
}
}
},
plugins: {
legend: {
display: false
}
}
}
});
// Soft Skills Chart
const softSkillsCtx = document.getElementById('softSkillsChart').getContext('2d');
new Chart(softSkillsCtx, {
type: 'bar',
data: {
labels: ['Leadership', 'Problem Solving', 'Communication', 'Project Management'],
datasets: [{
data: [92, 95, 88, 90],
backgroundColor: 'rgba(37, 99, 235, 0.7)',
borderColor: 'rgba(37, 99, 235, 1)',
borderWidth: 1
}]
},
options: {
indexAxis: 'y',
scales: {
x: {
beginAtZero: true,
max: 100
}
},
plugins: {
legend: {
display: false
}
}
}
});
</script>
</body>
</html>