-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
583 lines (557 loc) · 32.8 KB
/
index.html
File metadata and controls
583 lines (557 loc) · 32.8 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio - Your Name</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Distinctive fonts: Playfair Display for headers, Source Sans Pro for body -->
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Source+Sans+3:wght@300;400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar" id="navbar">
<div class="nav-container">
<a href="#home" class="nav-logo">Portfolio</a>
<ul class="nav-menu" id="nav-menu">
<li class="nav-item">
<a href="#home" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="#about" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="#education" class="nav-link">Education</a>
</li>
<li class="nav-item">
<a href="#projects" class="nav-link">Projects</a>
</li>
<li class="nav-item">
<a href="#experience" class="nav-link">Experience</a>
</li>
<li class="nav-item">
<a href="#contact" class="nav-link">Contact</a>
</li>
</ul>
<div class="hamburger" id="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
<!-- Section 1: Home -->
<section id="home" class="section home-section">
<div class="background-image" data-image="1"></div>
<div class="content-overlay">
<div class="container">
<h1 class="hero-title fade-in-up">Your Name</h1>
<p class="hero-subtitle fade-in-up" style="animation-delay: 0.2s;">Full Stack Developer & Creative Problem Solver</p>
<p class="hero-description fade-in-up" style="animation-delay: 0.4s;">
Crafting elegant solutions through code and design
</p>
<div class="hero-buttons fade-in-up" style="animation-delay: 0.6s;">
<a href="#projects" class="btn btn-primary">View My Work</a>
<a href="#contact" class="btn btn-secondary">Get In Touch</a>
</div>
</div>
</div>
</section>
<!-- Section 2: About Me -->
<section id="about" class="section about-section">
<div class="background-image" data-image="2"></div>
<div class="content-overlay">
<div class="container">
<h2 class="section-title reveal-text">About Me</h2>
<div class="about-content">
<div class="about-text reveal-fade">
<p class="lead-text">
Hello! I'm a passionate developer who loves turning ideas into reality through clean, efficient code.
</p>
<p>
With expertise in both front-end and back-end development, I create comprehensive solutions that not only work flawlessly but also provide exceptional user experiences. My journey in tech has been driven by curiosity and a constant desire to learn and innovate.
</p>
<p>
When I'm not coding, you'll find me exploring new technologies, contributing to open-source projects, or sharing knowledge with the developer community.
</p>
<!-- Skills Section -->
<div class="skills-container">
<h3>Technical Skills</h3>
<div class="skills-grid">
<div class="skill-category">
<h4>Frontend</h4>
<ul>
<li>HTML5, CSS3, JavaScript</li>
<li>React, Vue.js, Angular</li>
<li>Tailwind CSS, Bootstrap</li>
<li>Responsive Design</li>
</ul>
</div>
<div class="skill-category">
<h4>Backend</h4>
<ul>
<li>Node.js, Express</li>
<li>Python, Django, Flask</li>
<li>Java, Spring Boot</li>
<li>RESTful APIs, GraphQL</li>
</ul>
</div>
<div class="skill-category">
<h4>Database & Tools</h4>
<ul>
<li>MongoDB, PostgreSQL, MySQL</li>
<li>Git, GitHub, GitLab</li>
<li>Docker, Kubernetes</li>
<li>AWS, Azure, Heroku</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section 3: Education -->
<section id="education" class="section education-section">
<div class="background-image" data-image="3"></div>
<div class="content-overlay">
<div class="container">
<h2 class="section-title reveal-text">Education</h2>
<div class="timeline">
<!-- Education Item 1 -->
<div class="timeline-item reveal-slide">
<div class="timeline-marker"></div>
<div class="timeline-content">
<div class="timeline-header">
<h3>Bachelor of Science in Computer Science</h3>
<span class="timeline-date">2018 - 2022</span>
</div>
<h4>University Name</h4>
<p>
Focused on software engineering, algorithms, and data structures.
Graduated with honors (GPA: 3.8/4.0).
</p>
<ul class="achievement-list">
<li>Dean's List: 6 semesters</li>
<li>Completed capstone project on machine learning applications</li>
<li>President of Computer Science Society</li>
</ul>
</div>
</div>
<!-- Education Item 2 -->
<div class="timeline-item reveal-slide">
<div class="timeline-marker"></div>
<div class="timeline-content">
<div class="timeline-header">
<h3>Master of Science in Software Engineering</h3>
<span class="timeline-date">2022 - 2024</span>
</div>
<h4>University Name</h4>
<p>
Advanced studies in distributed systems, cloud computing, and software architecture.
Thesis on microservices optimization.
</p>
<ul class="achievement-list">
<li>GPA: 3.9/4.0</li>
<li>Research Assistant in Cloud Computing Lab</li>
<li>Published 2 papers in IEEE conferences</li>
</ul>
</div>
</div>
<!-- Certifications -->
<div class="timeline-item reveal-slide">
<div class="timeline-marker certification"></div>
<div class="timeline-content">
<div class="timeline-header">
<h3>Professional Certifications</h3>
<span class="timeline-date">2022 - Present</span>
</div>
<ul class="certification-list">
<li>AWS Certified Solutions Architect</li>
<li>Google Cloud Professional Developer</li>
<li>MongoDB Certified Developer</li>
<li>Kubernetes Administrator (CKA)</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section 4: Projects -->
<section id="projects" class="section projects-section">
<div class="background-image" data-image="4"></div>
<div class="content-overlay">
<div class="container">
<h2 class="section-title reveal-text">My Projects</h2>
<p class="section-subtitle reveal-fade">A showcase of my best work</p>
<div class="projects-grid">
<!-- Project 1 -->
<div class="project-card reveal-scale">
<div class="project-image">
<img src="https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&h=600&fit=crop" alt="Project 1">
<div class="project-overlay">
<a href="#" class="project-link" target="_blank" rel="noopener">View Live</a>
<a href="#" class="project-link github" target="_blank" rel="noopener">GitHub</a>
</div>
</div>
<div class="project-info">
<h3>E-Commerce Platform</h3>
<p>
A full-stack e-commerce solution with real-time inventory management,
payment integration, and admin dashboard.
</p>
<div class="project-tech">
<span class="tech-tag">React</span>
<span class="tech-tag">Node.js</span>
<span class="tech-tag">MongoDB</span>
<span class="tech-tag">Stripe</span>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="project-card reveal-scale">
<div class="project-image">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=800&h=600&fit=crop" alt="Project 2">
<div class="project-overlay">
<a href="#" class="project-link" target="_blank" rel="noopener">View Live</a>
<a href="#" class="project-link github" target="_blank" rel="noopener">GitHub</a>
</div>
</div>
<div class="project-info">
<h3>Data Analytics Dashboard</h3>
<p>
Interactive dashboard for visualizing complex datasets with real-time updates
and customizable reports.
</p>
<div class="project-tech">
<span class="tech-tag">Vue.js</span>
<span class="tech-tag">Python</span>
<span class="tech-tag">PostgreSQL</span>
<span class="tech-tag">D3.js</span>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="project-card reveal-scale">
<div class="project-image">
<img src="https://images.unsplash.com/photo-1555066931-4365d14bab8c?w=800&h=600&fit=crop" alt="Project 3">
<div class="project-overlay">
<a href="#" class="project-link" target="_blank" rel="noopener">View Live</a>
<a href="#" class="project-link github" target="_blank" rel="noopener">GitHub</a>
</div>
</div>
<div class="project-info">
<h3>Task Management App</h3>
<p>
Collaborative task management tool with drag-and-drop interface,
real-time collaboration, and notification system.
</p>
<div class="project-tech">
<span class="tech-tag">React</span>
<span class="tech-tag">Firebase</span>
<span class="tech-tag">Material-UI</span>
<span class="tech-tag">WebSocket</span>
</div>
</div>
</div>
<!-- Project 4 -->
<div class="project-card reveal-scale">
<div class="project-image">
<img src="https://images.unsplash.com/photo-1551650975-87deedd944c3?w=800&h=600&fit=crop" alt="Project 4">
<div class="project-overlay">
<a href="#" class="project-link" target="_blank" rel="noopener">View Live</a>
<a href="#" class="project-link github" target="_blank" rel="noopener">GitHub</a>
</div>
</div>
<div class="project-info">
<h3>Social Media Analytics</h3>
<p>
AI-powered social media analytics platform with sentiment analysis
and engagement tracking.
</p>
<div class="project-tech">
<span class="tech-tag">Django</span>
<span class="tech-tag">TensorFlow</span>
<span class="tech-tag">Redis</span>
<span class="tech-tag">Celery</span>
</div>
</div>
</div>
<!-- Project 5 -->
<div class="project-card reveal-scale">
<div class="project-image">
<img src="https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=800&h=600&fit=crop" alt="Project 5">
<div class="project-overlay">
<a href="#" class="project-link" target="_blank" rel="noopener">View Live</a>
<a href="#" class="project-link github" target="_blank" rel="noopener">GitHub</a>
</div>
</div>
<div class="project-info">
<h3>Weather Forecast App</h3>
<p>
Beautiful weather application with location-based forecasts,
interactive maps, and weather alerts.
</p>
<div class="project-tech">
<span class="tech-tag">Angular</span>
<span class="tech-tag">TypeScript</span>
<span class="tech-tag">OpenWeather API</span>
<span class="tech-tag">Leaflet</span>
</div>
</div>
</div>
<!-- Project 6 -->
<div class="project-card reveal-scale">
<div class="project-image">
<img src="https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=800&h=600&fit=crop" alt="Project 6">
<div class="project-overlay">
<a href="#" class="project-link" target="_blank" rel="noopener">View Live</a>
<a href="#" class="project-link github" target="_blank" rel="noopener">GitHub</a>
</div>
</div>
<div class="project-info">
<h3>Fitness Tracking Platform</h3>
<p>
Comprehensive fitness app with workout tracking, nutrition planning,
and progress visualization.
</p>
<div class="project-tech">
<span class="tech-tag">React Native</span>
<span class="tech-tag">Express</span>
<span class="tech-tag">MongoDB</span>
<span class="tech-tag">Chart.js</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section 5: Experience -->
<section id="experience" class="section experience-section">
<div class="background-image" data-image="5"></div>
<div class="content-overlay">
<div class="container">
<h2 class="section-title reveal-text">Work Experience</h2>
<div class="experience-timeline">
<!-- Experience 1 -->
<div class="experience-item reveal-slide">
<div class="experience-marker"></div>
<div class="experience-content">
<div class="experience-header">
<div>
<h3>Senior Full Stack Developer</h3>
<h4>Tech Company Inc.</h4>
</div>
<span class="experience-date">Jan 2024 - Present</span>
</div>
<p class="experience-description">
Leading development of enterprise-level web applications and mentoring junior developers.
Architecting scalable microservices and implementing CI/CD pipelines.
</p>
<ul class="experience-achievements">
<li>Improved application performance by 40% through code optimization</li>
<li>Led a team of 5 developers in building a customer portal used by 100K+ users</li>
<li>Implemented automated testing reducing bugs in production by 60%</li>
<li>Migrated legacy systems to cloud-native architecture</li>
</ul>
<div class="experience-tech">
<span class="tech-badge">React</span>
<span class="tech-badge">Node.js</span>
<span class="tech-badge">AWS</span>
<span class="tech-badge">Docker</span>
<span class="tech-badge">PostgreSQL</span>
</div>
</div>
</div>
<!-- Experience 2 -->
<div class="experience-item reveal-slide">
<div class="experience-marker"></div>
<div class="experience-content">
<div class="experience-header">
<div>
<h3>Full Stack Developer</h3>
<h4>Digital Solutions Ltd.</h4>
</div>
<span class="experience-date">Jun 2022 - Dec 2023</span>
</div>
<p class="experience-description">
Developed and maintained multiple client projects using modern web technologies.
Collaborated with designers and product managers to deliver high-quality solutions.
</p>
<ul class="experience-achievements">
<li>Built 15+ responsive web applications for various clients</li>
<li>Reduced page load time by 50% through optimization techniques</li>
<li>Integrated third-party APIs and payment gateways</li>
<li>Conducted code reviews and established best practices</li>
</ul>
<div class="experience-tech">
<span class="tech-badge">Vue.js</span>
<span class="tech-badge">Python</span>
<span class="tech-badge">MongoDB</span>
<span class="tech-badge">Redis</span>
</div>
</div>
</div>
<!-- Experience 3 -->
<div class="experience-item reveal-slide">
<div class="experience-marker"></div>
<div class="experience-content">
<div class="experience-header">
<div>
<h3>Junior Web Developer</h3>
<h4>StartUp Innovations</h4>
</div>
<span class="experience-date">Aug 2021 - May 2022</span>
</div>
<p class="experience-description">
Started my professional journey building features for a growing SaaS platform.
Learned agile methodologies and modern development practices.
</p>
<ul class="experience-achievements">
<li>Developed user-facing features using React and Redux</li>
<li>Fixed 200+ bugs and improved code quality</li>
<li>Collaborated with UX team to implement responsive designs</li>
<li>Participated in sprint planning and daily standups</li>
</ul>
<div class="experience-tech">
<span class="tech-badge">React</span>
<span class="tech-badge">JavaScript</span>
<span class="tech-badge">REST APIs</span>
<span class="tech-badge">Git</span>
</div>
</div>
</div>
<!-- Experience 4 -->
<div class="experience-item reveal-slide">
<div class="experience-marker"></div>
<div class="experience-content">
<div class="experience-header">
<div>
<h3>Software Development Intern</h3>
<h4>Big Tech Corp</h4>
</div>
<span class="experience-date">Summer 2021</span>
</div>
<p class="experience-description">
Summer internship focused on web development and database management.
Gained hands-on experience with enterprise-level codebases.
</p>
<ul class="experience-achievements">
<li>Contributed to internal tools used by 500+ employees</li>
<li>Wrote comprehensive documentation for new features</li>
<li>Participated in code reviews and learned best practices</li>
</ul>
<div class="experience-tech">
<span class="tech-badge">Angular</span>
<span class="tech-badge">Java</span>
<span class="tech-badge">MySQL</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section 6: Contact -->
<section id="contact" class="section contact-section">
<div class="background-image" data-image="6"></div>
<div class="content-overlay">
<div class="container">
<h2 class="section-title reveal-text">Get In Touch</h2>
<p class="section-subtitle reveal-fade">Let's create something amazing together</p>
<div class="contact-content">
<div class="contact-info reveal-slide">
<div class="contact-item">
<div class="contact-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
<polyline points="22,6 12,13 2,6"></polyline>
</svg>
</div>
<div class="contact-details">
<h3>Email</h3>
<a href="mailto:your.email@example.com">your.email@example.com</a>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>
</svg>
</div>
<div class="contact-details">
<h3>Phone</h3>
<a href="tel:+1234567890">+1 (234) 567-890</a>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path>
<circle cx="12" cy="10" r="3"></circle>
</svg>
</div>
<div class="contact-details">
<h3>Location</h3>
<p>City, Country</p>
</div>
</div>
<div class="social-links">
<a href="https://github.com/yourusername" target="_blank" rel="noopener" class="social-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
<path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
</svg>
</a>
<a href="https://linkedin.com/in/yourusername" target="_blank" rel="noopener" class="social-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
<path d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z"/>
</svg>
</a>
<a href="https://twitter.com/yourusername" target="_blank" rel="noopener" class="social-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/>
</svg>
</a>
</div>
</div>
<div class="contact-form-container reveal-slide">
<form class="contact-form" id="contact-form">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit" class="btn btn-primary btn-full">Send Message</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>© 2024 Your Name. All rights reserved.</p>
<p>Built with passion and code</p>
</div>
</footer>
<!-- Scripts -->
<script src="script.js"></script>
</body>
</html>