-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
418 lines (382 loc) · 16.1 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Arabinda Das</title>
</head>
<body>
<!-- Header -->
<section id="header">
<div class="header container">
<div class="nav-bar">
<div class="brand">
<a href="#AD">
<h1><span>A</span>rabinda <span>D</span>as</h1>
</a>
</div>
<div class="nav-list">
<div class="hamburger">
<div class="bar"></div>
</div>
<ul>
<li><a href="#AD" data-after="Home">Home</a></li>
<li><a href="#services" data-after="Service">Education</a></li>
<li><a href="#projects" data-after="Projects">Projects</a></li>
<li><a href="#about" data-after="About">About</a></li>
<li><a href="#contact" data-after="Contact">Contact</a></li>
</ul>
</div>
</div>
</div>
</section>
<!-- End Header -->
<script>
document.addEventListener('DOMContentLoaded', function () {
const hamburger = document.querySelector('.hamburger');
const navList = document.querySelector('.nav-list ul');
const line = document.querySelector('.line'); // Add this line
hamburger.addEventListener('click', function () {
hamburger.classList.toggle('active');
navList.classList.toggle('active');
line.classList.toggle('active'); // Toggle the 'active' class for the line element
});
// Smooth scrolling
const navLinks = document.querySelectorAll('.nav-list ul a');
navLinks.forEach(function (link) {
link.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetSection = document.querySelector(targetId);
const headerHeight = document.querySelector('#header').offsetHeight;
if (targetSection) {
const targetPosition = targetSection.offsetTop - headerHeight;
window.scrollTo({
top: targetPosition,
behavior: 'smooth'
});
// Close navigation menu after clicking a link on mobile
if (navList.classList.contains('active')) {
hamburger.classList.remove('active');
navList.classList.remove('active');
line.classList.remove('active'); // Remove 'active' class from line element
}
}
});
});
});
</script>
<!-- AD Section -->
<section id="AD">
<div class="AD container">
<div>
<h1>Hello, <span></span></h1>
<h1>My Name is <span></span></h1>
<h1>Arabinda Das <span></span></h1>
<a href="#services" type="button" class="cta">Portfolio</a>
</div>
<div class="profile-pics about-img">
<img src="./linkedin_pic.png" alt="Other Picture 2" class="blink-circle">
<img src="./Maidan.jpg" alt="Profile Picture" class="blink-circle">
</div>
</div>
</section>
<!-- End Section -->
<!-- Service Section -->
<section id="services">
<div class="services container">
<div class="service-top">
<h1 class="section-title">Edu<span>cat</span>ion</h1>
</div>
<div class="service-bottom">
<div class="service-item">
<div class="icon"><img src="istockphoto.png" /></div>
<h2>Post-Graduation</h2>
<p>Master of Computer Application (M.C.A)
Jadavpur University </br></br>November 2021 - August 2023 | Grade: 7.72 CGPA
</p>
</div>
<div class="service-item">
<div class="icon"><img src="istockphoto.png" /></div>
<h2>Under-Graduation</h2>
<p>B. Sc Mathematics (Hons.) | June 2018 - August 2021</p>
<p>Bidhannagar College, North 24 Parganas | Grade: 8.54 CGPA
</p>
</div>
<div class="service-item">
<div class="icon"><img src="istockphoto.png" /></div>
<h2>Higher Secondary</h2>
<p>Kamalpur Netaji High School, Bankura</p>
<p></br>April 2016 - April 2017 | Grade: 87%
</p>
</div>
<div class="service-item">
<div class="icon"><img src="istockphoto.png" /></div>
<h2>Secondary School</h2>
<p>Ananda Marga High School,</br> Purulia</p>
<p></br>April 2014 - April 2015 | Grade: 85.43%</p>
</div>
</div>
</div>
</section>
<!-- End Service Section -->
<!-- Service Section -->
<section id="services">
<div class="services container">
<div class="service-top">
<h1 class="section-title">Certi<span>fic</span>ates</h1>
</div>
<div class="service-bottom">
<div class="service-item">
<div class="icon"><img src="cer.png" /></div>
<h2>Python for Data Science, AI & Development</h2>
<p>by IBM | Coursera
</p>
<p><a style="text-decoration: none"
href="https://www.coursera.org/account/accomplishments/certificate/DJMH3NJQRZW2"
target="_blank"></br></br>Click to view</a></p>
</div>
<div class="service-item">
<div class="icon"><img src="cer.png" /></div>
<h2>Mastering Data Structures & Algorithms using C and C++</h2>
<p>by Udemy
</p>
<p><a style="text-decoration: none"
href="https://www.udemy.com/certificate/UC-4819da29-035d-4d0c-ad2a-0ca0fa559643/"
target="_blank"></br></br>Click to view</a></p>
</div>
<div class="service-item">
<div class="icon"><img src="cer.png" /></div>
<h2>Introduction to Data Engineering</h2>
<p>by IBM | Coursera
</p>
<p><a style="text-decoration: none"
href="https://www.coursera.org/account/accomplishments/certificate/B77WVGVQRJTZ"
target="_blank"></br></br>Click to view</a></p>
</div>
<div class="service-item">
<div class="icon"><img src="cer.png" /></div>
<h2>Supervised Machine Learning: Regression and Classification</h2>
<p>by Stanford Online
</p>
<p><a style="text-decoration: none"
href="https://www.coursera.org/account/accomplishments/certificate/A7GA2ND7KY7M"
target="_blank"></br></br>Click to view</a></p>
</div>
<div class="service-bottom">
<div class="service-item">
<div class="icon"><img src="cer.png" /></div>
<h2>Programming with Google Go </h2>
<p>by UC Irvine
</p>
<p><a style="text-decoration: none"
href="https://www.coursera.org/account/accomplishments/specialization/DFVBQEF8JQEM"
target="_blank"></br></br>Click to view</a></p>
</div>
<div class="service-item">
<div class="icon"><img src="cer.png" /></div>
<h2>Introduction to Git and GitHub</h2>
<p>by Google
</p>
<p><a style="text-decoration: none"
href="https://www.coursera.org/account/accomplishments/certificate/H5YUU4M3SATN"
target="_blank"></br></br>Click to view</a></p>
</div>
<div class="service-item">
<div class="icon"><img src="cer.png" /></div>
<h2>Hands-on Introduction to Linux Commands and Shell Scripting</h2>
<p>by Coursera
</p>
<p><a style="text-decoration: none"
href="https://www.coursera.org/account/accomplishments/certificate/3J86PA9UC95V"
target="_blank"></br></br>Click to view</a></p>
</div>
<div class="service-item">
<div class="icon"><img src="cer.png" /></div>
<h2>Programming Foundations with JavaScript, HTML and CSS</h2>
<p>by Duke University | Coursera
</p>
<p><a style="text-decoration: none"
href="https://www.coursera.org/account/accomplishments/certificate/VKT426D8MRAD"
target="_blank"></br></br>Click to view</a></p>
</div>
</div>
<div class="service-bottom">
<div class="service-item">
<div class="icon"><img src="cer.png" /></div>
<h2>My SQL Basics</h2>
<p>by Great
Learning Academy
</p>
<p><a style="text-decoration: none"
href="https://drive.google.com/file/d/1qdLQkbm4w2bKq9ix6wUDMZaOMZUgPrQi/view?usp=share_link"
target="_blank"></br></br>Click to view</a></p>
</div>
<div class="service-item">
<div class="icon"><img src="cer.png" /></div>
<h2>Data Structures in C</h2>
<p>by Great
Learning Academy
</p>
<p><a style="text-decoration: none"
href="https://drive.google.com/file/d/16Oc0Il7bRWmJYc5ZCL5EcRlPic2gHonN/view?usp=share_link"
target="_blank">Click to view</a></p>
</div>
<div class="service-item">
<div class="icon"><img src="cer.png" /></div>
<h2>Python Fundamentals for
Beginners</h2>
<p>by Great
Learning Academy
</p>
<p><a style="text-decoration: none"
href="https://drive.google.com/file/d/1WZsKbRuY36tWj91ZGZmqczFwpFPu9rFS/view?usp=share_link"
target="_blank">Click to view</a></p>
</div>
<div class="service-item">
<div class="icon"><img src="cer.png" /></div>
<h2>Machine Learning with Python</h2>
<p>by IBM |
Coursera
</p>
<p><a style="text-decoration: none"
href="https://drive.google.com/file/d/1a2Ca0tgFFST6RwXo1l87QtfLdcWCDyLW/view?usp=sharing"
target="_blank"></br></br>Click to view</a></p>
</div>
</div>
</div>
</section>
<!-- End Service Section -->
<!-- Projects Section -->
<section id="projects">
<div class="projects container">
<div class="projects-header">
<h1 class="section-title">Recent <span>Projects</span></h1>
</div>
<div class="all-projects">
<div class="project-item">
<div class="project-info">
<h1><a href="https://github.com/arabinda0704/BENGALI-TEXT-CLASSIFICATION" target="_blank" type="button"
class="cta">Project 1</a></h1>
<h2><b>Bengali Text Classification using Hybrid Model(LSI & Word Embedding)</b></h2>
<p>Developed a Bengali text classification project using
Combination of Latent Semantic Indexing (LSI) and word
vector techniques.
Built the model by leveraging LSI's ability to identify latent
semantic relationships in documents and word vectors'
ability to capture semantic information</p>
</div>
<div class="project-img">
<img src="./img-1.png" alt="img">
</div>
</div>
</div>
<div class="all-projects">
<div class="project-item">
<div class="project-img">
<img src="./img-1.png" alt="img">
</div>
<div class="project-info">
<h1><a href="https://github.com/arabinda0704/Crop-Price-Predictor" target="_blank" type="button"
class="cta">Project 2</a></h1>
<h2><b>Crop Price Prediction System using Machine Learning</b></h2>
<p>Crop Price Prediction System is a technique in which the previous data will be processed and on the
basis of that future prediction will be implemented, thus we will be able to address major problem of our
farmers,
as the growing inflation in our economy the crop price is also needed to define on the
basis of current market scenerio!</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Projects Section -->
<!-- About Section -->
<section id="about">
<div class="about container">
<div class="col-left">
<div class="about-img">
<img src="./arabinda-pp.png" alt="img">
</div>
</div>
<div class="col-right">
<h1 class="section-title">About <span>me</span></h1>
<p></p>
<h2>Hello! I'm Arabinda Das</h2>
<p>I'm a MCA graduate with a passion for IT and a skill set that covers Python, Go, C, C++, SQL, NumPy, Pandas..
I'm eager to contribute to Data Science, Data Analyst, Data Engineering and Software Engineering with a strong
foundation in Data structures & Algorithms, and Database Management. Proficient in Git, GitHub, and Linux, I
excel in collaborative IT environments. I hold a 5-star HackerRank rating in SQL, C++, and Java, continuously
improving on platforms like GeeksforGeeks and Leetcode. I'm enthusiastic about analyzing Data to get insight
from them and
also predicting the futuristic outcome using Machine Learning Algorithms and creating innovative software
dedicated
to driving technological excellence. Excited to connect with like-minded professionals and explore
opportunities
in the IT industry.<a href="#contact">Contact me</a></p>
<a href="https://drive.google.com/file/d/1-SmkT9V4uFcayylntrEJ7gSI5KYBK8kK/view?usp=sharing" target="_blank"
class="dta">Download Resume</a>
</div>
</div>
</section>
<!-- End About Section -->
<!-- Contact Section -->
<section id="contact">
<div class="contact container">
<div>
<h1 class="section-title">Contact <span>info</span></h1>
</div>
<div class="contact-items">
<div class="contact-item">
<div class="icon"><img src="./phone.png" /></div>
<div class="contact-info">
<h1>Contact Me</a></h1>
<h2><a href="thanks.html" target="_blank">Mobile : +91 9064xxxxxx</a></h2>
</div>
</div>
<div class="contact-item">
<div class="icon"><img src="./new-post.png" /></div>
<div class="contact-info">
<h1>Email</h1>
<h2><a href="mailto:7arabinda@gmail.com" target="_blank">7arabinda@gmail.com</a></h2>
</div>
</div>
<div class="contact-item">
<div class="icon"><img src="./map-marker.png" /></div>
<div class="contact-info">
<h1>Address</h1>
<h2>Vill PO Sidhi Dist Purulia PS Joypur 723213
W.B</h2>
</div>
</div>
</div>
</div>
</section>
<!-- End Contact Section -->
<!-- Footer -->
<section id="footer">
<div class="footer container">
<div class="brand">
<h1><span>A</span>rabinda <span>D</span>as</h1>
</div>
<h2>Social Media</h2>
<div class="social-icon">
<div class="social-item">
<a href="https://www.linkedin.com/in/arabinda-das-7b37b0226/" target="blank"><img src="linkedin.png" /></a>
</div>
<div class="social-item">
<a href="https://github.com/arabinda0704" target="blank"><img src="github.png" /></a>
</div>
<div class="social-item">
<a href="https://www.facebook.com/profile.php?id=100009205487883&sk=about" target="blank"><img
src="facebook.png" /></a>
</div>
</div>
<p>Created by Arabinda Das</p>
</div>
</section>
<!-- End Footer -->
<!-- <script src="./app.js"></script> -->
</body>
</html>