-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.html
More file actions
414 lines (380 loc) · 18.7 KB
/
cv.html
File metadata and controls
414 lines (380 loc) · 18.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SK Motalib - Portfolio</title>
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<!-- Custom styles -->
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
--primary: #4f46e5;
--secondary: #06b6d4;
--dark: #111827;
--light: #f9fafb;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
background-color: var(--dark);
color: var(--light);
}
.navbar {
background: rgba(17, 24, 39, 0.95);
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.section-header {
position: relative;
display: inline-block;
margin-bottom: 1.5rem;
}
.section-header::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 60px;
height: 3px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.card {
background: rgba(255, 255, 255, 0.05);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
}
.btn-primary {
background: linear-gradient(45deg, var(--primary), var(--secondary));
color: white;
border-radius: 50px;
padding: 0.75rem 1.5rem;
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}
.skill-bar {
background: rgba(255, 255, 255, 0.1);
border-radius: 8px;
height: 10px;
margin-top: 0.5rem;
}
.skill-level {
background: linear-gradient(90deg, var(--primary), var(--secondary));
height: 100%;
border-radius: 8px;
width: 0;
transition: width 1s ease-in-out;
}
.social-icon {
transition: all 0.3s ease;
}
.social-icon:hover {
color: var(--secondary);
transform: translateY(-3px);
}
.hamburger {
display: none;
}
.mobile-menu {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(17, 24, 39, 0.98);
z-index: 100;
padding: 2rem;
transform: translateX(-100%);
transition: transform 0.3s ease;
}
.mobile-menu.active {
transform: translateX(0);
}
.contact-input {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.2);
color: white;
border-radius: 8px;
padding: 0.75rem;
transition: all 0.3s ease;
}
.contact-input:focus {
border-color: var(--secondary);
outline: none;
}
@media (max-width: 768px) {
.hamburger {
display: block;
}
.desktop-menu {
display: none;
}
.mobile-menu {
display: block;
}
.hero-text {
font-size: 2.5rem !important;
}
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar fixed top-0 w-full z-50 py-4 px-6 flex justify-between items-center">
<h1 class="text-white text-2xl font-bold">SK <span class="text-indigo-400">Motalib</span></h1>
<ul class="desktop-menu flex space-x-6">
<li><a href="#home" class="text-white hover:text-indigo-400 transition-colors">Home</a></li>
<li><a href="#about" class="text-white hover:text-indigo-400 transition-colors">About</a></li>
<li><a href="#skills" class="text-white hover:text-indigo-400 transition-colors">Skills</a></li>
<li><a href="#projects" class="text-white hover:text-indigo-400 transition-colors">Projects</a></li>
<li><a href="#contact" class="text-white hover:text-indigo-400 transition-colors">Contact</a></li>
</ul>
<div class="hamburger">
<i class="fas fa-bars text-white text-xl"></i>
</div>
</nav>
<!-- Mobile Menu -->
<div class="mobile-menu">
<div class="flex justify-end mb-6">
<i class="fas fa-times text-white text-xl close-menu"></i>
</div>
<ul class="flex flex-col space-y-4">
<li><a href="#home" class="text-white text-xl hover:text-indigo-400 transition-colors">Home</a></li>
<li><a href="#about" class="text-white text-xl hover:text-indigo-400 transition-colors">About</a></li>
<li><a href="#skills" class="text-white text-xl hover:text-indigo-400 transition-colors">Skills</a></li>
<li><a href="#projects" class="text-white text-xl hover:text-indigo-400 transition-colors">Projects</a></li>
<li><a href="#contact" class="text-white text-xl hover:text-indigo-400 transition-colors">Contact</a></li>
</ul>
</div>
<!-- Hero Section -->
<section id="home" class="min-h-screen flex items-center justify-center px-6 bg-gray-900">
<div class="text-center">
<p class="text-indigo-400 mb-2 tracking-wider font-medium">WELCOME TO MY PORTFOLIO</p>
<h1 class="text-4xl md:text-6xl font-bold text-white mb-4 hero-text">
Hi, I'm <span class="text-indigo-400">SK Motalib</span>
</h1>
<p class="text-lg md:text-xl text-gray-300 mb-6 max-w-xl mx-auto">
Computer Science (AI & ML) Student | Building Innovative AI Solutions
</p>
<div class="flex justify-center space-x-4">
<a href="#projects" class="btn-primary font-medium">View Projects</a>
<a href="#contact" class="px-6 py-3 rounded-full font-medium border border-white text-white hover:bg-white hover:text-indigo-600 transition-all">Contact Me</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 px-6 bg-gray-800">
<div class="max-w-5xl mx-auto">
<h2 class="text-3xl font-bold section-header text-white">About Me</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<p class="text-gray-300 mb-4">
I'm a BTech student in Computer Science (AI & ML) at Government Engineering College, expected to graduate in 2028. My passion lies in creating AI-driven solutions to solve real-world problems.
</p>
<p class="text-gray-300 mb-4">
As an active member of the AI/ML Club, I work on projects and certifications to enhance my skills. My goal is to develop innovative AI applications that drive efficiency and impact.
</p>
<a href="#" class="btn-primary inline-block font-medium mt-4">Download CV <i class="fas fa-download ml-2"></i></a>
</div>
<div class="grid grid-cols-2 gap-4">
<div class="card p-4">
<i class="fas fa-graduation-cap text-indigo-400 text-xl mb-2"></i>
<h3 class="text-lg font-medium text-white">Education</h3>
<p class="text-gray-400 text-sm">BTech, AI & ML (2024-2028)</p>
</div>
<div class="card p-4">
<i class="fas fa-code-branch text-indigo-400 text-xl mb-2"></i>
<h3 class="text-lg font-medium text-white">Experience</h3>
<p class="text-gray-400 text-sm">AI/ML Projects</p>
</div>
<div class="card p-4">
<i class="fas fa-laptop-code text-indigo-400 text-xl mb-2"></i>
<h3 class="text-lg font-medium text-white">Development</h3>
<p class="text-gray-400 text-sm">Web & AI Solutions</p>
</div>
<div class="card p-4">
<i class="fas fa-brain text-indigo-400 text-xl mb-2"></i>
<h3 class="text-lg font-medium text-white">AI Research</h3>
<p class="text-gray-400 text-sm">Deep Learning & NLP</p>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-20 px-6 bg-gray-900">
<div class="max-w-5xl mx-auto">
<h2 class="text-3xl font-bold section-header text-white">Technical Skills</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="card p-5">
<h3 class="text-lg font-medium text-white flex items-center">
<i class="fab fa-python mr-2 text-indigo-400"></i>Python
</h3>
<div class="skill-bar">
<div class="skill-level" data-level="90%"></div>
</div>
<p class="text-right text-indigo-400 text-sm mt-1">90%</p>
</div>
<div class="card p-5">
<h3 class="text-lg font-medium text-white flex items-center">
<i class="fab fa-react mr-2 text-indigo-400"></i>React.js
</h3>
<div class="skill-bar">
<div class="skill-level" data-level="60%"></div>
</div>
<p class="text-right text-indigo-400 text-sm mt-1">60%</p>
</div>
<div class="card p-5">
<h3 class="text-lg font-medium text-white flex items-center">
<i class="fas fa-brain mr-2 text-indigo-400"></i>TensorFlow
</h3>
<div class="skill-bar">
<div class="skill-level" data-level="80%"></div>
</div>
<p class="text-right text-indigo-400 text-sm mt-1">80%</p>
</div>
<div class="card p-5">
<h3 class="text-lg font-medium text-white flex items-center">
<i class="fab fa-node-js mr-2 text-indigo-400"></i>Node.js
</h3>
<div class="skill-bar">
<div class="skill-level" data-level="65%"></div>
</div>
<p class="text-right text-indigo-400 text-sm mt-1">65%</p>
</div>
<div class="card p-5">
<h3 class="text-lg font-medium text-white flex items-center">
<i class="fas fa-database mr-2 text-indigo-400"></i>MongoDB
</h3>
<div class="skill-bar">
<div class="skill-level" data-level="70%"></div>
</div>
<p class="text-right text-indigo-400 text-sm mt-1">70%</p>
</div>
<div class="card p-5">
<h3 class="text-lg font-medium text-white flex items-center">
<i class="fas fa-search mr-2 text-indigo-400"></i>Elasticsearch
</h3>
<div class="skill-bar">
<div class="skill-level" data-level="60%"></div>
</div>
<p class="text-right text-indigo-400 text-sm mt-1">60%</p>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 px-6 bg-gray-800">
<div class="max-w-5xl mx-auto">
<h2 class="text-3xl font-bold section-header text-white">My Projects</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="card p-5">
<h3 class="text-lg font-medium text-white mb-2">Naukri.com Clone</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="bg-indigo-900 text-indigo-200 text-xs px-2 py-1 rounded-full">React.js</span>
<span class="bg-indigo-900 text-indigo-200 text-xs px-2 py-1 rounded-full">Node.js</span>
<span class="bg-indigo-900 text-indigo-200 text-xs px-2 py-1 rounded-full">MongoDB</span>
<span class="bg-indigo-900 text-indigo-200 text-xs px-2 py-1 rounded-full">Elasticsearch</span>
</div>
<p class="text-gray-400 text-sm mb-3">A job portal clone with user registration, job posting, search with filters, and application tracking.</p>
<div class="flex justify-between">
<a href="#" class="text-indigo-400 hover:text-indigo.ConcurrentModificationException200 text-sm">View Details</a>
<a href="#" class="text-indigo-400 hover:text-indigo-200"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="card p-5">
<h3 class="text-lg font-medium text-white mb-2">Advanced AI Assistant</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="bg-indigo-900 text-indigo-200 text-xs px-2 py-1 rounded-full">Python</span>
<span class="bg-indigo-900 text-indigo-200 text-xs px-2 py-1 rounded-full">TensorFlow</span>
<span class="bg-indigo-900 text-indigo-200 text-xs px-2 py-1 rounded-full">NLP</span>
</div>
<p class="text-gray-400 text-sm mb-3">An intelligent assistant with context-aware conversations and task automation.</p>
<div class="flex justify-between">
<a href="#" class="text-indigo-400 hover:text-indigo-200 text-sm">View Details</a>
<a href="#" class="text-indigo-400 hover:text-indigo-200"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="card p-5">
<h3 class="text-lg font-medium text-white mb-2">3D Model Generator</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="bg-indigo-900 text-indigo-200 text-xs px-2 py-1 rounded-full">Python</span>
<span class="bg-indigo-900 text-indigo-200 text-xs px-2 py-1 rounded-full">Tkinter</span>
<span class="bg-indigo-900 text-indigo-200 text-xs px-2 py-1 rounded-full">OpenCV</span>
</div>
<p class="text-gray-400 text-sm mb-3">A prototype to convert images or text into 3D models using AI.</p>
<div class="flex justify-between">
<a href="#" class="text-indigo-400 hover:text-indigo-200 text-sm">View Details</a>
<a href="#" class="text-indigo-400 hover:text-indigo-200"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 px-6 bg-gray-900">
<div class="max-w-5xl mx-auto text-center">
<h2 class="text-3xl font-bold section-header text-white">Get in Touch</h2>
<p class="text-gray-300 mb-6 max-w-lg mx-auto">
Interested in AI & ML projects or collaboration? Let's connect!
</p>
<div class="flex justify-center space-x-6 mb-8">
<a href="mailto:skmotalib@example.com" class="social-icon text-white text-2xl"><i class="fas fa-envelope"></i></a>
<a href="https://www.linkedin.com/in/sk-motalib-" class="social-icon text-white text-2xl"><i class="fab fa-linkedin"></i></a>
<a href="tel:+917205774286" class="social-icon text-white text-2xl"><i class="fas fa-phone"></i></a>
<a href="#" class="social-icon text-white text-2xl"><i class="fab fa-github"></i></a>
</div>
<div class="max-w-md mx-auto">
<div class="grid grid-cols-1 gap-4">
<input type="text" placeholder="Your Name" class="contact-input">
<input type="email" placeholder="Your Email" class="contact-input">
<textarea placeholder="Your Message" class="contact-input h-24 resize-none"></textarea>
<button class="btn-primary font-medium">Send Message</button>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-6 px-6 bg-gray-800 text-white text-center">
<p>© 2025 SK Motalib. All rights reserved.</p>
</footer>
<script>
// Smooth scrolling
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Mobile menu toggle
const hamburger = document.querySelector('.hamburger');
const mobileMenu = document.querySelector('.mobile-menu');
const closeMenu = document.querySelector('.close-menu');
hamburger.addEventListener('click', () => mobileMenu.classList.add('active'));
closeMenu.addEventListener('click', () => mobileMenu.classList.remove('active'));
// Skill bar animation
document.querySelectorAll('.skill-level').forEach(bar => {
setTimeout(() => {
bar.style.width = bar.getAttribute('data-level');
}, 500);
});
</script>
</body>
</html>