-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathindex.html
More file actions
342 lines (313 loc) · 15.2 KB
/
index.html
File metadata and controls
342 lines (313 loc) · 15.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive Resume - John Doe</title>
<link rel="stylesheet" href="style.css">
<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">
</head>
<body>
<div class="container">
<!-- Animated Header -->
<header>
<div class="profile-card">
<div class="avatar" contenteditable="true" spellcheck="false">JD</div>
<h1 class="gradient-text" contenteditable="true" spellcheck="false">John Doe</h1>
<p class="subtitle" contenteditable="true" spellcheck="false">Web Developer | C++ Programmer | Tech Enthusiast</p>
<div class="contact-info">
<span class="contact-item" contenteditable="true" spellcheck="false">john.doe@email.com</span>
<span class="contact-item" contenteditable="true" spellcheck="false">+1 234-567-8900</span>
<span class="contact-item" contenteditable="true" spellcheck="false">johndoe.dev</span>
</div>
<div class="social-links">
</div>
</div>
</header>
<!-- Tab Navigation -->
<div class="tabs">
<input type="radio" name="tab" id="tab1" checked>
<input type="radio" name="tab" id="tab2">
<input type="radio" name="tab" id="tab3">
<input type="radio" name="tab" id="tab4">
<div class="tab-labels">
<label for="tab1" class="tab-label">Skills</label>
<label for="tab2" class="tab-label">Projects</label>
<label for="tab3" class="tab-label">Education</label>
<label for="tab4" class="tab-label">Achievements</label>
</div>
<!-- Tab Content -->
<div class="tab-content">
<!-- Skills Tab -->
<div class="tab-panel" id="panel1">
<h2 contenteditable="true" spellcheck="false">Technical Skills</h2>
<div class="skills-grid">
<div class="skill-category">
<h3 contenteditable="true" spellcheck="false">Programming Languages</h3>
<div class="skill-item">
<span class="skill-name" contenteditable="true" spellcheck="false">C++</span>
<div class="progress-bar">
<div class="progress" style="--progress: 90%"></div>
</div>
<span class="skill-level" contenteditable="true" spellcheck="false">Expert</span>
</div>
<div class="skill-item">
<span class="skill-name" contenteditable="true" spellcheck="false">JavaScript</span>
<div class="progress-bar">
<div class="progress" style="--progress: 80%"></div>
</div>
<span class="skill-level" contenteditable="true" spellcheck="false">Advanced</span>
</div>
<div class="skill-item">
<span class="skill-name" contenteditable="true" spellcheck="false">Python</span>
<div class="progress-bar">
<div class="progress" style="--progress: 75%"></div>
</div>
<span class="skill-level" contenteditable="true" spellcheck="false">Advanced</span>
</div>
</div>
<div class="skill-category">
<h3 contenteditable="true" spellcheck="false">Web Technologies</h3>
<div class="skill-item">
<span class="skill-name" contenteditable="true" spellcheck="false">HTML & CSS</span>
<div class="progress-bar">
<div class="progress" style="--progress: 95%"></div>
</div>
<span class="skill-level" contenteditable="true" spellcheck="false">Expert</span>
</div>
<div class="skill-item">
<span class="skill-name" contenteditable="true" spellcheck="false">React</span>
<div class="progress-bar">
<div class="progress" style="--progress: 70%"></div>
</div>
<span class="skill-level" contenteditable="true" spellcheck="false">Intermediate</span>
</div>
<div class="skill-item">
<span class="skill-name" contenteditable="true" spellcheck="false">Node.js</span>
<div class="progress-bar">
<div class="progress" style="--progress: 65%"></div>
</div>
<span class="skill-level" contenteditable="true" spellcheck="false">Intermediate</span>
</div>
</div>
<div class="skill-category">
<h3 contenteditable="true" spellcheck="false">Tools & Frameworks</h3>
<div class="skill-item">
<span class="skill-name" contenteditable="true" spellcheck="false">Git & GitHub</span>
<div class="progress-bar">
<div class="progress" style="--progress: 85%"></div>
</div>
<span class="skill-level" contenteditable="true" spellcheck="false">Advanced</span>
</div>
<div class="skill-item">
<span class="skill-name" contenteditable="true" spellcheck="false">SQL & Databases</span>
<div class="progress-bar">
<div class="progress" style="--progress: 75%"></div>
</div>
<span class="skill-level" contenteditable="true" spellcheck="false">Advanced</span>
</div>
<div class="skill-item">
<span class="skill-name" contenteditable="true" spellcheck="false">Docker</span>
<div class="progress-bar">
<div class="progress" style="--progress: 60%"></div>
</div>
<span class="skill-level" contenteditable="true" spellcheck="false">Intermediate</span>
</div>
</div>
</div>
<!-- Soft Skills (editable) -->
<div class="soft-skills" contenteditable="true" spellcheck="false">
<span class="badge">Problem Solving</span>
<span class="badge">Team Collaboration</span>
<span class="badge">Critical Thinking</span>
<span class="badge">Communication</span>
<span class="badge">Time Management</span>
<span class="badge">Adaptability</span>
</div>
</div>
<!-- Projects Tab -->
<div class="tab-panel" id="panel2">
<h2>Featured Projects</h2>
<div class="projects-grid">
<div class="project-card" contenteditable="true" spellcheck="false">
<div class="project-icon">🧠</div>
<h3>AI-based Deepfake Detector</h3>
<p class="project-desc">Advanced machine learning model that detects manipulated videos with 95% accuracy using deep neural networks.</p>
<div class="project-tags">
<span class="tag">Python</span>
<span class="tag">TensorFlow</span>
<span class="tag">OpenCV</span>
</div>
</div>
<div class="project-card" contenteditable="true" spellcheck="false">
<div class="project-icon">🏛️</div>
<h3>E-Governance Website</h3>
<p class="project-desc">Full-stack web application helping citizens access government services seamlessly with secure authentication.</p>
<div class="project-tags">
<span class="tag">React</span>
<span class="tag">Node.js</span>
<span class="tag">MongoDB</span>
</div>
</div>
<div class="project-card" contenteditable="true" spellcheck="false">
<div class="project-icon">📝</div>
<h3>Online Quiz System</h3>
<p class="project-desc">Interactive quiz platform built with C++ and OOP principles, featuring real-time scoring and analytics.</p>
<div class="project-tags">
<span class="tag">C++</span>
<span class="tag">OOP</span>
<span class="tag">SQLite</span>
</div>
</div>
<div class="project-card" contenteditable="true" spellcheck="false">
<div class="project-icon">🎨</div>
<h3>Portfolio Website</h3>
<p class="project-desc">Responsive portfolio showcase with modern design patterns and smooth animations, built without JavaScript.</p>
<div class="project-tags">
<span class="tag">HTML</span>
<span class="tag">CSS</span>
<span class="tag">Responsive</span>
</div>
</div>
</div>
</div>
<!-- Education Tab -->
<div class="tab-panel" id="panel3">
<h2>Educational Background</h2>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-marker"></div>
<div class="timeline-content" contenteditable="true" spellcheck="false">
<div class="timeline-date">2021 - Present</div>
<h3>B.Tech in Computer Science</h3>
<p class="institution">University of Technology</p>
<p class="description">Specializing in Software Engineering and Artificial Intelligence. Current GPA: 3.8/4.0</p>
<div class="courses">
<h4>Key Courses:</h4>
<ul>
<li>Data Structures & Algorithms</li>
<li>Object-Oriented Programming</li>
<li>Database Management Systems</li>
<li>Machine Learning Fundamentals</li>
<li>Web Development</li>
<li>Software Engineering Principles</li>
</ul>
</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-marker"></div>
<div class="timeline-content" contenteditable="true" spellcheck="false">
<div class="timeline-date">2019 - 2021</div>
<h3>Higher Secondary Education</h3>
<p class="institution">St. Mary's High School</p>
<p class="description">Completed with distinction in Science stream. Top 5% of the class.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-marker"></div>
<div class="timeline-content" contenteditable="true" spellcheck="false">
<div class="timeline-date">2023</div>
<h3>Full Stack Web Development</h3>
<p class="institution">Online Certification - Coursera</p>
<p class="description">Comprehensive course covering modern web development technologies and best practices.</p>
</div>
</div>
</div>
<!-- Certifications -->
<div class="certifications">
<h3>Certifications & Courses</h3>
<div class="cert-grid">
<div class="cert-card" contenteditable="true" spellcheck="false">
<div class="cert-icon">🏅</div>
<h4>AWS Cloud Practitioner</h4>
<p>Amazon Web Services</p>
</div>
<div class="cert-card" contenteditable="true" spellcheck="false">
<div class="cert-icon">🏅</div>
<h4>React Developer</h4>
<p>Meta Frontend Course</p>
</div>
<div class="cert-card" contenteditable="true" spellcheck="false">
<div class="cert-icon">🏅</div>
<h4>C++ Programming</h4>
<p>University Certification</p>
</div>
</div>
</div>
</div>
<!-- Achievements Tab -->
<div class="tab-panel" id="panel4">
<h2>Achievements & Awards</h2>
<div class="achievements-grid">
<div class="achievement-card" contenteditable="true" spellcheck="false">
<div class="achievement-icon">🥇</div>
<h3>Hackathon Winner</h3>
<p>First place at University Tech Fest 2024 for AI-based solution</p>
<span class="achievement-date">March 2024</span>
</div>
<div class="achievement-card" contenteditable="true" spellcheck="false">
<div class="achievement-icon">⭐</div>
<h3>Open Source Contributor</h3>
<p>Active contributor to multiple GitHub projects with 500+ contributions</p>
<span class="achievement-date">Ongoing</span>
</div>
<div class="achievement-card" contenteditable="true" spellcheck="false">
<div class="achievement-icon">🎯</div>
<h3>Coding Competition</h3>
<p>Top 10% in National Coding Championship 2023</p>
<span class="achievement-date">November 2023</span>
</div>
<div class="achievement-card" contenteditable="true" spellcheck="false">
<div class="achievement-icon">📚</div>
<h3>Research Paper</h3>
<p>Published research on "Deepfake Detection using CNN" in IEEE Conference</p>
<span class="achievement-date">January 2024</span>
</div>
<div class="achievement-card" contenteditable="true" spellcheck="false">
<div class="achievement-icon">👥</div>
<h3>Team Leadership</h3>
<p>Led a team of 5 developers in building E-Governance platform</p>
<span class="achievement-date">2023-2024</span>
</div>
<div class="achievement-card" contenteditable="true" spellcheck="false">
<div class="achievement-icon">💡</div>
<h3>Innovation Award</h3>
<p>Recognized for innovative approach in solving complex algorithms</p>
<span class="achievement-date">June 2023</span>
</div>
</div>
<!-- Stats Section -->
<div class="stats-section">
<h3>Statistics</h3>
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number">15+</div>
<div class="stat-label">Projects Completed</div>
</div>
<div class="stat-card">
<div class="stat-number">500+</div>
<div class="stat-label">Git Contributions</div>
</div>
<div class="stat-card">
<div class="stat-number">3.8</div>
<div class="stat-label">GPA</div>
</div>
<div class="stat-card">
<div class="stat-number">5+</div>
<div class="stat-label">Certifications</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
<p>Crafted with HTML & CSS only. You can edit your details directly in the resume above.</p>
<p class="footer-note">Last Updated: October 2025</p>
</footer>
</div>
</body>
</html>