-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.html
518 lines (470 loc) · 24.2 KB
/
project.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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-10px) scale(1.05);
/* Makes card pop up */
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
/* Adds shadow for a 3D effect */
}
/* Remove initial hidden state of images and card body */
.card img {
transform: scale(1);
transition: transform 0.5s ease;
/* Smooth scaling effect */
}
.card-body {
opacity: 1;
transition: opacity 0.5s ease, transform 0.5s ease;
}
/* Button hover effect */
.btn-group button {
transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-group button:hover {
background-color: #007bff;
color: white;
/* Button style changes on hover */
}
/* Additional styles to structure the page */
.container {
max-width: 1200px;
margin: 0 auto;
}
.row {
display: flex;
flex-wrap: wrap;
}
.col {
flex: 1;
min-width: 250px;
margin: 15px;
}
.card img {
width: 100%;
height: auto;
}
.card {
border: 1px solid #ddd;
border-radius: 8px;
overflow: hidden;
padding: 10px;
}
</style>
</head>
<body>
<div class="shadow-1-strong bg-white my-5 p-5" id="experience">
<h2 class="h2 fw-light mb-4">Certifications</h2>
<div class="album py-5 bg-body-tertiary">
<div class="container">
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
<!-- Certificate 1 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/Softwareengineeringcertificate.png" alt="Software Engineering Certificate">
<div class="card-body">
<h5>Software Engineering - NPTEL</h5>
<p class="card-text">In this course, I learned about software development methodologies,
requirements engineering, design patterns and testing strategies.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a
href="https://archive.nptel.ac.in/content/noc/NOC23/SEM2/Ecertificates/106/noc23-cs122/Course/NPTEL23CS122S4451202120178817.pdf">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 2 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/DBMScertificate.png" alt="Database Management Certificate">
<div class="card-body">
<h5>Database Management System - NPTEL</h5>
<p class="card-text">In this course, I learned about database design, normalization, SQL
queries, transaction management.
</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a
href="https://archive.nptel.ac.in/content/noc/NOC24/SEM1/Ecertificates/106/noc24-cs21/Course/NPTEL24CS21S65070281930077511.pdf">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 3 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/Cloudcomputingcertificate.png" alt="Cloud Computing Certificate">
<div class="card-body">
<h5>Cloud Computing - NPTEL</h5>
<p class="card-text">In this course, I learned about the fundamentals of cloud
computing, virtualization, cloud service models, cloud infrastructure and security.
</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a
href="https://archive.nptel.ac.in/content/noc/NOC23/SEM2/Ecertificates/106/noc23-cs89/Course/NPTEL23CS89S64510238520178817.pdf">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 4 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/Data science for engineers.png" alt="Data Science for Engineers Certificate">
<div class="card-body">
<h5>Data Science for Engineers - NPTEL</h5>
<p class="card-text">In this course, I learned about data analysis, statistical methods,
machine learning algorithms, visualization, big data processing.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a
href="https://archive.nptel.ac.in/content/noc/NOC24/SEM2/Ecertificates/106/noc24-cs133/Course/NPTEL24CS133S44480309502670396.pdf">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 5 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/complete c++.png" alt="The Complete Introduction to C++ Programming">
<div class="card-body">
<h5>The Complete Introduction to C++ Programming - Udemy</h5>
<p class="card-text">In this course, I gained a understanding of C++
, object-oriented programming, data
structures, memory management, and algorithm. </p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.udemy.com/certificate/UC-91e9dd57-9a2a-4ff5-8a20-c33ac66bdf64/">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 6 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/java.png" alt="Introduction to Java">
<div class="card-body">
<h5>Introduction to Java - Coursera</h5>
<p class="card-text">In this course, I learned the fundamentals of Java programming,
including object-oriented principles, data structures, exception handling.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.coursera.org/account/accomplishments/verify/BPWIFXD2VYC5">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 7 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/java crash course.png" alt="Java Training Crash Course">
<div class="card-body">
<h5>Java Training Course - Udemy</h5>
<p class="card-text">In this course, I learned the core concepts of Java programming,
variables, loops, conditional statements, object-oriented
programming, and data structures.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.udemy.com/certificate/UC-ea4d4cd2-4a1a-4572-ad8a-174998264f86/">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 8 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/python.png" alt="Get Started with Python">
<div class="card-body">
<h5>Get Started with Python - Coursera</h5>
<p class="card-text">In this course, I learned basics of Python programming,
including data types, functions, libraries and control flow.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.coursera.org/account/accomplishments/verify/8QKRGJEN5FY9">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 9 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/HTMLandCSSindepthcertificate.png" alt="HTML and CSS in depth">
<div class="card-body">
<h5>HTML and CSS in depth - Coursera</h5>
<p class="card-text">In this course, I learned advanced concepts of HTML and CSS,
focusing on semantic HTML, responsive web design, CSS layouts, and animations. </p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.coursera.org/account/accomplishments/verify/DARPDZ8HJ9UY">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 10 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/javascript.png" alt="Master Javascript from Basics to Advanced">
<div class="card-body">
<h5>Javascript (Basics to Advanced) - Udemy</h5>
<p class="card-text">In this course, I learned JavaScript fundamental topics like
variables, functions, and event handling, as well as
asynchronous programming and object-oriented
JavaScript.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.udemy.com/certificate/UC-7cccd212-f06d-4e9a-a247-6a2cf6a247a2/">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 11 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/javaScriptbasichackerrank.png" alt="JavaScript (Basic)">
<div class="card-body">
<h5>JavaScript (Basic) - HackerRank</h5>
<p class="card-text">In this course, I learned the fundamental concepts of JavaScript,
including variables, data types, loops, functions, and basic problem-solving
techniques. </p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.hackerrank.com/certificates/iframe/2faa9eff882b">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 12 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/javaScriptintermediatehackerrank.png" alt="JavaScript (Intermediate)">
<div class="card-body">
<h5>JavaScript (Intermediate) - HackerRank</h5>
<p class="card-text">In this course, I built on my JavaScript knowledge by exploring
intermediate concepts such as higher-order functions, closures, asynchronous
programming, and (DOM).</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.hackerrank.com/certificates/iframe/5829159d7df9">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 13 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/sql udemy.png" alt="SQL - The Complete Introduction to SQL Programming">
<div class="card-body">
<h5>SQL Programming - Udemy</h5>
<p class="card-text">In this course, I learned the fundamentals of SQL programming,
covering topics such as database design, querying data,
filtering results, joining tables, and aggregating data.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.udemy.com/certificate/UC-a000edd6-4147-4284-9289-8cb50215100b/">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 14 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/introductionToDatabases.png" alt="Introduction to Databases">
<div class="card-body">
<h5>Introduction to Databases - Coursera</h5>
<p class="card-text">In this course, I learned the fundamental concepts of databases,
including RDBMS, SQL, normalization, transaction management.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.coursera.org/account/accomplishments/verify/SZMK1XXW9WPA">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 15 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/sql advanced.png" alt="SQL (Advanced)">
<div class="card-body">
<h5>SQL (Advanced) - HackerRank</h5>
<p class="card-text">In this course, I advanced my SQL skills by exploring complex
queries, including window functions, common table expressions (CTEs), and advanced
joins.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.hackerrank.com/certificates/iframe/40665fb62d50">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 16 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/mongoDB.png" alt="Introduction to MongoDB">
<div class="card-body">
<h5>Introduction to MongoDB - Coursera</h5>
<p class="card-text">In this course, I learned the fundamentals of MongoDB, data
modeling, and CRUD operations.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.coursera.org/account/accomplishments/verify/L3QXPGF3CXG3">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 17 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/Introductiontomachinelearningcertificate.png" alt="Machine Learning Certificate">
<div class="card-body">
<h5>Machine Learning - Coursera</h5>
<p class="card-text">In this course, I learned concepts of machine
learning, including supervised and unsupervised learning, feature selection, model
evaluation.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.coursera.org/account/accomplishments/verify/TZPAT4WB39Z7">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 18 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/structureofcomputer.png" alt="Basic Structure of Computers Certificate">
<div class="card-body">
<h5>Basic Structure of Computers - Udemy</h5>
<p class="card-text">In this course, I learned the fundamental components of computer
systems. </p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.udemy.com/certificate/UC-158bc801-49d3-4aa6-9707-32216fb93a03/">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 19 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/internetWorking.png"
alt="How the Internet Works & the Web Development Process Certificate">
<div class="card-body">
<h5>How the Internet Works & the Web Development Process - Udemy</h5>
<p class="card-text">In this course, I learned the essential concepts of how the
internet functions, networking fundamentals and client-server
architecture.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.udemy.com/certificate/UC-6f0a8b7c-6389-4cb5-bfe4-46e5e492c8e9/">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 20 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/Cloud computing course.png"
alt="How the Internet Works & the Web Development Process Certificate">
<div class="card-body">
<h5>Cloud computing Foundations - Coursera</h5>
<p class="card-text">In this course, I learned about the fundamentals of cloud
computing, virtualization, cloud service models, cloud infrastructure and security.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.coursera.org/account/accomplishments/verify/279W9Q63JU3Z">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Certificate 21 -->
<div class="col">
<div class="card shadow-sm">
<img src="./images/googleSEO.png" alt="Introduction to Google SEO Certificate">
<div class="card-body">
<h5>Introduction to Google SEO - Coursera</h5>
<p class="card-text">In this, I learned the basics of SEO and its importance for online
visibility. It included keyword research,
on-page optimization and analyzing SEO performance.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.coursera.org/account/accomplishments/verify/5NBVGRVZJ0P1">
<button type="button" class="btn btn-sm btn-outline-secondary">View</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>