-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelpcode2.html
More file actions
368 lines (350 loc) · 16.5 KB
/
Copy pathhelpcode2.html
File metadata and controls
368 lines (350 loc) · 16.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- shortcut icon image-->
<link rel="shortcut icon" type="image/png" href="img/p3.jpg">
<title>Mahim Chowdhury | CSE Student</title>
<!-- Bootstrap 5 CSS -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<!-- fonts-family -->
<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:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet">
<!-- Bootstrap Icons -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css"
rel="stylesheet"
/>
<!-- Custom CSS -->
<link rel="stylesheet" href="CSS/style.css" />
</head>
<body>
<!-- Banner Section -->
<section class="banner-container container-fluid">
<div class="row vh-100">
<div class="col-md-9 banner-column m-auto text-center text-white p-4">
<h1 class="display-4 fw-bold">Mahim Chowdhury</h1>
<h3>CSE Dept. Student</h3>
<p class="mt-3">Welcome to my cute-themed portfolio website!</p>
<div class="mt-4">
<a href="#About" class="btn btn-light btn-lg rounded-pill px-4 me-2">About Me</a>
<a href="#Project" class="btn btn-outline-light btn-lg rounded-pill px-4">My Projects</a>
</div>
</div>
</div>
</section>
<!-- Navbar Section -->
<nav class="navbar navbar-expand-lg navbar-dark navbar-container sticky-top fw-bold">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto m-auto">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#About">ABOUT</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#Education">EDUCATION</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#Project">PROJECTS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#Work">WORK</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#Experience">EXPERIENCE</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#Courses">COURSES</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#Other">OTHER</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- About Section (unchanged as requested) -->
<div class="about-container section-container" id="About">
<div class="container">
<div class="row align-items-center">
<div class="col-md-7 py-5">
<h3>Mahim Chowdhury</h3>
<p>CSE Dept. Student</p>
<div class="row mt-4">
<div class="col-md-12">
<h2 class="section-title">About Me</h2>
<p>Hello! I'm Mahim Chowdhury, a passionate CSE student eager to explore the world of technology and innovation. I love coding, problem-solving, and creating projects that make a difference. Welcome to my personal website where I share my journey, projects, and experiences. Let's connect and collaborate!</p>
</div>
</div>
</div>
<div class="col-md-5">
<img src="img/cute bear.jpg" alt="Mahim Chowdhury" class="img-fluid rounded-img">
</div>
</div>
</div>
</div>
<!-- Education Section -->
<div class="education-container section-container" id="Education">
<div class="container">
<h2 class="section-title">Education</h2>
<div class="row">
<div class="col-md-6">
<div class="cute-card">
<div class="cute-card-header">
<i class="bi bi-mortarboard card-icon"></i>
<h5 class="mb-0">Bachelor of Science</h5>
</div>
<div class="card-body p-4">
<h6>Computer Science & Engineering</h6>
<p class="text-muted">University Name</p>
<p>2020 - 2024</p>
<p>Currently pursuing my degree with focus on software development and algorithms.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="cute-card">
<div class="cute-card-header">
<i class="bi bi-book card-icon"></i>
<h5 class="mb-0">Higher Secondary</h5>
</div>
<div class="card-body p-4">
<h6>Science Stream</h6>
<p class="text-muted">College Name</p>
<p>2018 - 2020</p>
<p>Completed with distinction in Physics, Chemistry, and Mathematics.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Projects Section -->
<div class="project-container section-container" id="Project">
<div class="container">
<h2 class="section-title">Projects</h2>
<div class="row">
<div class="col-md-4">
<div class="cute-card h-100">
<div class="card-body p-4 text-center">
<i class="bi bi-laptop card-icon"></i>
<h5>Web Application</h5>
<p>A responsive web application built with modern technologies to solve real-world problems.</p>
<span class="badge bg-primary rounded-pill">HTML/CSS</span>
<span class="badge bg-secondary rounded-pill">JavaScript</span>
</div>
</div>
</div>
<div class="col-md-4">
<div class="cute-card h-100">
<div class="card-body p-4 text-center">
<i class="bi bi-phone card-icon"></i>
<h5>Mobile App</h5>
<p>Developed a cross-platform mobile application with intuitive UI and smooth user experience.</p>
<span class="badge bg-primary rounded-pill">React Native</span>
<span class="badge bg-secondary rounded-pill">Firebase</span>
</div>
</div>
</div>
<div class="col-md-4">
<div class="cute-card h-100">
<div class="card-body p-4 text-center">
<i class="bi bi-graph-up card-icon"></i>
<h5>Data Analysis</h5>
<p>Implemented machine learning algorithms for data analysis and predictive modeling.</p>
<span class="badge bg-primary rounded-pill">Python</span>
<span class="badge bg-secondary rounded-pill">TensorFlow</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Work Section -->
<div class="work-container section-container" id="Work">
<div class="container">
<h2 class="section-title">Work Experience</h2>
<div class="row">
<div class="col-md-12">
<div class="cute-card">
<div class="card-body p-4">
<div class="d-flex justify-content-between">
<h5>Software Development Intern</h5>
<span class="text-primary">Summer 2023</span>
</div>
<p class="text-muted">Tech Company Name</p>
<ul>
<li>Developed and maintained web applications using modern frameworks</li>
<li>Collaborated with team members on agile development processes</li>
<li>Implemented responsive design principles for cross-device compatibility</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Experience Section -->
<div class="experience-container section-container" id="Experience">
<div class="container">
<h2 class="section-title">Skills & Experience</h2>
<div class="row">
<div class="col-md-6">
<h4>Technical Skills</h4>
<div class="mb-3">
<p class="mb-1">HTML/CSS</p>
<div class="progress" style="height: 10px;">
<div class="progress-bar bg-primary" role="progressbar" style="width: 90%"></div>
</div>
</div>
<div class="mb-3">
<p class="mb-1">JavaScript</p>
<div class="progress" style="height: 10px;">
<div class="progress-bar bg-primary" role="progressbar" style="width: 80%"></div>
</div>
</div>
<div class="mb-3">
<p class="mb-1">Python</p>
<div class="progress" style="height: 10px;">
<div class="progress-bar bg-primary" role="progressbar" style="width: 85%"></div>
</div>
</div>
<div class="mb-3">
<p class="mb-1">Java</p>
<div class="progress" style="height: 10px;">
<div class="progress-bar bg-primary" role="progressbar" style="width: 75%"></div>
</div>
</div>
</div>
<div class="col-md-6">
<h4>Soft Skills</h4>
<div class="d-flex flex-wrap">
<span class="badge bg-light text-dark p-2 m-1 rounded-pill">Problem Solving</span>
<span class="badge bg-light text-dark p-2 m-1 rounded-pill">Teamwork</span>
<span class="badge bg-light text-dark p-2 m-1 rounded-pill">Communication</span>
<span class="badge bg-light text-dark p-2 m-1 rounded-pill">Creativity</span>
<span class="badge bg-light text-dark p-2 m-1 rounded-pill">Time Management</span>
<span class="badge bg-light text-dark p-2 m-1 rounded-pill">Adaptability</span>
</div>
</div>
</div>
</div>
</div>
<!-- Courses Section -->
<div class="courses-container section-container" id="Courses">
<div class="container">
<h2 class="section-title">Relevant Courses</h2>
<div class="row">
<div class="col-md-4 mb-3">
<div class="cute-card h-100">
<div class="card-body p-3 text-center">
<h6>Data Structures & Algorithms</h6>
</div>
</div>
</div>
<div class="col-md-4 mb-3">
<div class="cute-card h-100">
<div class="card-body p-3 text-center">
<h6>Database Management Systems</h6>
</div>
</div>
</div>
<div class="col-md-4 mb-3">
<div class="cute-card h-100">
<div class="card-body p-3 text-center">
<h6>Web Development</h6>
</div>
</div>
</div>
<div class="col-md-4 mb-3">
<div class="cute-card h-100">
<div class="card-body p-3 text-center">
<h6>Machine Learning</h6>
</div>
</div>
</div>
<div class="col-md-4 mb-3">
<div class="cute-card h-100">
<div class="card-body p-3 text-center">
<h6>Software Engineering</h6>
</div>
</div>
</div>
<div class="col-md-4 mb-3">
<div class="cute-card h-100">
<div class="card-body p-3 text-center">
<h6>Computer Networks</h6>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Other Section -->
<div class="others-container section-container" id="Other">
<div class="container">
<h2 class="section-title">Other Interests</h2>
<div class="row">
<div class="col-md-4 text-center mb-4">
<div class="cute-card h-100">
<div class="card-body p-4">
<i class="bi bi-music-note-beamed card-icon"></i>
<h5>Music</h5>
<p>I enjoy playing guitar and listening to various genres of music in my free time.</p>
</div>
</div>
</div>
<div class="col-md-4 text-center mb-4">
<div class="cute-card h-100">
<div class="card-body p-4">
<i class="bi bi-book card-icon"></i>
<h5>Reading</h5>
<p>I love reading books, especially science fiction and technology-related literature.</p>
</div>
</div>
</div>
<div class="col-md-4 text-center mb-4">
<div class="cute-card h-100">
<div class="card-body p-4">
<i class="bi bi-controller card-icon"></i>
<h5>Gaming</h5>
<p>I enjoy playing strategy and puzzle games that challenge my problem-solving skills.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-md-12">
<h4>Let's Connect!</h4>
<p>Feel free to reach out for collaborations or just a friendly hello</p>
<div class="social-icons mt-4">
<a href="#"><i class="bi bi-envelope-fill"></i></a>
<a href="#"><i class="bi bi-linkedin"></i></a>
<a href="#"><i class="bi bi-github"></i></a>
<a href="#"><i class="bi bi-twitter"></i></a>
</div>
<p class="mt-4">© 2023 Mahim Chowdhury. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<!-- Bootstrap 5 JS Bundle -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<!-- Custom JS -->
<script src="JS/script.js"></script>
</body>
</html>