-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
367 lines (345 loc) · 17.6 KB
/
index.html
File metadata and controls
367 lines (345 loc) · 17.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- added from previous -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Rakesh Kumar Mandal - AI/ML Professional Portfolio">
<meta name="author" content="Rakesh Kumar Mandal">
<title>Rakesh Kumar Mandal | AI/ML Professional</title>
<!-- Google Fonts -->
<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=Montserrat:wght@300;400;500;600;700;900&family=Ubuntu:wght@400;500;700&display=swap" rel="stylesheet">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<!-- Typed.js Library -->
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.16"></script>
<!-- Custom CSS -->
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- Navigation -->
<!-- <nav class="navbar" id="navbar">
<div class="nav-container">
<a href="#home" class="nav-logo">RKM</a>
<ul class="nav-menu" id="navMenu">
<li class="nav-item">
<a href="#home" class="nav-link active">Home</a>
</li>
<li class="nav-item">
<a href="#about" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="#projects" class="nav-link">Projects</a>
</li>
<li class="nav-item">
<a href="hobbies.html" class="nav-link">Hobbies</a>
</li>
<li class="nav-item">
<a href="#contact" class="nav-link">Contact</a>
</li>
</ul>
<button class="nav-toggle" id="navToggle" aria-label="Toggle navigation">
<span class="hamburger"></span>
</button>
</div>
</nav> -->
<!-- Navigation -->
<nav class="navbar" id="navbar">
<div class="nav-container">
<a href="#home" class="nav-logo">RKM</a>
<ul class="nav-menu" id="navMenu">
<li class="nav-item">
<a href="#home" class="nav-link active">Home</a>
</li>
<li class="nav-item">
<a href="#about" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="#skills" class="nav-link">Skills</a>
</li>
<li class="nav-item">
<a href="#education" class="nav-link">Experience</a>
</li>
<li class="nav-item">
<a href="#projects" class="nav-link">Projects</a>
</li>
<li class="nav-item">
<a href="hobbies.html" class="nav-link">Hobbies</a>
</li>
<li class="nav-item">
<a href="#contact" class="nav-link">Contact</a>
</li>
</ul>
<button class="nav-toggle" id="navToggle" aria-label="Toggle navigation">
<span class="hamburger"></span>
</button>
</div>
</nav>
<!-- Hero Section -->
<section class="hero" id="home">
<div class="hero-container">
<div class="hero-content">
<h1 class="hero-greeting">
Hey, I am <span class="hero-name">Rakesh Kumar Mandal</span>
</h1>
<div class="hero-typing-container">
<span class="hero-typing-prefix">I am </span>
<span id="typed" class="hero-typed"></span>
</div>
<a href="downloadables/resume.pdf" class="btn btn-primary" download><i class="bi bi-download"></i> Resume</a>
<a href="#contact" class="btn btn-primary">Hire Me</a>
</div>
<div class="hero-image-wrapper">
<div class="hero-image-bg"></div>
<img src="images/altprofilenewsq.png" alt="Rakesh Kumar Mandal" class="hero-image">
<div class="hero-decoration hero-decoration-1"></div>
<div class="hero-decoration hero-decoration-2"></div>
</div>
</div>
</section>
<!-- About Section -->
<section class="about-section" id="about">
<div class="container">
<h2 class="section-title">About Me</h2>
<div class="about-content">
<div class="about-text">
<p class="about-intro">
I'm a passionate <strong>Data Science and AI/ML practitioner</strong> currently pursuing BS in Data Science & Applications at IIT Madras.
I specialize in building intelligent systems that solve real-world problems using Machine Learning, Deep Learning, and modern web technologies.
</p>
<p class="about-description">
With a strong foundation in programming and statistics, I've worked on diverse projects ranging from
recommendation systems to full-stack web applications. I'm particularly interested in Natural Language Processing,
Computer Vision, and building scalable ML solutions.
</p>
<p class="about-description">
As a freelance developer, I've helped clients transform their ideas into functional applications.
I believe in writing clean, maintainable code and staying updated with the latest technologies in the rapidly evolving field of AI/ML.
</p>
<div class="about-buttons">
<a href="downloadables/resume.pdf" class="btn btn-primary" download><i class="bi bi-download"></i> Resume</a>
<a href="#contact" class="btn btn-primary">Hire Me</a>
</div>
</div>
<div class="about-image-container">
<img src="images/aboutimg3.png" alt="About Rakesh" class="about-image">
<div class="about-social-links">
<a href="https://github.com/rakeshkr-code" target="_blank" rel="noopener noreferrer" class="social-link" aria-label="GitHub">
<i class="bi bi-github"></i>
</a>
<a href="#" target="_blank" rel="noopener noreferrer" class="social-link" aria-label="LinkedIn">
<i class="bi bi-linkedin"></i>
</a>
<a href="#" target="_blank" rel="noopener noreferrer" class="social-link" aria-label="Twitter">
<i class="bi bi-twitter"></i>
</a>
<a href="#" target="_blank" rel="noopener noreferrer" class="social-link" aria-label="Instagram">
<i class="bi bi-instagram"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section class="skills-section" id="skills">
<div class="container">
<h2 class="section-title">Technical Skills</h2>
<div class="skills-grid">
<div class="skill-category">
<h3 class="skill-category-title">
<i class="bi bi-code-slash"></i> Programming Languages
</h3>
<div class="skill-tags">
<span class="skill-tag">Python</span>
<span class="skill-tag">Java</span>
<span class="skill-tag">JavaScript</span>
<span class="skill-tag">SQL</span>
</div>
</div>
<div class="skill-category">
<h3 class="skill-category-title">
<i class="bi bi-robot"></i> AI/ML & Data Science
</h3>
<div class="skill-tags">
<span class="skill-tag">Machine Learning</span>
<span class="skill-tag">Deep Learning</span>
<span class="skill-tag">NLP</span>
<span class="skill-tag">NumPy</span>
<span class="skill-tag">Pandas</span>
<span class="skill-tag">Scikit-Learn</span>
<span class="skill-tag">TensorFlow</span>
<span class="skill-tag">PyTorch</span>
</div>
</div>
<div class="skill-category">
<h3 class="skill-category-title">
<i class="bi bi-palette"></i> Web Development
</h3>
<div class="skill-tags">
<span class="skill-tag">HTML</span>
<span class="skill-tag">CSS</span>
<span class="skill-tag">Bootstrap</span>
<span class="skill-tag">Vue.js</span>
<span class="skill-tag">Flask</span>
<span class="skill-tag">REST APIs</span>
</div>
</div>
<div class="skill-category">
<h3 class="skill-category-title">
<i class="bi bi-database"></i> Databases & Tools
</h3>
<div class="skill-tags">
<span class="skill-tag">PostgreSQL</span>
<span class="skill-tag">SQLite</span>
<span class="skill-tag">Git</span>
<span class="skill-tag">GitHub</span>
<span class="skill-tag">Redis</span>
<span class="skill-tag">Celery</span>
</div>
</div>
</div>
</div>
</section>
<!-- Education & Experience Timeline -->
<section class="timeline-section" id="education">
<div class="container">
<h2 class="section-title">Education & Experience</h2>
<div class="timeline">
<!-- Education on the left -->
<div class="timeline-item timeline-item-left">
<div class="timeline-content">
<div class="timeline-date">2021 - 2025</div>
<h3 class="timeline-title">BS in Data Science and Applications</h3>
<p class="timeline-institution">IIT Madras</p>
<p class="timeline-description">Specialized in Machine Learning, Statistical Analysis, and Data Engineering. Completed multiple projects in predictive modeling and data visualization.</p>
</div>
</div>
<!-- Internship on the right (same time period) -->
<div class="timeline-item timeline-item-right">
<div class="timeline-content">
<div class="timeline-date">2022 - 2023</div>
<h3 class="timeline-title">ML Engineering Intern</h3>
<p class="timeline-institution">Tech Startup</p>
<p class="timeline-description">Developed and deployed ML models for customer behavior prediction. Worked on data preprocessing pipelines and model optimization.</p>
</div>
</div>
<!-- Another internship on the left -->
<div class="timeline-item timeline-item-left">
<div class="timeline-content">
<div class="timeline-date">2023 - 2024</div>
<h3 class="timeline-title">Full-Stack Developer Intern</h3>
<p class="timeline-institution">Web Development Agency</p>
<p class="timeline-description">Built responsive web applications using Vue.js and Flask. Implemented RESTful APIs and integrated third-party services.</p>
</div>
</div>
<!-- Freelance work on the right -->
<div class="timeline-item timeline-item-right">
<div class="timeline-content">
<div class="timeline-date">2022 - Present</div>
<h3 class="timeline-title">Freelance ML Practitioner & Developer</h3>
<p class="timeline-institution">Self-Employed</p>
<p class="timeline-description">Developed ML models and web applications for various clients. Specializing in recommendation systems, NLP applications, and full-stack development.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section class="projects-section" id="projects">
<div class="container">
<h2 class="section-title">Featured Projects</h2>
<div class="projects-filter">
<button class="filter-btn active" data-filter="all">All</button>
<button class="filter-btn" data-filter="ai-ml">AI/ML</button>
<button class="filter-btn" data-filter="web-dev">Web Dev</button>
<button class="filter-btn" data-filter="data-analysis">Data Analysis</button>
<button class="filter-btn" data-filter="nlp">NLP</button>
</div>
<div class="projects-grid" id="projectsGrid">
<!-- Projects will be dynamically loaded here -->
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact-section" id="contact">
<div class="container">
<h2 class="section-title">Get In Touch</h2>
<div class="contact-content">
<div class="contact-info">
<h3 class="contact-subtitle">Let's Work Together</h3>
<p class="contact-description">I'm available for freelance work, collaboration on AI/ML projects, and web development opportunities. Feel free to reach out!</p>
<div class="contact-details">
<div class="contact-item">
<i class="bi bi-envelope"></i>
<span>mandalrakesh628@gmail.com</span>
</div>
<div class="contact-item">
<i class="bi bi-geo-alt"></i>
<span>West Bengal, India</span>
</div>
</div>
<div class="social-links">
<a href="https://github.com/rakeshkr-code" target="_blank" rel="noopener noreferrer" class="social-link" aria-label="GitHub">
<i class="bi bi-github"></i>
</a>
<a href="#" target="_blank" rel="noopener noreferrer" class="social-link" aria-label="LinkedIn">
<i class="bi bi-linkedin"></i>
</a>
<a href="#" target="_blank" rel="noopener noreferrer" class="social-link" aria-label="Twitter">
<i class="bi bi-twitter"></i>
</a>
</div>
</div>
<form class="contact-form" id="contactForm">
<div class="form-group">
<label for="name" class="form-label">Name</label>
<input type="text" id="name" name="name" class="form-input" required>
</div>
<div class="form-group">
<label for="email" class="form-label">Email</label>
<input type="email" id="email" name="email" class="form-input" required>
</div>
<div class="form-group">
<label for="subject" class="form-label">Subject</label>
<input type="text" id="subject" name="subject" class="form-input" required>
</div>
<div class="form-group">
<label for="message" class="form-label">Message</label>
<textarea id="message" name="message" class="form-textarea" rows="5" required></textarea>
</div>
<button type="submit" class="btn btn-primary btn-full">Send Message</button>
</form>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>© 2025 Rakesh Kumar Mandal. All rights reserved.</p>
</div>
</footer>
<!-- Project Modal -->
<div class="modal" id="projectModal">
<div class="modal-overlay" id="modalOverlay"></div>
<div class="modal-content">
<button class="modal-close" id="modalClose" aria-label="Close modal">
<i class="bi bi-x-lg"></i>
</button>
<div class="modal-body" id="modalBody">
<!-- Project details will be loaded here -->
</div>
</div>
</div>
<!-- Typed.js Library - FIXED CDN -->
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
<!-- Custom JavaScript - Load in correct order -->
<script src="js/projects-data.js"></script>
<script src="js/script.js"></script>
</body>
</html>
<!--
</body>
</html> -->