-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex6.html
More file actions
813 lines (729 loc) · 21.5 KB
/
index6.html
File metadata and controls
813 lines (729 loc) · 21.5 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
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Rohan Mehra - Interactive Resume</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary: #4361ee;
--primary-light: #e0e7ff;
--secondary: #f72585;
--text: #2b2d42;
--light: #f8f9fa;
--gray: #adb5bd;
--dark-gray: #495057;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
background: #f5f7ff;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: var(--text);
padding: 20px;
line-height: 1.6;
}
.card {
background: white;
width: 100%;
max-width: 1000px;
padding: 50px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
border: 1px solid rgba(0, 0, 0, 0.05);
transform: translateY(0);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.card::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, transparent 65%, rgba(67, 97, 238, 0.03) 100%);
z-index: -1;
}
.header {
display: flex;
justify-content: space-between;
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 2px solid var(--primary-light);
}
h1 {
color: var(--primary);
font-size: 36px;
font-weight: 600;
margin-bottom: 5px;
position: relative;
display: inline-block;
}
h1::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 50%;
height: 3px;
background: var(--secondary);
border-radius: 3px;
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
}
.card:hover h1::after {
transform: scaleX(1);
}
.title {
color: var(--dark-gray);
font-weight: 500;
font-size: 18px;
}
.contact {
display: flex;
flex-direction: column;
gap: 8px;
text-align: right;
}
.contact-item {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 10px;
color: var(--text);
transition: all 0.3s ease;
}
.contact-item:hover {
color: var(--primary);
}
.contact-item i {
color: var(--primary);
width: 20px;
transition: all 0.3s ease;
}
.contact-item:hover i {
transform: scale(1.2);
}
section {
margin-top: 25px;
position: relative;
padding-left: 20px;
opacity: 0;
transform: translateY(20px);
transition: all 0.6s ease;
}
.card.loaded section {
opacity: 1;
transform: translateY(0);
}
section::before {
content: '';
position: absolute;
left: 0;
top: 5px;
height: calc(100% - 10px);
width: 3px;
background: linear-gradient(to bottom, var(--primary), var(--secondary));
border-radius: 3px;
}
section h2 {
font-size: 22px;
color: var(--primary);
margin-bottom: 15px;
font-weight: 600;
display: flex;
align-items: center;
gap: 10px;
}
section h2 i {
color: var(--secondary);
font-size: 20px;
}
ul {
list-style-type: none;
}
ul li {
margin-bottom: 10px;
position: relative;
padding-left: 25px;
}
ul li::before {
content: '▹';
position: absolute;
left: 0;
color: var(--secondary);
}
b {
color: var(--primary);
font-weight: 500;
}
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 15px;
margin-top: 15px;
}
.skill-category {
background: rgba(67, 97, 238, 0.05);
padding: 15px;
border-radius: 8px;
transition: all 0.3s ease;
transform: translateY(0);
}
.skill-category:hover {
background: rgba(67, 97, 238, 0.1);
transform: translateY(-3px);
}
.skill-category h3 {
color: var(--primary);
margin-bottom: 8px;
font-size: 16px;
}
.project {
background: white;
border-radius: 8px;
padding: 15px;
margin-bottom: 15px;
border: 1px solid rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
}
.project:hover {
border-color: rgba(67, 97, 238, 0.3);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transform: translateY(-3px);
}
.project-header {
display: flex;
justify-content: space-between;
margin-bottom: 8px;
}
.project-title {
font-size: 17px;
font-weight: 500;
color: var(--primary);
}
.project-date {
color: var(--gray);
font-size: 14px;
}
.project-tech {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin: 8px 0;
}
.tech-item {
background: rgba(67, 97, 238, 0.1);
color: var(--primary);
padding: 2px 10px;
border-radius: 20px;
font-size: 12px;
transition: all 0.2s ease;
}
.tech-item:hover {
background: rgba(67, 97, 238, 0.2);
}
.tag-container {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 15px;
}
.tag {
background: var(--primary-light);
color: var(--primary);
padding: 4px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 500;
transition: all 0.2s ease;
}
.tag:hover {
background: var(--primary);
color: white;
}
/* Certifications */
.tech-item {
display: inline-block;
margin-right: 8px;
}
/* GitHub Stats */
.github-stats {
display: flex;
gap: 20px;
margin: 15px 0;
}
.stat {
background: var(--primary-light);
padding: 10px 15px;
border-radius: 8px;
}
.stat i {
color: var(--primary);
margin-right: 8px;
}
/* Testimonials */
.testimonial {
background: var(--primary-light);
padding: 15px;
border-radius: 8px;
position: relative;
}
.testimonial::before {
content: '"';
font-size: 60px;
position: absolute;
opacity: 0.1;
top: 10px;
left: 10px;
}
.testimonial-author {
text-align: right;
font-style: italic;
margin-top: 10px;
}
/* Progress Bars */
.skill-meter {
margin: 15px 0;
}
.skill-name {
display: flex;
justify-content: space-between;
margin-bottom: 5px;
}
.progress-bar {
background: #e9ecef;
height: 8px;
border-radius: 4px;
}
.progress {
background: var(--primary);
height: 100%;
border-radius: 4px;
}
/* Download Button */
.download-btn {
background: var(--primary);
color: white;
padding: 8px 15px;
border-radius: 5px;
text-decoration: none;
display: inline-block;
margin-top: 15px;
transition: all 0.3s ease;
}
.download-btn:hover {
background: var(--primary-dark);
}
/* Contact Form */
.contact-form {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 15px;
}
.contact-form input,
.contact-form textarea {
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
font-family: 'Poppins', sans-serif;
}
.contact-form textarea {
min-height: 100px;
}
.contact-form button {
background: var(--primary);
color: white;
border: none;
padding: 10px;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
}
.contact-form button:hover {
background: var(--primary-dark);
}
/* Dark Mode Toggle */
.dark-mode-toggle {
position: fixed;
top: 20px;
right: 20px;
cursor: pointer;
z-index: 100;
background: var(--primary);
color: white;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
.card {
padding: 30px;
}
.header {
flex-direction: column;
align-items: flex-start;
gap: 15px;
}
.contact {
text-align: left;
}
.contact-item {
justify-content: flex-start;
}
h1 {
font-size: 30px;
}
section {
padding-left: 15px;
}
section::before {
width: 2px;
}
.github-stats {
flex-direction: column;
gap: 10px;
}
}
</style>
</head>
<body>
<div class="dark-mode-toggle" id="darkModeToggle">
<i class="fas fa-moon"></i>
</div>
<div class="card">
<div class="header">
<div>
<h1>Rohan Mehra</h1>
<p class="title">Computer Science Engineer | Full Stack Developer</p>
<div class="github-stats">
<div class="stat">
<i class="fab fa-github"></i>
<span id="repos">12</span> Public Repos
</div>
<div class="stat">
<i class="fas fa-code-branch"></i>
<span id="commits">200+</span> Commits
</div>
</div>
</div>
<div class="contact">
<div class="contact-item">
<i class="fas fa-envelope"></i>
<span>rohan.mehra@example.com</span>
</div>
<div class="contact-item">
<i class="fas fa-phone-alt"></i>
<span>+91 98765 43210</span>
</div>
<div class="contact-item">
<i class="fab fa-linkedin-in"></i>
<span>linkedin.com/in/rohanmehra</span>
</div>
<div class="contact-item">
<i class="fab fa-github"></i>
<span>github.com/rohanmehra</span>
</div>
<a href="Rohan_Mehra_Resume.pdf" download class="download-btn">
<i class="fas fa-download"></i> Download PDF
</a>
</div>
</div>
<section style="transition-delay: 0.1s">
<h2><i class="fas fa-user-tie"></i> Professional Summary</h2>
<p>Full Stack Developer with 2+ years of hands-on experience building web applications using MERN stack. Passionate about creating efficient, scalable solutions with clean code. Strong problem-solving skills with a Bachelor's degree in Computer Science.</p>
</section>
<section style="transition-delay: 0.2s">
<h2><i class="fas fa-graduation-cap"></i> Education</h2>
<ul>
<li>
<b>Bachelor of Technology in Computer Science</b><br>
ABC Institute of Technology, Mumbai | 2021–2025<br>
CGPA: 8.9/10 | Relevant Coursework: Data Structures, Algorithms, DBMS, Web Technologies
</li>
<li>
<b>Higher Secondary (XII)</b><br>
XYZ School, CBSE Board | 2021 | Percentage: 90.2%
</li>
<li>
<b>Secondary (X)</b><br>
XYZ School, CBSE Board | 2019 | Percentage: 92.4%
</li>
</ul>
</section>
<section style="transition-delay: 0.3s">
<h2><i class="fas fa-code"></i> Technical Skills</h2>
<div class="grid-container">
<div class="skill-category">
<h3><i class="fas fa-laptop-code"></i> Programming</h3>
<ul>
<li>C++ (Advanced)</li>
<li>JavaScript (ES6+)</li>
<li>Python</li>
<li>Java</li>
</ul>
</div>
<div class="skill-category">
<h3><i class="fas fa-globe"></i> Web Development</h3>
<ul>
<li>React.js</li>
<li>Node.js</li>
<li>Express.js</li>
<li>HTML5 & CSS3</li>
</ul>
</div>
<div class="skill-category">
<h3><i class="fas fa-database"></i> Databases</h3>
<ul>
<li>MongoDB</li>
<li>MySQL</li>
<li>Firebase</li>
</ul>
</div>
<div class="skill-category">
<h3><i class="fas fa-tools"></i> Tools & Platforms</h3>
<ul>
<li>Git & GitHub</li>
<li>VS Code</li>
<li>Postman</li>
<li>Docker</li>
</ul>
</div>
</div>
<div class="skill-meter">
<div class="skill-name">
<span>JavaScript</span>
<span>90%</span>
</div>
<div class="progress-bar">
<div class="progress" style="width: 90%"></div>
</div>
</div>
<div class="skill-meter">
<div class="skill-name">
<span>React</span>
<span>85%</span>
</div>
<div class="progress-bar">
<div class="progress" style="width: 85%"></div>
</div>
</div>
<div class="skill-meter">
<div class="skill-name">
<span>Node.js</span>
<span>80%</span>
</div>
<div class="progress-bar">
<div class="progress" style="width: 80%"></div>
</div>
</div>
</section>
<section style="transition-delay: 0.4s">
<h2><i class="fas fa-project-diagram"></i> Projects</h2>
<div class="project">
<div class="project-header">
<div class="project-title">Weather Dashboard</div>
<div class="project-date">Jan 2024 - Mar 2024</div>
</div>
<div class="project-tech">
<span class="tech-item">React</span>
<span class="tech-item">OpenWeather API</span>
<span class="tech-item">Chart.js</span>
</div>
<p>A responsive weather application that displays current weather, 5-day forecast, and historical weather data with interactive charts.</p>
<div class="tag-container">
<span class="tag">Live Demo</span>
<span class="tag">Source Code</span>
</div>
</div>
<div class="project">
<div class="project-header">
<div class="project-title">E-commerce Backend</div>
<div class="project-date">Oct 2023 - Dec 2023</div>
</div>
<div class="project-tech">
<span class="tech-item">Node.js</span>
<span class="tech-item">Express</span>
<span class="tech-item">MongoDB</span>
</div>
<p>Developed a RESTful API for an e-commerce platform with user authentication, product management, and order processing.</p>
<div class="tag-container">
<span class="tag">Documentation</span>
<span class="tag">Source Code</span>
</div>
</div>
</section>
<section style="transition-delay: 0.5s">
<h2><i class="fas fa-briefcase"></i> Experience</h2>
<ul>
<li>
<b>Web Development Intern</b> | CodeCamp Solutions, Mumbai<br>
Jan 2024 - Mar 2024<br>
• Developed and maintained client websites using React and Node.js<br>
• Reduced page load time by 40% through optimization<br>
• Collaborated with designers to implement responsive UI
</li>
<li>
<b>Technical Content Writer</b> | GeeksforGeeks (Freelance)<br>
Jun 2023 - Present<br>
• Published 15+ articles on Data Structures and Web Development<br>
• Articles have 50K+ combined views with average 4.8/5 rating
</li>
</ul>
</section>
<section style="transition-delay: 0.6s">
<h2><i class="fas fa-certificate"></i> Certifications</h2>
<ul>
<li>
<b>Full Stack Web Development</b> - Udemy (2023)<br>
<span class="tech-item">MERN Stack</span>
<span class="tech-item">REST APIs</span>
</li>
<li>
<b>AWS Certified Cloud Practitioner</b> - Amazon Web Services (2024)
</li>
</ul>
</section>
<section style="transition-delay: 0.7s">
<h2><i class="fas fa-trophy"></i> Achievements</h2>
<ul>
<li>Ranked in Top 10% in CodeChef College Chapter Contest (2023)</li>
<li>Won 1st Prize in ABC Hackathon for developing a COVID resource portal (2022)</li>
<li>Certified in Advanced JavaScript and React - Udemy (2023)</li>
<li>Solved 300+ problems on LeetCode (Max Rating: 1800)</li>
<li>4-star coder on CodeChef (Max Rating: 1900)</li>
</ul>
</section>
<section style="transition-delay: 0.8s">
<h2><i class="fas fa-newspaper"></i> Technical Writing</h2>
<ul>
<li>
<b>"Optimizing React Performance"</b> - Medium (Jan 2024)<br>
<span class="tech-item">React</span>
<span class="tech-item">Performance</span>
</li>
<li>
<b>"Introduction to MongoDB Aggregation"</b> - Dev.to (Nov 2023)
</li>
</ul>
</section>
<section style="transition-delay: 0.9s">
<h2><i class="fas fa-hands-helping"></i> Volunteer Work</h2>
<ul>
<li>
<b>Coding Instructor</b> - TeachForIndia (Summer 2023)<br>
Taught Python basics to underprivileged students
</li>
</ul>
</section>
<section style="transition-delay: 1.0s">
<h2><i class="fas fa-quote-left"></i> Testimonials</h2>
<div class="testimonial">
<p>"Rohan demonstrated exceptional problem-solving skills during our hackathon. His React implementation was flawless and his ability to work in a team was remarkable."</p>
<p class="testimonial-author">- Prof. Sharma, ABC Institute of Technology</p>
</div>
</section>
<section style="transition-delay: 1.1s">
<h2><i class="fas fa-rocket"></i> Current Projects</h2>
<ul>
<li>
Building a <b>AI-powered Resume Analyzer</b> using Python and NLP
</li>
<li>
Developing a <b>Community Platform</b> for developers to share projects
</li>
</ul>
</section>
<section style="transition-delay: 1.2s">
<h2><i class="fas fa-language"></i> Languages</h2>
<ul>
<li><b>English</b> - Professional Proficiency</li>
<li><b>Hindi</b> - Native Proficiency</li>
<li><b>French</b> - Basic Communication</li>
</ul>
</section>
<section style="transition-delay: 1.3s">
<h2><i class="fas fa-heart"></i> Interests</h2>
<div class="tag-container">
<span class="tag">Open Source</span>
<span class="tag">Competitive Programming</span>
<span class="tag">UI/UX Design</span>
<span class="tag">Football</span>
<span class="tag">Music Production</span>
</div>
</section>
<section style="transition-delay: 1.4s">
<h2><i class="fas fa-paper-plane"></i> Contact Me</h2>
<form class="contact-form">
<input type="text" placeholder="Your Name">
<input type="email" placeholder="Your Email">
<textarea placeholder="Your Message"></textarea>
<button type="submit">Send Message</button>
</form>
</section>
</div>
<script>
// Add loaded class to card after page loads
document.addEventListener('DOMContentLoaded', function() {
const card = document.querySelector('.card');
setTimeout(() => {
card.classList.add('loaded');
}, 300);
// Add staggered animation delays to sections
const sections = document.querySelectorAll('section');
sections.forEach((section, index) => {
section.style.transitionDelay = `${0.1 + (index * 0.1)}s`;
});
// Dark mode toggle
const darkModeToggle = document.getElementById('darkModeToggle');
darkModeToggle.addEventListener('click', function() {
document.body.classList.toggle('dark-mode');
if (document.body.classList.contains('dark-mode')) {
darkModeToggle.innerHTML = '<i class="fas fa-sun"></i>';
// Add dark mode styles dynamically
document.documentElement.style.setProperty('--text', '#f8f9fa');
document.documentElement.style.setProperty('--light', '#2b2d42');
document.body.style.background = '#121212';
document.querySelector('.card').style.background = '#1e1e1e';
} else {
darkModeToggle.innerHTML = '<i class="fas fa-moon"></i>';
// Revert to light mode
document.documentElement.style.setProperty('--text', '#2b2d42');
document.documentElement.style.setProperty('--light', '#f8f9fa');
document.body.style.background = '#f5f7ff';
document.querySelector('.card').style.background = 'white';
}
});
// Simulate GitHub stats (in a real scenario, you'd use GitHub API)
setTimeout(() => {
document.getElementById('repos').textContent = '15';
document.getElementById('commits').textContent = '250+';
}, 1500);
});
</script>
</body>
</html>