-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1195 lines (1104 loc) · 47.4 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
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
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Prithwish Sarkar-Portfolio</title>
<link rel="icon" href="./assets/images/logop1.png" />
<link rel="stylesheet" href="./assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="./assets/css/aos.css" />
<link rel="stylesheet" href="./assets/css/line-awesome.min.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
<script src="https://s3.amazonaws.com/myadvobuck/static/libs/typed.min.js"></script>
<!-- VISA Tracking Code for https://pritz-portfolio.vercel.app/ --><script>(function(v,i,s,a,t){v[t]=v[t]||function(){(v[t].v=v[t].v||[]).push(arguments)};if(!v._visaSettings){v._visaSettings={}}v._visaSettings[a]={v:'1.0',s:a,a:'1',t:t};var b=i.getElementsByTagName('body')[0];var p=i.createElement('script');p.defer=1;p.async=1;p.src=s+'?s='+a;b.appendChild(p)})(window,document,'//app-worker.visitor-analytics.io/main.js','044877a4-e0f2-11ed-b589-901b0edac50a','va')</script><!-- VISA Tracking Code for https://pritz-portfolio.vercel.app/ -->
</head>
<body data-bs-spy="scroll" data-bs-target=".navbar" onload="content()">
<!-- VISA Tracking Code for https://pritz-portfolio.vercel.app/ --><script>(function(v,i,s,a,t){v[t]=v[t]||function(){(v[t].v=v[t].v||[]).push(arguments)};if(!v._visaSettings){v._visaSettings={}}v._visaSettings[a]={v:'1.0',s:a,a:'1',t:t};var b=i.getElementsByTagName('body')[0];var p=i.createElement('script');p.defer=1;p.async=1;p.src=s+'?s='+a;b.appendChild(p)})(window,document,'//app-worker.visitor-analytics.io/main.js','044877a4-e0f2-11ed-b589-901b0edac50a','va')</script><!-- VISA Tracking Code for https://pritz-portfolio.vercel.app/ -->
<!-- LOADER -->
<div class="loader" id="load">
<div class="row my-5">
<div class="col-lg-20">
<div class="row">
<div class="col-12" data-aos="flip-left">
<div class="card-custom rounded-4 bg-base2">
<section id="serve" class="full-height px-lg-5"></section>
</div>
</div>
</div>
</div>
</div>
<div
class="spinner-border text-brand"
style="width: 3rem; height: 3rem"
role="status"
>
<span class="visually-hidden">Loading...</span>
</div>
</div>
<!-- //LOADER -->
<!-- NAVBAR -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top shadownav shadow" data-aos="fade-right" data-aos-delay="500">
<div class="container flex-lg-column" data-aos="fade-right" data-aos-delay="500">
<a
class="navbar-brand mx-lg-auto mb-lg-4"
href="https://www.linkedin.com/in/prithwish-sarkar-b08baa221/" target="_blank" data-title="Hello! How Can I Help U ?!"
>
<span class="h3 fw-bold d-block d-lg-none">Prithwish Sarkar</span>
<img
src="./assets/images/person1.png"
class="d-none d-lg-block rounded-circle" data-aos="zoom-in" data-aos-delay="600"
alt=""
/>
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav" data-aos="fade-right" data-aos-delay="450">
<ul class="navbar-nav ms-auto flex-lg-column text-lg-center">
<li class="nav-item">
<a class="nav-link" href="#home" data-aos="fade-right" data-aos-delay="450"
><i class="las la-home"></i> Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#about" data-aos="fade-right" data-aos-delay="400"
><i class="las la-address-card"></i> About</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#skills" data-aos="fade-right" data-aos-delay="350"
><i class="las la-toolbox"></i> Skills</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#work" data-aos="fade-right" data-aos-delay="300"
><i class="las la-tasks"></i> Work</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#services" data-aos="fade-right" data-aos-delay="200"
><i class="lab la-servicestack"></i> Services</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact"
><i class="las la-phone-volume"></i> Contact</a
>
</li>
<!-- terminal button added -->
<li class="nav-item">
<a role="button" class="nav-link" onclick = "createPopupWin('https://pritz69.github.io/Terminal_Portfolio/',
'Prithwish Sarkar Terminal', 1200, 650);" data-bs-toggle="modal" data-bs-target="#staticBackdrop">
<i class="las la-terminal"></i> Terminal
</a>
</li>
<!-- terminal button -->
</ul>
</div>
</div>
</nav>
<!-- collapse nav bar on clicking nav item -->
<script>
const navLink = document.querySelectorAll(".nav-item");
const navBar = document.querySelector(".navbar");
const navBarToggle = document.querySelector(".navbar-toggler");
const navBarCollapse = document.querySelector(".navbar-collapse");
navLink.forEach((link) => {
link.addEventListener("click", () => {
navBar.classList.remove("show");
navBarToggle.classList.add("collapsed");
navBarCollapse.classList.remove("show");
});
});
</script>
<!-- collapse nav bar on clicking nav item added -->
<!-- //NAVBAR -->
<!-- MODAL -->
<!-- script for popup -->
<script>
function createPopupWin(pageURL, pageTitle,popupWinWidth, popupWinHeight)
{
var left = (screen.width - popupWinWidth) / 2;
var top = (screen.height - popupWinHeight) / 4;
var myWindow = window.open(pageURL, pageTitle,'resizable=yes, width=' + popupWinWidth + ', height=' + popupWinHeight + ', top=' + top + ', left=' + left);
}
</script>
<!-- MODAL -->
<!-- CONTENT WRAPPER -->
<div id="content-wrapper">
<!-- HOME -->
<section id="home" class="full-height px-lg-5">
<div class="container">
<div class="row">
<div class="col-lg-10">
<!--typed.js texts-->
<div id="typed-string">
<p>STUDENT</p>
<p>CODER</p>
<p>DEVELOPER</p>
<p>FREELANCER</p>
<p>DESIGNER</p>
</div>
<!--type.js texts ends-->
<h1
class="display-4 fw-bold"
data-aos="fade-up"
data-aos-delay="600"
>
I'M A <span id="typed" class="text-brand"></span>
</h1>
<h1
class="display-4 fw-bold"
data-aos="fade-up"
data-aos-delay="600"
>
FROM KOLKATA, INDIA.
</h1>
<p class="lead mt-2 mb-4" data-aos="fade-up" data-aos-delay="600">
I am Prithwish Sarkar, I like Web Development and Competitive Programming. <br>I am also a part-time Teacher and a Sports Enthusiast.
</p>
<!--<h1 class="display-4 fw-bold" data-aos="fade-up" data-aos-delay="600">I'M A <span class="text-brand">CODER AND DESIGNER</span> FROM KOLKATA, INDIA</h1>
<p class="lead mt-2 mb-4" data-aos="fade-up" data-aos-delay="600">I am Arkapratim Ghosh, and I like web design and competitive programming</p>-->
<div data-aos="fade-up" data-aos-delay="700">
<a href="#work" class="btn btn-brand me-3">Explore My Work</a>
<a href="./assets/resume/resume1.pdf" target="_blank" class="link-custom"
>Download CV/Resume <i class="las la-download"></i
></a>
</div>
<!-- Script for typed text -->
<script>
var typed = new Typed("#typed", {
stringsElement: "#typed-string",
typeSpeed: 200,
backSpeed: 100,
loop: true,
});
</script>
<!-- Script for typed text ends -->
</div>
</div>
<div class="row my-5">
<div class="col-lg-20">
<div class="row">
<div
class="col-6 col-lg-4"
data-aos="fade-up"
data-aos-delay="800"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4 class="text-center">
Courses <i class="las la-project-diagram"></i>
</h4>
<p id="01" class="text-center text-brand fw-bold"><b>40</b></p>
<!-- view all courses-->
<p class="text-center"><a href="https://www.linkedin.com/in/prithwish-sarkar-b08baa221/details/certifications/" target="_blank" class="link-custom">View All <i class="las la-arrow-circle-right"></i></a>
</p>
<!-- view all courses added -->
</div>
</div>
<div
class="col-6 col-lg-4"
data-aos="fade-up"
data-aos-delay="800"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4 class="text-center">
Certificates <i class="lab la-buromobelexperte"></i>
</h4>
<p id="02" class="text-center text-brand fw-bold"><b>24</b></p>
<!-- view all certificates-->
<p class="text-center"><a href="https://www.linkedin.com/in/prithwish-sarkar-b08baa221/details/certifications/" target="_blank" class="link-custom">View All <i class="las la-arrow-circle-right"></i></a>
</p>
<!-- view all certficates added -->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //HOME -->
<!-- ABOUT -->
<section id="about" class="full-height px-lg-5">
<div class="container">
<div class="row pb-4" data-aos="fade-up">
<div class="col-lg-8">
<h6 class="text-brand">ABOUT</h6>
<h1>
My Education & Experience <i class="las la-user-edit"></i>
</h1>
</div>
</div>
<div class="row gy-5">
<div class="col-lg-6">
<div class="row gy-4">
<h3 class="mb-4" data-aos="fade-up" data-aos-delay="300">
Education
</h3>
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>
Bachelor Of Technology in Computer Science And Engineering
</h4>
<p class="text-brand mb-2">
Techno Main Saltlake (2021 - 2025)
</p>
<p class="mb-0">
I qualified in WBJEE 2021 with a rank of 3775 and took
admission in this esteemed Institute during second round of counselling.
</p>
</div>
</div>
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>Indian Certificate of Secondary Education (ICSE)</h4>
<p class="text-brand mb-2">
Vivekananda Mission School (2006 - 2019)
</p>
<p class="mb-0">
I got 97% in my ICSE Board Examination and took up Science
Stream(PCMB) for Higher Secondary Classes.
</p>
</div>
</div>
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>Indian School Certificate (ISC)</h4>
<p class="text-brand mb-2">
Vivekananda Mission School (2019 - 2021)
</p>
<p class="mb-0">
I got 94.25% in my ISC Board Examination and secured AIR 3775 in WBJEE 2021.
</p>
</div>
</div>
<div class="col-12" data-aos="fade-up" data-aos-delay="600">
<div class="card-custom rounded-4 bg-base2">
<section id="edu" data-title="I believe in learning continously and taking up challenges !" class="full-height px-lg-5"></section>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="row gy-4">
<div class="col-12" data-aos="fade-up" data-aos-delay="600">
<div class="card-custom rounded-4 bg-base2">
<section id="exp" data-title="I am always eager to learn new innovative technologies !" class="full-height px-lg-5"></section>
</div>
</div>
<h3 class="mb-4" data-aos="fade-up" data-aos-delay="300">
Experience
</h3>
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>Google Cloud Ready Facilitator Program</h4>
<p class="text-brand mb-2">
Google Cloud (Apr 2022 - Jun 2022 · 3 mos)
</p>
<p class="mb-0">
Completed all 4 tracks and got a hands-on learning of
Google Cloud basics.<br>
1. Cloud Infrastructure
<br>
2. Big Data and Machine Learning
<br>
3. Data Security, Machine Learning and Artificial Intelligence
<br>
4. Cloud-Native Application Development
</p>
</div>
</div>
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>Web Development Intern</h4>
<p class="text-brand mb-2">
The Sparks Foundation (TSF) (Nov 2022 - Dec 2022 · 2 mos)
</p>
<p class="mb-0">
Created 3 Individual Projects during my Internship and managed several Group projects/ Work. <br>
1. Created A Basic Banking System Website. <br>
2. Created A Movie Recommender Website. <br>
3. Created A Memory Game.
</p>
</div>
</div>
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>College Ambassador</h4>
<p class="text-brand mb-2">
MOOD INDIGO IIT BOMBAY (Oct 2022 - Mar 2023 · 6 mos)
</p>
<p class="mb-0">
Got to know about Social Media marketing, Public Relations and Event Management. Secured Participation and Excellence
certificate with rank 2478 and 10236 points.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //ABOUT -->
<!-- SKILLS -->
<section id="skills" class="full-height px-lg-5">
<div class="container">
<div class="row pb-4" data-aos="fade-up">
<div class="col-lg-8">
<h6 class="text-brand">SKILLS</h6>
<h1>
Languages and Tools I know
<i class="lab la-accessible-icon"></i>
</h1>
</div>
</div>
<div class="row gy-5">
<div class="col-lg-6">
<div class="row gy-4">
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>JAVA <i class="lab la-java"></i></h4>
<div class="progress">
<div
class="progress-bar bg-warning progress-bar-striped progress-bar-animated"
role="progressbar"
aria-label="Example with label"
style="width: 70%"
aria-valuenow="25"
aria-valuemin="0"
aria-valuemax="100"
>
<b>70%</b>
</div>
</div>
</div>
</div>
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>C <i class="lab la-cuttlefish"></i></h4>
<div class="progress">
<div
class="progress-bar bg-warning progress-bar-striped progress-bar-animated"
role="progressbar"
aria-label="Example with label"
style="width: 50%"
aria-valuenow="25"
aria-valuemin="0"
aria-valuemax="100"
>
<b>50%</b>
</div>
</div>
</div>
</div>
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>Python <i class="lab la-python"></i></h4>
<div class="progress">
<div
class="progress-bar bg-warning progress-bar-striped progress-bar-animated"
role="progressbar"
aria-label="Example with label"
style="width: 80%"
aria-valuenow="25"
aria-valuemin="0"
aria-valuemax="100"
>
<b>80%</b>
</div>
</div>
</div>
</div>
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>HTML <i class="lab la-html5"></i></h4>
<div class="progress">
<div
class="progress-bar bg-warning progress-bar-striped progress-bar-animated"
role="progressbar"
aria-label="Example with label"
style="width: 90%"
aria-valuenow="25"
aria-valuemin="0"
aria-valuemax="100"
>
<b>90%</b>
</div>
</div>
</div>
</div>
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>CSS <i class="lab la-css3"></i></h4>
<div class="progress">
<div
class="progress-bar bg-warning progress-bar-striped progress-bar-animated"
role="progressbar"
aria-label="Example with label"
style="width: 50%"
aria-valuenow="25"
aria-valuemin="0"
aria-valuemax="100"
>
<b>50%</b>
</div>
</div>
</div>
</div>
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>JavaScript <i class="lab la-js"></i></h4>
<div class="progress">
<div
class="progress-bar bg-warning progress-bar-striped progress-bar-animated"
role="progressbar"
aria-label="Example with label"
style="width: 70%"
aria-valuenow="25"
aria-valuemin="0"
aria-valuemax="100"
>
<b>70%</b>
</div>
</div>
</div>
</div>
<div class="col-12 eduex" data-aos="fade-up" data-aos-delay="600">
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>Machine Learning <i class="las la-terminal"></i></h4>
<div class="progress">
<div class="progress-bar bg-warning progress-bar-striped progress-bar-animated" role="progressbar"
aria-label="Example with label" style="width: 30%" aria-valuenow="25" aria-valuemin="0"
aria-valuemax="100">
<b>30%</b>
</div>
</div>
</div>
</div>
<div class="col-12 eduex" data-aos="fade-up" data-aos-delay="600">
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>Teaching<i class="las la-scroll"></i></h4>
<div class="progress">
<div class="progress-bar bg-warning progress-bar-striped progress-bar-animated" role="progressbar"
aria-label="Example with label" style="width: 95%" aria-valuenow="25" aria-valuemin="0"
aria-valuemax="100">
<b>95%</b>
</div>
</div>
</div>
</div>
<div class="col-12" data-aos="fade-up" data-aos-delay="600">
<div class="card-custom rounded-4 bg-base2">
<section
id="skillpic2"
class="full-height px-lg-5"
></section>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="row gy-4">
<div class="col-12" data-aos="fade-up" data-aos-delay="600">
<div class="card-custom rounded-4 bg-base2">
<section
id="skillpic"
class="full-height px-lg-5"
></section>
</div>
</div>
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>Bootstrap5 <i class="lab la-bootstrap"></i></h4>
<div class="progress">
<div
class="progress-bar bg-warning progress-bar-striped progress-bar-animated"
role="progressbar"
aria-label="Example with label"
style="width: 55%"
aria-valuenow="25"
aria-valuemin="0"
aria-valuemax="100"
>
<b>55%</b>
</div>
</div>
</div>
</div>
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>PHP <i class="lab la-php"></i></h4>
<div class="progress">
<div
class="progress-bar bg-warning progress-bar-striped progress-bar-animated"
role="progressbar"
aria-label="Example with label"
style="width: 70%"
aria-valuenow="25"
aria-valuemin="0"
aria-valuemax="100"
>
<b>70%</b>
</div>
</div>
</div>
</div>
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>MySQL <i class="las la-database"></i></h4>
<div class="progress">
<div
class="progress-bar bg-warning progress-bar-striped progress-bar-animated"
role="progressbar"
aria-label="Example with label"
style="width: 80%"
aria-valuenow="25"
aria-valuemin="0"
aria-valuemax="100"
>
<b>80%</b>
</div>
</div>
</div>
</div>
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>Django <i class="las la-adjust"></i></h4>
<div class="progress">
<div
class="progress-bar bg-warning progress-bar-striped progress-bar-animated"
role="progressbar"
aria-label="Example with label"
style="width: 40%"
aria-valuenow="25"
aria-valuemin="0"
aria-valuemax="100"
>
<b>40%</b>
</div>
</div>
</div>
</div>
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>XAMPP <i class="las la-blog"></i></h4>
<div class="progress">
<div
class="progress-bar bg-warning progress-bar-striped progress-bar-animated"
role="progressbar"
aria-label="Example with label"
style="width: 40%"
aria-valuenow="25"
aria-valuemin="0"
aria-valuemax="100"
>
<b>40%</b>
</div>
</div>
</div>
</div>
<!-- new skills right -->
<div class="col-12 eduex" data-aos="fade-up" data-aos-delay="600">
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>jQuery <i class="lab la-joget"></i></h4>
<div class="progress">
<div class="progress-bar bg-warning progress-bar-striped progress-bar-animated" role="progressbar"
aria-label="Example with label" style="width: 60%" aria-valuenow="25" aria-valuemin="0"
aria-valuemax="100">
<b>60%</b>
</div>
</div>
</div>
</div>
<div class="col-12 eduex" data-aos="fade-up" data-aos-delay="600">
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>JSON <i class="lab la-joget"></i></h4>
<div class="progress">
<div class="progress-bar bg-warning progress-bar-striped progress-bar-animated" role="progressbar"
aria-label="Example with label" style="width: 60%" aria-valuenow="25" aria-valuemin="0"
aria-valuemax="100">
<b>60%</b>
</div>
</div>
</div>
</div>
<!-- new skills added right -->
<div
class="col-12 eduex"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="bg-base p-4 rounded-4 shadow-effect">
<h4>Git & Github <i class="lab la-github"></i></h4>
<div class="progress">
<div
class="progress-bar bg-warning progress-bar-striped progress-bar-animated"
role="progressbar"
aria-label="Example with label"
style="width: 80%"
aria-valuenow="25"
aria-valuemin="0"
aria-valuemax="100"
>
<b>80%</b>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //SKILLS -->
<!-- WORK -->
<section id="work" class="full-height px-lg-5">
<div class="container">
<div class="row pb-4" data-aos="fade-up">
<div class="col-lg-8">
<h6 class="text-brand">WORK</h6>
<h1>My Recent Projects <i class="las la-network-wired"></i></h1>
</div>
</div>
<div class="row gy-4">
<div class="col-md-6" data-aos="fade-up">
<div class="card-custom rounded-4 bg-base shadow-effect">
<div class="card-custom-image rounded-4">
<img
class="rounded-4"
src="./assets/images/project-10.jpg"
alt=""
/>
</div>
<div class="card-custom-content p-4">
<h4>Movie Recommendation Website <a href="https://github.com/Pritz69/MovieRecommenderSite" target="_blank" class="social-icons"><i class="lab la-github"></i></a></h4>
<p>
A website built using HTML5,CSS3,JS,Bootstrap. It can recommend movies to users based on their preferences and choices. A Machine Learning
Algorithm was used for developing the site.
</p>
<a
href="https://pritz69.github.io/MovieRecommenderSite/" target="_blank"
class="link-custom"
>Visit Site !</a
>
</div>
</div>
</div>
<div class="col-md-6" data-aos="fade-up">
<div class="card-custom rounded-4 bg-base shadow-effect">
<div class="card-custom-image rounded-4">
<img class="rounded-4" src="./assets/images/project-6.jpg" alt="" />
</div>
<div class="card-custom-content p-4">
<h4>Terminal Portfolio <a href="https://github.com/Pritz69/Terminal_Portfolio" target="_blank" class="social-icons"><i class="lab la-github"></i></a></h4>
<p>
Portfolio Website in the form of a Terminal Window .
Made using HTML, CSS, JAVAScript, jQuery.
Gives the Portfolio Website a new and innovative look. </p>
<a href="https://pritz69.github.io/Terminal_Portfolio/" target="_blank" class="link-custom">Visit Terminal !
</a>
</div>
</div>
</div>
<div class="col-md-6" data-aos="fade-up">
<div class="card-custom rounded-4 bg-base shadow-effect">
<div class="card-custom-image rounded-4">
<img
class="rounded-4"
src="./assets/images/project-20.png"
alt=""
/>
</div>
<div class="card-custom-content p-4">
<h4>Memory Game <a href="https://github.com/Pritz69/MemoryGame" target="_blank" class="social-icons"><i class="lab la-github"></i></a></h4>
<p>
A website developed using HTML, Javascript and CSS frameworks which keeps a check on the users memory and enhances their
remembering skills/memory through an attractive game with
audio-visual effects ! Lets Give It A Try ?!
</p>
<a
href="https://pritz69.github.io/MemoryGame/" target="_blank"
class="link-custom"
>Play Game !</a
>
</div>
</div>
</div>
<div class="col-md-6" data-aos="fade-up" data-aos-delay="300">
<div class="card-custom rounded-4 bg-base shadow-effect">
<div class="card-custom-image rounded-4">
<img
class="rounded-4"
src="./assets/images/project-30.jpg"
alt=""
/>
</div>
<div class="card-custom-content p-4">
<h4>Calculator <a href="https://github.com/Pritz69/Calculator" target="_blank" class="social-icons"><i class="lab la-github"></i></a></h4>
<p>
A running and responsive calculator for mathematical operations,built using HTML and CSS. JavaScript was implemented for taking the button responses
and performing the required calculations.It comes with dual mode(dark and light) with visual effects.
</p>
<a
href="https://pritz69.github.io/Calculator/" target="_blank"
class="link-custom"
>Calculate !</a
>
</div>
</div>
</div>
<div class="col-md-6" data-aos="fade-up">
<div class="card-custom rounded-4 bg-base shadow-effect">
<div class="card-custom-image rounded-4">
<img
class="rounded-4"
src="./assets/images/project-40.png"
alt=""
/>
</div>
<div class="card-custom-content p-4">
<h4>Music Player <a href="https://github.com/Pritz69/Music_Player" target="_blank" class="social-icons"><i class="lab la-github"></i></a></h4>
<p>
A Music Player Site built using HTML,CSS and JS which contains a playlist of songs, which users can play and listen to as per their choice.
</p>
<a
href="https://pritz69.github.io/Music_Player/" target="_blank"
class="link-custom"
>Play Music !</a
>
</div>
</div>
</div>
<div class="col-md-6" data-aos="fade-up" data-aos-delay="300">
<div class="card-custom rounded-4 bg-base shadow-effect">
<div class="card-custom-image rounded-4">
<img
class="rounded-4"
src="./assets/images/project-50.jpg"
alt=""
/>
</div>
<div class="card-custom-content p-4">
<h4>Wine Quality Prediction Model <a href="https://github.com/Pritz69/Wine_Quality_Prediction_ML" target="_blank" class="social-icons"><i class="lab la-github"></i></a></h4>
<p>
A Machine Learning Model built using Neural Networks and Deep Learning Algorithms which predicts the wine of best quality!
</p>
<a
href="https://github.com/Pritz69/Wine_Quality_Prediction_ML" target="_blank"
class="link-custom"
>View Work</a
>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //WORK -->
<!-- SERVICES -->
<section id="services" class="full-height px-lg-5">
<div class="container">
<div class="row pb-4" data-aos="fade-up">
<div class="col-lg-8">
<h6 class="text-brand">SERVICES</h6>
<h1>
Services That I Provide <i class="lab la-servicestack"></i>
</h1>
</div>
</div>
<div class="row gy-3">
<div class="col-md-4 col-6" data-aos="fade-up">
<div class="service p-4 bg-base rounded-4 shadow-effect">
<div class="iconbox rounded-4">
<i class="las la-marker"></i>
</div>
<h5 class="mt-4 mb-2">Web Development</h5>
<p>
Fully Responsive Web Sites/Apps with innovative design,Bootstrap and MySQL Database.
</p>
<a
href="https://www.linkedin.com/in/prithwish-sarkar-b08baa221/" target="_blank"
class="link-custom"
>Read More</a
>
</div>
</div>
<div class="col-md-4 col-6" data-aos="fade-up" data-aos-delay="300">
<div class="service p-4 bg-base rounded-4 shadow-effect">
<div class="iconbox rounded-4">
<i class="lab la-java"></i>
</div>
<h5 class="mt-4 mb-2">Source Code</h5>
<p>
I can provide clean codes written in JAVA and PYTHON with (Space and Time) optimisation.
</p>
<a
href="https://www.linkedin.com/in/prithwish-sarkar-b08baa221/" target="_blank"
class="link-custom"
>Read More</a
>
</div>
</div>
<div class="col-md-4 col-6" data-aos="fade-up" data-aos-delay="400">
<div class="service p-4 bg-base rounded-4 shadow-effect">
<div class="iconbox rounded-4">
<i class="las la-database"></i>
</div>
<h5 class="mt-4 mb-2">Teaching</h5>
<p> I provide Tuition Classes for students from classes 5-10 (PCMB and Computer) , both in Offline and Online Mode. </p>
<a
href="https://www.linkedin.com/in/prithwish-sarkar-b08baa221/" target="_blank"
class="link-custom"
>Read More</a
>