-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1207 lines (1146 loc) · 58.9 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 name="viewport" content="width=device-width, initial-scale=1" />
<!-- Title -->
<title>Mugesh Manoharan Portfolio</title>
<!-- Fvicon -->
<link rel="icon" href="assets/images/favicon.ico" />
<!-- StyleSheet -->
<link href="./assets/css/styles.css" rel="stylesheet" />
<link href="./assets/css/others.css" rel="stylesheet" />
<!-- Bootstrap -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- Bootstrap Icons -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"
/>
<!-- Slick CSS from CDN -->
<link
rel="stylesheet"
type="text/css"
href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css"
/>
<link
rel="stylesheet"
type="text/css"
href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css"
/>
<!-- ScrollReveal -->
<script src="https://unpkg.com/scrollreveal"></script>
</head>
<body>
<section class="m-0 pt-5 pb-3 px-3 user-select-none" id="main">
<div class="mx-auto m-0 p-0 py-4 rounded-4 " id="main_div">
<nav class="navbar navbar-expand-lg px-4 position-sticky">
<div class="container-fluid">
<a class="Norican fw-bold ms-4 navbar-brand text-secondary" href="#">Mugesh Manoharan</a>
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3 d-none d-lg-flex">
<li class="nav-item">
<a class="nav-link link-offset-3" href="#Hero"> About </a>
</li>
<li class="nav-item">
<a class="nav-link link-offset-3" href="#EducationAndSkills"> Education </a>
</li>
<li class="nav-item">
<a class="nav-link link-offset-3" href="#MyWorks"> My Works </a>
</li>
<li class="nav-item">
<a class="nav-link link-offset-3" href="#GetInTouch"> Contact </a>
</li>
</ul>
</div>
</nav>
<div class=" m-0 p-0">
<section class="px-5 pt-5" id="Hero">
<div class="container m-0 p-0 row mx-auto">
<div class="col-12 col-md-10 col-lg-9 mx-auto p-0 pe-lg-5 Hero__Left">
<h4 class="fw-medium Roboto" >Hi, I'm</h4>
<h1 class="OpenSans fw-semibold Hero__Name" >
<span class="c1"> Mugesh </span> Manoharan
</h1>
<h5 class="pt-2 m-0 Hero__Intrests" >
<p
href=""
class="typewrite c2 font-monospace fw-semibold"
data-period="2000"
data-type='[ "MERN Stack Developer" , "React Developer" , "Front-end Developer" , "Web Developer" ]'
>
<span class="wrap"></span>
</p>
</h5>
<p class="text-secondary pe-lg-5 lh-lg Roboto Hero__About" >
Hi! I’m Mugesh, and I’m a Web developer who has passion for building clean web applications with
intuitive
functionalities. Seeking an entry-level opportunity with an esteemed organization where I can utilize my
skills & enhance learning in the field of work. Capable of mastering new technologies.
I enjoy the process of turning ideas into reality using creative solutions. I’m always
curious about
learning new skills, tools, and concepts.
</p>
</div>
<div class="col-12 col-md-5 col-lg-3 mx-auto pt-5 px-4 pb-4">
<div class="morph-blob text-center Hero__Blob">
<img
class="image-fluid pt-3 Hero__Image"
id="Hero_img"
src="assets/images/Mugesh.png.png"
alt="Profile Picture"
height="auto"
/>
</div>
</div>
<div class="col-12 col-lg-8 py-4 text-center">
<a class="download-link" href="assets/file/Mugesh.M_CV.pdf" download>
<button
type="button"
class="btn shadow fw-semibold w-75 Poppins"
id="Button_1"
onclick="DownloadBtn()"
>
Download CV
</button>
</a>
</div>
<div class="col-12 pt-3">
<div class="d-flex justify-content-evenly w-50 mx-auto">
<a
class="c3"
href="https://github.com/M-MUGESHCHARLES?tab=repositories"
target="_blank"
title="github"
>
<i class="fa-brands fa-square-github fs-4 shadow"></i>
</a>
<a
class="c3"
href="https://www.linkedin.com/in/mugesh-manoharan-12b29b266?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app"
target="_blank"
title="linkedin"
>
<i class="fa-brands fa-linkedin fs-4 shadow"></i>
</a>
<a
class="c3"
href="mailto:samcharlesmugesh@gmail.com"
target="_blank"
title="mail"
>
<i class="fa-solid fa-square-envelope fs-4 shadow"></i>
</a>
</div>
</div>
</div>
<!-- <div class="row">
<hr class="w-75 border-2 mx-auto"/>
</div> -->
</section>
<section id="WaveTop"></section>
<section class="m-0 p-5 position-relative" id="EducationAndSkills">
<div class="fish-container1">
<span class="fish-o1"><object class="fish1" type="image/svg+xml" data="assets/images/icons/fish.svg"></object></span>
<span class="fish-o2"><object class="fish2" type="image/svg+xml" data="assets/images/icons/fish.svg"></object></span>
<span class="fish-o3"><object class="fish3" type="image/svg+xml" data="assets/images/icons/fish.svg"></object></span>
<span class="fish-o4"><object class="fish4" type="image/svg+xml" data="assets/images/icons/fish.svg"></object></span>
</div>
<div class="py-3 pb-3 z-3 position-relative" id="Education">
<div class="shapes position-relative">
<h2 class="position-relative RobotoSlab Heading Section__Heading"
>My Education :</h2>
</div>
<div class="d-flex flex-column pt-3 Section__Content">
<div class="row pb-3 my-2 Section__Content1"
>
<div class="col-2 text-center align-content-center">
<img
src="./assets/images/images/LIT.jpeg"
alt=""
class="p-1 rounded-circle border border-3 border-warning"
height="auto"
width="50px"
id="Education-Img"
/>
</div>
<div class="col-7 d-flex flex-column Roboto custom-fs">
<h6 class="fw-bold">Loyola Institute of Technology</h6>
<p class="m-0">Bachelors Degree of Information Technology ( B.Tech )</p>
</div>
<div class="col-3 text-center align-content-center">
<h5 class="Poppins" id="Education-Year">2019 - 2023</h5>
</div>
</div>
<div class="row pb-3 my-2 Section__Content2"
>
<div class="col-2 text-center align-content-center">
<img
src="./assets/images/images/SCHOOL.svg"
alt=""
class="p-1 rounded-circle border border-3 border-warning"
height="auto"
width="50px"
id="Education-Img"
/>
</div>
<div class="col-7 d-flex flex-column Roboto custom-fs">
<h6 class="fw-bold">St.Mary's .Mat .Hr .Sec .School</h6>
<p class="m-0">HSC</p>
</div>
<div class="col-3 text-center align-content-center">
<h5 class="Poppins" id="Education-Year">2018 - 2019</h5>
</div>
</div>
<div class="row pb-3 my-2 Section__Content3 "
>
<div class="col-2 text-center align-content-center">
<img
src="./assets/images/images/SCHOOL.svg"
alt=""
class="p-1 rounded-circle border border-3 border-warning"
height="auto"
width="50px"
id="Education-Img"
/>
</div>
<div class="col-7 d-flex flex-column Roboto custom-fs">
<h6 class="fw-bold">St.Mary's .Mat .Hr .Sec .School</h6>
<p class="m-0">SSLC</p>
</div>
<div class="col-3 text-center align-content-center Poppins">
<h5 class="Poppins" id="Education-Year">2016 - 2017</h5>
</div>
</div>
</div>
<div class="shapes2 position-relative"></div>
</div>
<div class="fish-container2">
<span class="shark-o1"><object class="shark" type="image/svg+xml"
data="assets/images/icons/shark-facing-right-svgrepo-com.svg"></object></span>
</div>
<div class="fish-container3">
<span class="fish-o5"><object class="fish5" type="image/svg+xml" data="assets/images/icons/clown-fish-svgrepo-com.svg"></object></span>
<span class="fish-o6"><object class="fish6" type="image/svg+xml" data="assets/images/icons/clown-fish-svgrepo-com.svg"></object></span>
<span class="fish-o7"><object class="fish7" type="image/svg+xml" data="assets/images/icons/clown-fish-svgrepo-com.svg"></object></span>
<span class="fish-o8"><object class="fish8" type="image/svg+xml" data="assets/images/icons/clown-fish-svgrepo-com.svg"></object></span>
<span class="fish-o9"><object class="fish9" type="image/svg+xml" data="assets/images/icons/clown-fish-svgrepo-com.svg"></object></span>
</div>
<div class="py-3 pt-5 position-relative z-3" id="MySkills">
<div class="">
<h2 class="RobotoSlab Heading Section__Heading"
>
My Skills :</h2>
</div>
<div class="row m-0 p-0">
<div class="col-12 col-lg-4 d-flex flex-column p-0 m-0 align-items-center justify-content-center">
<p class="col-md-10 mx-auto px-md-4 py-3 lh-lg text-white Roboto Section__Content">
I develop simple, intuitive and responsive user interface that helps users get things done with less effort and time
with those technologies.</p>
<div class="Tab-Heads RobotoSlab d-flex flex-row justify-content-center pt-1 pb-3">
<div class="Skills-Tab d-inline-block px-2 py-1 rounded-5">
<button class="TabHead px-3 py-1 me-1 rounded-5 active" onclick="setActiveTab(event, 'SKILLS')">
SKILLS
</button>
<button class="TabHead px-3 py-1 ms-1 rounded-5" onclick="setActiveTab(event, 'TOOLS')">
TOOLS
</button>
</div>
</div>
</div>
<div class="Tab-Contents col-12 col-lg-8 pt-4 OpenSans p-0 m-0 Section__Content">
<div class="TabContent d-block" id="SKILLS">
<div class="row" id="skills-container">
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 floating mx-auto" >
<img class="rounded mx-auto mb-2 Skill__Img" src="./assets/images/icons//html-5-svgrepo-com.svg" alt="" height="auto"
width="50px" />
<h6 class="fw-bold " >HTML</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 floating mx-auto" >
<img class="rounded mx-auto mb-2 Skill__Img" src="./assets/images/icons/css-3-svgrepo-com.svg" alt="" height="auto"
width="50px" />
<h6 class="fw-bold" >CSS</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 floating mx-auto" >
<img class="rounded mx-auto mb-2 Skill__Img" src="./assets/images/icons/js-svgrepo-com.svg" alt="" height="auto" width="50px" />
<h6 class="fw-bold" >Java Script</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 floating mx-auto" >
<img class="rounded mx-auto mb-2 Skill__Img" src="./assets/images/icons/react-svgrepo-com.svg" alt="" height="auto"
width="50px" />
<h6 class="fw-bold" >React</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 floating mx-auto" >
<img class="rounded mx-auto mb-2 Skill__Img" src="./assets/images/icons/node-js-svgrepo-com.svg" alt="" height="auto"
width="50px" />
<h6 class="fw-bold" >Node Js</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 floating mx-auto" >
<img class="rounded mx-auto mb-2 Skill__Img" src="./assets/images/icons/mongo-svgrepo-com.svg" alt="" height="auto"
width="50px" />
<h6 class="fw-bold" >Mongo DB</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 floating mx-auto" >
<img class="rounded mx-auto mb-2 Skill__Img" src="./assets/images/icons/express-svgrepo-com.svg" alt="" height="auto"
width="50px" />
<h6 class="fw-bold" >Express</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 floating mx-auto" >
<img class="rounded mx-auto mb-2 Skill__Img" src="./assets/images/icons/bootstrap-svgrepo-com.svg" alt="" height="auto"
width="50px" />
<h6 class="fw-bold" >Bootstrap</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 floating mx-auto" >
<img class="rounded mx-auto mb-2 Skill__Img" src="./assets/images/icons/material-ui-svgrepo-com.svg" alt="" height="auto"
width="50px" />
<h6 class="fw-bold" >MUI</h6>
</div>
</div>
</div>
<div class="TabContent d-none" id="TOOLS">
<div class="row" id="tools-container" >
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 mx-auto floating">
<img class="rounded mx-auto mb-2" src="./assets/images/icons/vs-code-svgrepo-com.svg" alt="" height="auto" width="50px" />
<h6 class="fw-bold">VS Code</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 mx-auto floating">
<img class="rounded mx-auto mb-2" src="./assets/images/icons/npm-svgrepo-com.svg" alt="" height="auto" width="50px" />
<h6 class="fw-bold">npm</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 floating mx-auto" >
<img class="rounded mx-auto mb-2" src="./assets/images/icons/git-svgrepo-com.svg" alt="" height="auto" width="50px" />
<h6 class="fw-bold" >GIT</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 floating mx-auto" >
<img class="rounded mx-auto mb-2" src="./assets/images/icons/github-svgrepo-com.svg" alt="" height="auto"
width="50px" />
<h6 class="fw-bold" >Git Hub</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 floating mx-auto" >
<img class="rounded mx-auto mb-2" src="./assets/images/icons/firebase-svgrepo-com.svg" alt="" height="auto"
width="50px" />
<h6 class="fw-bold" >Firebase</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 mx-auto floating" >
<img class="rounded mx-auto mb-2" src="./assets/images/icons/render.svg" alt="" height="auto" width="50px" />
<h6 class="fw-bold" >Render</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 mx-auto floating" >
<img class="rounded mx-auto mb-2" src="./assets/images/icons/logo-vercel.svg" alt="" height="auto" width="50px" />
<h6 class="fw-bold" >Versel</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 floating mx-auto" >
<img class="rounded mx-auto mb-2" src="./assets/images/icons/wix-svgrepo-com.svg" alt="" height="auto" width="50px" />
<h6 class="fw-bold" >WIX</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 mx-auto floating" >
<img class="rounded mx-auto mb-2" src="./assets/images/icons/canva-svgrepo-com.svg" alt="" height="auto" width="50px" />
<h6 class="fw-bold" >Canva</h6>
</div>
<!-- Libraries or not tools -->
<!-- <div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 mx-auto floating" >
<img class="rounded mx-auto mb-2" src="./assets/images/icons/AOS.png" alt="" height="auto" width="50px" />
<h6 class="fw-bold" >AOS</h6>
</div>
<div class="col-4 col-md-3 mb-3 d-flex flex-column text-center px-2 py-2 mx-auto floating" >
<img class="rounded mx-auto mb-2" src="./assets/images/icons/scrollReveal_icon.png" alt="" height="auto" width="50px" />
<h6 class="fw-bold" >Scroll Reveal</h6>
</div> -->
</div>
</div>
</div>
</div>
</div>
<div class="fish-container4 z-2">
<span class="star-fish-o1"><object class="star-fish" type="image/svg+xml" data="assets/images/icons/starfish-svgrepo-com.svg"></object> </span>
<span class="sea-horse-o1"><object class="sea-horse" type="image/svg+xml" data="assets/images/icons/seahorse-silhouette-svgrepo-com.svg"></object> </span>
</div>
</section>
<section id="WaveBottom"></section>
<section class="m-0 p-5 pt-3" id="MyWorks">
<div class="shapes3 position-relative"></div>
<div class="pt-4 m-0 p-0 position-relative text-center">
<h2 class="c1 RobotoSlab Section__Heading" >
<span class="Heading">My Works :</span>
</h2>
<p class="c3 col-md-10 mx-auto px-lg-5 px-md-4 py-3 lh-lg Roboto Section__Content" >
Here are some of the web development projects I've worked on,
showcasing my skills in front-end and back-end development. From
responsive designs to dynamic, interactive applications, each
project reflects my passion for creating efficient and
user-friendly solutions.
</p>
</div>
<div class="d-flex flex-column flex-md-row overflow-x-scroll g-4 py-3 pb-5 px-2 px-md-5 Project_Showcase" id="ShowCase">
<div class="col-md-6 col-lg-4 px-0 px-md-4 px-lg-4 py-3">
<div class="card rounded-4 overflow-hidden border-3 h-100 shadow-lg"
>
<div class="card-header p-0">
<img
src="./assets//images/Projects/DoggyDate/DoggyDate.jpg"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects//DoggyDate//DoggyDate_1.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects//DoggyDate/DoggyDate-2.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images//Projects/DoggyDate/DoggyDate-3.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images//Projects/DoggyDate/DoggyDate-4.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images//Projects/DoggyDate/DoggyDate-5.png"
class="card-img-top"
alt=""
/>
</div>
<div class="card-body">
<h5 class="card-title OpenSans fw-semibold mb-3">Doggy Date</h5>
<div class="Poppins d-none d-md-block">
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Front-end
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
HTML
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
CSS
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Bootstrap
</h6>
</div>
</div>
<div class="card-footer Poppins">
<a
href="https://github.com/M-MUGESHCHARLES/Doggy-Date.git"
title="github-link"
target="_blank"
rel="noopener"
>
<button type="button" class="btn shadow m-0" id="Button_2">
<i class="fa-brands fa-github fa-lg"></i>
</button>
</a>
<a
href="https://m-mugeshcharles.github.io/Doggy-Date/"
title="live-link"
target="_blank"
rel="noopener"
>
<button type="button" class="btn shadow m-0" id="Button_2">
<i class="bi bi-globe"></i
><span class="ps-2 ps-md-3 fw-semibold ">Website</span>
</button>
</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-0 px-md-4 px-lg-4 py-3">
<div class="card rounded-4 overflow-hidden border-3 h-100 shadow-lg"
>
<div class="card-header p-0">
<img
src="./assets//images/Projects/tamizhArivom/tamizh-arivom.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/tamizhArivom/tamizhArivom-1.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/tamizhArivom/tamizhArivom-2.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/tamizhArivom/tamizhArivom-3.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/tamizhArivom/tamizhArivom-4.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/tamizhArivom/tamizhArivom-5.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/tamizhArivom/tamizhArivom-6.png"
class="card-img-top"
alt=""
/>
</div>
<div class="card-body">
<h5 class="card-title OpenSans fw-semibold mb-3">Tamizh Arivom</h5>
<div class="Poppins d-none d-md-block">
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
No Code Site
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Wix
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Web Design
</h6>
</div>
</div>
<div class="card-footer Poppins">
<a
href="https://samcharlesmugesh20.wixsite.com/tamizharivom"
title="live-link"
target="_blank"
rel="noopener"
>
<button type="button" class="btn shadow m-0" id="Button_2">
<i class="bi bi-globe"></i
><span class="ps-2 ps-md-3 fw-semibold ">Website</span>
</button>
</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-0 px-md-4 px-lg-4 py-3">
<div class="card rounded-4 overflow-hidden border-3 h-100 shadow-lg"
>
<div class="card-header p-0">
<img
src="./assets//images/Projects/QRCodeGenerator/QR-Code-Gnenerator.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/QRCodeGenerator/qr-1.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/QRCodeGenerator//qr-2.png"
class="card-img-top"
alt=""
/>
</div>
<div class="card-body">
<h5 class="card-title OpenSans fw-semibold mb-3">QR Generator</h5>
<div class="Poppins d-none d-md-block">
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Front-end
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
HTML
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
CSS
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Java Script
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
API
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Bootstrap
</h6>
</div>
</div>
<div class="card-footer Poppins">
<a href="https://github.com/M-MUGESHCHARLES/QRcode_Generator.git" title="github-link" target="_blank" rel="noopener">
<button type="button" class="btn shadow m-0" id="Button_2">
<i class="fa-brands fa-github fa-lg"></i>
</button>
</a>
<a href="https://m-mugeshcharles.github.io/QRcode_Generator/" title="live-link" target="_blank" rel="noopener">
<button type="button" class="btn shadow m-0" id="Button_2">
<i class="bi bi-globe"></i
><span class="ps-2 ps-md-3 fw-semibold ">Website</span>
</button>
</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-0 px-md-4 px-lg-4 py-3">
<div class="card rounded-4 overflow-hidden border-3 h-100 shadow-lg"
>
<div class="card-header p-0">
<img
src="./assets//images/Projects/MedicalSite/medical-clinic.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/MedicalSite/medical-2.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/MedicalSite/medical-3.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/MedicalSite/medical-4.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/MedicalSite/medical-5.png"
class="card-img-top"
alt=""
/>
</div>
<div class="card-body">
<h5 class="card-title OpenSans fw-semibold mb-3">Medical Site</h5>
<div class="Poppins d-none d-md-block">
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Front-end
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
HTML
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
CSS
</h6>
<h6 class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 ">
Java Script
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Bootstrap
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Email Js
</h6>
</div>
</div>
<div class="card-footer Poppins">
<a
href="https://github.com/M-MUGESHCHARLES/Medical-Clinic-site.git"
title="github-link"
target="_blank"
rel="noopener"
>
<button type="button" class="btn shadow m-0" id="Button_2">
<i class="fa-brands fa-github fa-lg"></i>
</button>
</a>
<a
href="https://m-mugeshcharles.github.io/Medical-Clinic-site/"
title="live-link"
target="_blank"
rel="noopener"
>
<button type="button" class="btn shadow m-0" id="Button_2">
<i class="bi bi-globe"></i
><span class="ps-2 ps-md-3 fw-semibold ">Website</span>
</button>
</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-0 px-md-4 px-lg-4 py-3">
<div class="card rounded-4 overflow-hidden border-3 h-100 shadow-lg"
>
<div class="card-header p-0">
<img
src="./assets//images/Projects/CURD/curd-1.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/CURD/curd-2.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/CURD/curd-3.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/CURD/curd-4.png"
class="card-img-top"
alt=""
/>
</div>
<div class="card-body">
<h5 class="card-title OpenSans fw-semibold mb-3">CURD Application</h5>
<div class="Poppins d-none d-md-block">
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
MERN-Stack
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
React Js
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
CSS
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Bootstrap
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Express Js
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Mongo DB
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Node Js
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
CURD Operations
</h6>
</div>
</div>
<div class="card-footer Poppins">
<a href="https://github.com/M-MUGESHCHARLES/CURD_APP-MERN.git" title="github-link" target="_blank" rel="noopener">
<button type="button" class="btn shadow m-0" id="Button_2">
<i class="fa-brands fa-github fa-lg"></i>
</button>
</a>
<a href="https://curd-app-mern-1.onrender.com/" title="live-link" target="_blank" rel="noopener">
<button type="button" class="btn shadow m-0" id="Button_2">
<i class="bi bi-globe"></i
><span class="ps-2 ps-md-3 fw-semibold ">Website</span>
</button>
</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-0 px-md-4 px-lg-4 py-3">
<div class="card rounded-4 overflow-hidden border-3 h-100 shadow-lg"
>
<div class="card-header p-0">
<img
src="./assets//images/Projects/smartwatch/sw-1.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/smartwatch/sw-2.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/smartwatch/sw-3.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/smartwatch/sw-4.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/smartwatch/sw-5.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/smartwatch/sw-6.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/smartwatch/sw-7.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/smartwatch/sw-8.png"
class="card-img-top"
alt=""
/>
</div>
<div class="card-body">
<h5 class="card-title OpenSans fw-semibold mb-3">Smart Watch</h5>
<div class="Poppins d-none d-md-block">
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
MERN-Stack
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
React Js
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
CSS
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Bootstrap
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Express Js
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Mongo DB
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Node Js
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
E-Commerce
</h6>
<h6 class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 ">
Toastify
</h6>
<h6 class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 ">
React Slick
</h6>
<h6 class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 ">
React Router
</h6>
<h6 class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 ">
AOS
</h6>
</div>
</div>
<div class="card-footer Poppins">
<a
href="https://github.com/M-MUGESHCHARLES/smart-watch-ECommerce-MERN.git"
title="github-link"
target="_blank"
rel="noopener"
>
<button type="button" class="btn shadow m-0" id="Button_2">
<i class="fa-brands fa-github fa-lg"></i>
</button>
</a>
<a href="https://smart-watch-ecommerce.onrender.com/" title="live-link" target="_blank" rel="noopener">
<button type="button" class="btn shadow m-0" id="Button_2">
<i class="bi bi-globe"></i
><span class="ps-2 ps-md-3 fw-semibold ">Website</span>
</button>
</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-0 px-md-4 px-lg-4 py-3">
<div class="card rounded-4 overflow-hidden border-3 h-100 shadow-lg"
>
<div class="card-header p-0">
<img
src="./assets//images/Projects/shoppie/1.png"
class="card-img-top"
alt=""
/>
<img
src="./assets//images/Projects/shoppie/2.png"
class="card-img-top"
alt=""
/>
</div>
<div class="card-body">
<h5 class="card-title OpenSans fw-semibold mb-3">SHOPPY</h5>
<div class="Poppins d-none d-md-block">
<h6 class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 ">
Front-end
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
React Js
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
CSS
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
Node Js
</h6>
<h6
class="badge bg-warning-subtle border border-2 border-warning-subtle text-warning rounded-3 "
>
E-Commerce