File size: 26,366 Bytes
e90d814 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Professional CV</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #f8fafc;
}
.timeline-item:not(:last-child)::after {
content: '';
position: absolute;
left: 16px;
top: 32px;
height: calc(100% - 32px);
width: 2px;
background-color: #e2e8f0;
}
.skill-bar {
height: 8px;
border-radius: 4px;
background-color: #e2e8f0;
}
.skill-progress {
height: 100%;
border-radius: 4px;
background-color: #3b82f6;
transition: width 1s ease-in-out;
}
.dark-mode {
background-color: #1e293b;
color: #f8fafc;
}
.dark-mode .card {
background-color: #334155;
border-color: #475569;
}
.dark-mode .timeline-item:not(:last-child)::after {
background-color: #475569;
}
.dark-mode .skill-bar {
background-color: #475569;
}
.print-only {
display: none;
}
@media print {
.no-print {
display: none;
}
.print-only {
display: block;
}
body {
background-color: white !important;
color: black !important;
font-size: 12pt;
}
.card {
box-shadow: none !important;
border: none !important;
page-break-inside: avoid;
}
.container {
max-width: 100% !important;
padding: 0 !important;
}
.section {
margin-bottom: 20px !important;
}
}
</style>
</head>
<body class="text-gray-800 transition-colors duration-300">
<div class="container mx-auto px-4 py-8 max-w-6xl">
<!-- Header with Theme Toggle -->
<header class="flex justify-between items-center mb-8 no-print">
<h1 class="text-3xl font-bold bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent">MY CV</h1>
<button id="themeToggle" class="p-2 rounded-full bg-gray-200 dark:bg-gray-700 text-gray-700 dark:text-gray-200">
<i class="fas fa-moon dark:hidden"></i>
<i class="fas fa-sun hidden dark:inline"></i>
</button>
</header>
<!-- Main Content -->
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
<!-- Left Column -->
<div class="lg:col-span-1 space-y-6">
<!-- Profile Card -->
<div class="card bg-white rounded-xl shadow-md p-6 border border-gray-200 transition-all hover:shadow-lg">
<div class="flex flex-col items-center">
<div class="w-32 h-32 rounded-full overflow-hidden border-4 border-blue-100 mb-4">
<img src="https://images.unsplash.com/photo-1633332755192-727a05c4013d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1180&q=80"
alt="Profile Picture" class="w-full h-full object-cover">
</div>
<h2 class="text-2xl font-bold text-center">John Doe</h2>
<p class="text-blue-600 font-medium">Senior Web Developer</p>
<div class="flex space-x-4 mt-4">
<a href="#" class="text-gray-600 hover:text-blue-600 transition-colors">
<i class="fab fa-linkedin text-xl"></i>
</a>
<a href="#" class="text-gray-600 hover:text-blue-600 transition-colors">
<i class="fab fa-github text-xl"></i>
</a>
<a href="#" class="text-gray-600 hover:text-blue-600 transition-colors">
<i class="fab fa-twitter text-xl"></i>
</a>
</div>
</div>
<div class="mt-6 pt-6 border-t border-gray-200">
<div class="flex items-center mb-3">
<i class="fas fa-envelope text-blue-500 mr-3"></i>
<span>john.doe@example.com</span>
</div>
<div class="flex items-center mb-3">
<i class="fas fa-phone text-blue-500 mr-3"></i>
<span>+1 (555) 123-4567</span>
</div>
<div class="flex items-center">
<i class="fas fa-map-marker-alt text-blue-500 mr-3"></i>
<span>San Francisco, CA</span>
</div>
</div>
</div>
<!-- Skills Card -->
<div class="card bg-white rounded-xl shadow-md p-6 border border-gray-200">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-code text-blue-500 mr-2"></i>
Technical Skills
</h3>
<div class="space-y-4">
<div>
<div class="flex justify-between mb-1">
<span>JavaScript/TypeScript</span>
<span>90%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 90%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span>React.js</span>
<span>85%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 85%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span>Node.js</span>
<span>80%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 80%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span>HTML/CSS</span>
<span>95%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 95%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span>Python</span>
<span>75%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 75%"></div>
</div>
</div>
</div>
</div>
<!-- Languages Card -->
<div class="card bg-white rounded-xl shadow-md p-6 border border-gray-200">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-language text-blue-500 mr-2"></i>
Languages
</h3>
<div class="space-y-3">
<div>
<div class="flex justify-between mb-1">
<span>English</span>
<span>Native</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 100%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span>Spanish</span>
<span>Professional</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 70%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span>French</span>
<span>Intermediate</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 50%"></div>
</div>
</div>
</div>
</div>
<!-- Print Button -->
<button id="printButton" class="no-print w-full py-3 px-4 bg-blue-600 hover:bg-blue-700 text-white rounded-lg font-medium transition-colors flex items-center justify-center">
<i class="fas fa-print mr-2"></i>
Print CV
</button>
</div>
<!-- Right Column -->
<div class="lg:col-span-2 space-y-6">
<!-- About Me -->
<div class="card bg-white rounded-xl shadow-md p-6 border border-gray-200">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-user text-blue-500 mr-2"></i>
About Me
</h3>
<p class="text-gray-700">
Passionate web developer with 8+ years of experience building responsive, user-friendly web applications.
Specialized in JavaScript frameworks with a strong focus on React.js and Node.js.
Proven track record of delivering high-quality software solutions that drive business growth and improve user experience.
</p>
</div>
<!-- Experience -->
<div class="card bg-white rounded-xl shadow-md p-6 border border-gray-200">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-briefcase text-blue-500 mr-2"></i>
Work Experience
</h3>
<div class="space-y-6">
<!-- Timeline Item -->
<div class="timeline-item relative pl-8">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-blue-500 border-4 border-blue-100"></div>
<div class="flex flex-col sm:flex-row sm:justify-between sm:items-center mb-1">
<h4 class="font-bold text-lg">Senior Frontend Developer</h4>
<span class="text-sm text-gray-600 bg-blue-100 px-2 py-1 rounded">2020 - Present</span>
</div>
<div class="text-blue-600 font-medium mb-2">TechSolutions Inc.</div>
<p class="text-gray-700">
Lead a team of 5 developers to build a SaaS platform with React.js and Node.js.
Improved application performance by 40% through code optimization and implementing lazy loading.
Mentored junior developers and established coding standards.
</p>
</div>
<!-- Timeline Item -->
<div class="timeline-item relative pl-8">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-blue-500 border-4 border-blue-100"></div>
<div class="flex flex-col sm:flex-row sm:justify-between sm:items-center mb-1">
<h4 class="font-bold text-lg">Web Developer</h4>
<span class="text-sm text-gray-600 bg-blue-100 px-2 py-1 rounded">2017 - 2020</span>
</div>
<div class="text-blue-600 font-medium mb-2">Digital Creations LLC</div>
<p class="text-gray-700">
Developed and maintained 15+ client websites using WordPress and custom solutions.
Implemented responsive designs that increased mobile traffic by 35%.
Automated deployment processes reducing release time by 60%.
</p>
</div>
<!-- Timeline Item -->
<div class="timeline-item relative pl-8">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-blue-500 border-4 border-blue-100"></div>
<div class="flex flex-col sm:flex-row sm:justify-between sm:items-center mb-1">
<h4 class="font-bold text-lg">Junior Developer</h4>
<span class="text-sm text-gray-600 bg-blue-100 px-2 py-1 rounded">2015 - 2017</span>
</div>
<div class="text-blue-600 font-medium mb-2">StartUp Ventures</div>
<p class="text-gray-700">
Assisted in developing an e-commerce platform with AngularJS.
Fixed 200+ bugs and implemented new features that increased conversion rate by 15%.
Participated in agile development processes and code reviews.
</p>
</div>
</div>
</div>
<!-- Education -->
<div class="card bg-white rounded-xl shadow-md p-6 border border-gray-200">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-graduation-cap text-blue-500 mr-2"></i>
Education
</h3>
<div class="space-y-6">
<!-- Timeline Item -->
<div class="timeline-item relative pl-8">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-blue-500 border-4 border-blue-100"></div>
<div class="flex flex-col sm:flex-row sm:justify-between sm:items-center mb-1">
<h4 class="font-bold text-lg">MSc in Computer Science</h4>
<span class="text-sm text-gray-600 bg-blue-100 px-2 py-1 rounded">2013 - 2015</span>
</div>
<div class="text-blue-600 font-medium mb-2">Stanford University</div>
<p class="text-gray-700">
Specialized in Artificial Intelligence and Web Technologies.
Thesis on "Optimizing Web Applications Using Machine Learning" awarded distinction.
</p>
</div>
<!-- Timeline Item -->
<div class="timeline-item relative pl-8">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-blue-500 border-4 border-blue-100"></div>
<div class="flex flex-col sm:flex-row sm:justify-between sm:items-center mb-1">
<h4 class="font-bold text-lg">BSc in Software Engineering</h4>
<span class="text-sm text-gray-600 bg-blue-100 px-2 py-1 rounded">2009 - 2013</span>
</div>
<div class="text-blue-600 font-medium mb-2">University of California</div>
<p class="text-gray-700">
Graduated with honors. President of Computer Science Club.
Developed campus event management system as capstone project.
</p>
</div>
</div>
</div>
<!-- Projects -->
<div class="card bg-white rounded-xl shadow-md p-6 border border-gray-200">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-project-diagram text-blue-500 mr-2"></i>
Notable Projects
</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<!-- Project Card -->
<div class="border border-gray-200 rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold mb-2">E-commerce Platform</h4>
<p class="text-sm text-gray-600 mb-2">React, Node.js, MongoDB</p>
<p class="text-gray-700 text-sm">
Built a full-featured e-commerce platform with payment integration, product management, and analytics dashboard.
</p>
<a href="#" class="text-blue-500 text-sm mt-2 inline-block hover:underline">View Project β</a>
</div>
<!-- Project Card -->
<div class="border border-gray-200 rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold mb-2">Task Management App</h4>
<p class="text-sm text-gray-600 mb-2">Vue.js, Firebase</p>
<p class="text-gray-700 text-sm">
Developed a collaborative task management application with real-time updates and team features.
</p>
<a href="#" class="text-blue-500 text-sm mt-2 inline-block hover:underline">View Project β</a>
</div>
<!-- Project Card -->
<div class="border border-gray-200 rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold mb-2">Health Analytics Dashboard</h4>
<p class="text-sm text-gray-600 mb-2">D3.js, Python, Flask</p>
<p class="text-gray-700 text-sm">
Created interactive data visualizations for healthcare metrics with filtering and export capabilities.
</p>
<a href="#" class="text-blue-500 text-sm mt-2 inline-block hover:underline">View Project β</a>
</div>
<!-- Project Card -->
<div class="border border-gray-200 rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold mb-2">Mobile Game</h4>
<p class="text-sm text-gray-600 mb-2">Unity, C#</p>
<p class="text-gray-700 text-sm">
Designed and developed a puzzle game with 50,000+ downloads on app stores.
</p>
<a href="#" class="text-blue-500 text-sm mt-2 inline-block hover:underline">View Project β</a>
</div>
</div>
</div>
<!-- Certifications -->
<div class="card bg-white rounded-xl shadow-md p-6 border border-gray-200">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-certificate text-blue-500 mr-2"></i>
Certifications
</h3>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-lg mr-4">
<i class="fas fa-award text-blue-500 text-xl"></i>
</div>
<div>
<h4 class="font-bold">AWS Certified Developer</h4>
<p class="text-gray-600 text-sm">Amazon Web Services - 2022</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-lg mr-4">
<i class="fas fa-award text-blue-500 text-xl"></i>
</div>
<div>
<h4 class="font-bold">Google Professional Data Engineer</h4>
<p class="text-gray-600 text-sm">Google Cloud - 2021</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-lg mr-4">
<i class="fas fa-award text-blue-500 text-xl"></i>
</div>
<div>
<h4 class="font-bold">React.js Certification</h4>
<p class="text-gray-600 text-sm">Meta (Facebook) - 2020</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Print Header (hidden by default) -->
<div class="print-only text-center mb-8">
<h1 class="text-3xl font-bold mb-2">John Doe</h1>
<p class="text-xl text-blue-600 font-medium">Senior Web Developer</p>
<div class="flex justify-center space-x-4 mt-2">
<span>john.doe@example.com</span>
<span>β’</span>
<span>+1 (555) 123-4567</span>
<span>β’</span>
<span>San Francisco, CA</span>
</div>
</div>
</div>
<script>
// Theme Toggle
const themeToggle = document.getElementById('themeToggle');
const html = document.documentElement;
// Check for saved theme preference or use system preference
const savedTheme = localStorage.getItem('theme') ||
(window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light');
// Apply the saved theme
if (savedTheme === 'dark') {
html.classList.add('dark-mode');
}
// Toggle theme on button click
themeToggle.addEventListener('click', () => {
html.classList.toggle('dark-mode');
// Save the current theme to localStorage
const currentTheme = html.classList.contains('dark-mode') ? 'dark' : 'light';
localStorage.setItem('theme', currentTheme);
});
// Print Functionality
const printButton = document.getElementById('printButton');
printButton.addEventListener('click', () => {
window.print();
});
// Animate skill bars on page load
document.addEventListener('DOMContentLoaded', () => {
const skillBars = document.querySelectorAll('.skill-progress');
skillBars.forEach(bar => {
const width = bar.style.width;
bar.style.width = '0';
setTimeout(() => {
bar.style.width = width;
}, 100);
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 𧬠<a href="https://enzostvs-deepsite.hf.space?remix=huathedev/test" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |