-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1447 lines (1338 loc) · 92.7 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 class="no-js" lang="zxx">
<!-- Mirrored from ethemestudio.com/demo/thames/6_home_minimal/ by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 20 Jun 2024 19:13:54 GMT -->
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Hashwar | Portfolio</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico in the root directory -->
<link rel="shortcut icon" href="logoblackcroped.png" type="image/x-icon">
<!-- Fonts -->
<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=Open+Sans:ital,wght@0,300;0,400;0,500;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap"
rel="stylesheet">
<!-- All css here -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/fontawesome-all.min.css">
<link rel="stylesheet" href="css/flaticon.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/jquery.fancybox.min.css">
<link rel="stylesheet" href="css/slick.css">
<link rel="stylesheet" href="css/leaflet.css">
<link rel="stylesheet" href="css/meanmenu.css">
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- ====== preloader============================================= -->
<div id="preloader">
<div id="loading">
<div id="loading-center">
<div id="loading-center-absolute">
<div class="object" id="object_one"></div>
<div class="object" id="object_two"></div>
<div class="object" id="object_three"></div>
</div>
</div>
</div>
</div><!-- /preloader -->
<!-- ====== header-area-start
============================================================ -->
<header>
<div id="header-sticky" class="transparent-header header-area">
<div class="header">
<div class="container">
<div class="row align-items-center">
<div class="col-xl-2 col-lg-2 col-md-3 col-sm-4 col-5">
<div class="logo mt-50 mb-50 transition5">
<a class="header-logo"><img src="newlogowhite-removebg-preview.png" alt="THAMES"></a>
</div>
</div><!-- /col -->
<div
class="col-xl-10 col-lg-10 col-md-9 col-sm-8 col-7 pl-0 d-flex justify-content-end align-items-center">
<div class="main-menu">
<nav id="mobile-menu">
<ul class="d-block">
<li>
<a class="active" href="#home">Home</a>
</li>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#work">Works</a>
</li>
<li>
<a href="#service">service</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
<li>
<a href="#blog">Blog</a>
</li>
</ul>
</nav>
</div><!-- /main-menu -->
<div class="header-btn pl-45">
<a href="Hashwar CV.pdf" class="white-text text-uppercase d-inline-block"
target="_blank">download
cv</a>
</div><!-- /header-btn -->
<div class="mobile-m-bar d-block d-lg-none ml-30">
<a class="mobile-menubar theme-color primary-hover" href="javascript:void(0);"><i
class="far fa-bars"></i></a>
</div>
</div><!-- /col -->
</div><!-- /row -->
</div><!-- /container -->
</div>
</div><!-- /header-bottom -->
<script>
function sendWhatsAppMessage(event) {
event.preventDefault();
const name = document.getElementById('inputName').value;
const email = document.getElementById('inputEmail').value;
const phone = document.getElementById('inputPhone').value;
const subject = document.getElementById('inputSubject').value;
const message = document.getElementById('inputMessage').value;
const whatsappMessage = `Hello, my name is ${name}
Email: ${email}
Phone Number: ${phone}
Subject: ${subject}
Message: ${message}`;
const ownerNumber = '+917373001020'; // Replace with the actual number
const whatsappURL = `https://wa.me/${ownerNumber}?text=${encodeURIComponent(whatsappMessage)}`;
window.open(whatsappURL, '_blank');
}
</script>
</header>
<!-- header-area-end -->
<!-- ====== header extra info start
============================================================ -->
<!-- side-mobile-menu start -->
<div class="side-mobile-menu pt-15 pb-30 pl-30 pr-20 pb-100">
<div class="d-fle justify-content-between w-100">
<div class="close-icon d-inline-block float-right clear-both mt-20 mb-15">
<a href="javascript:void(0);"><span class="icon-clear theme-color"><i
class="fa fa-times"></i></span></a>
</div>
</div>
<div class="mobile-menu mt-10"></div>
<h5 class="text-white text-center mt-35 pb-1 d-inline-block ml-3">Follow me</h5>
<ul class="social social-bg text-center d-flex mt-10 ml-3">
<li class="mr-2 rotate-hover">
<a class="facebook-bg text-center pr-0 text-white d-block transition-3 rotate"
href="www.facebook.com"><i class="fab fa-facebook-f"></i></a>
</li>
<li class="mr-2 rotate-hover">
<a class="twitter-bg text-center pr-0 text-white d-block rotate transition-3"
href="https://twitter.com/home?lang=en"><i class="fab fa-twitter"></i></a>
</li>
<li class="mr-2 rotate-hover">
<a class="linkedin-bg text-center pr-0 text-white d-block rotate transition-3"
href="www.linkedin.com/in/hashwar"><i class="fab fa-linkedin-in"></i></a>
</li>
<li class="mr-2 rotate-hover">
<a class="instagram-bg text-center pr-0 text-white d-block rotate transition-3"
href="https://www.instagram.com/___.hashwar.___/"><i class="fab fa-instagram"></i></a>
</li>
</ul><!-- social -->
</div><!-- /side-mobile-menu -->
<div class="body-overlay"></div>
<!-- header extra info end -->
<main class="over-hiddenn">
<!-- ====== slider-area-start
==================================================== -->
<div id="home" class="slider-area slider-bg-color over-hidden">
<div class="single-slider slider-height over-hidden position-relative xxl-device-width bg-cover no-repeat"
data-background="images/slider/slider-bg.jpg">
<div id="scene" class="parallax position-absolute w-100 h-100 z-index1">
<img data-depth="0.20" class="hero-shape hero-shape1 position-absolute d-none d-lg-inline-block"
src="images/shape/shape1.png" alt="#"><!-- /hero-shape1 -->
<img data-depth="0.15" class="hero-shape hero-shape2 position-absolute d-none d-lg-inline-block"
src="images/shape/shape2.png" alt="#"><!-- /hero-shape2 -->
<img data-depth="0.30" class="hero-shape hero-shape3 position-absolute d-none d-lg-inline-block"
src="logowhite-removebg-preview.png" alt="#" height="300"> <!-- /hero-shape3 -->
<img data-depth="0.10" class="hero-shape hero-shape4 position-absolute d-none d-lg-inline-block"
src="images/shape/shape4.png" alt="#"><!-- /hero-shape4 -->
</div><!-- /parallax -->
<div class="container slider-height d-flex align-items-center justify-content-center">
<div class="row justify-content-center align-items-center h-100">
<div class="col-12 d-flex align-items-center justify-content-center">
<div class="slider-content text-center text-center position-relative z-index11"
data-aos="fade-right" data-aos-duration="2200" data-aos-delay="1000">
<h1 class="mb-15 white-text">
<span class="sub-heading d-block text-uppercase primary-color mb-1">Hi
Myself</span>
Hashwar <span class="hm2-m-hero-text-style">E</span>
</h1>
<h2 class="text-capitalize white-text mb-45">
A Passionate
<span class="d-text d-block d-sm-inline-block">
<span class="typer primary-color d-inline-block pl-2" id="main"
data-words="Full Stack Developer, Web Designer, Freelancer" data-delay="100"
data-colors="#25262f"></span><span
class="cursor primary-color d-inline-block" data-owner="main"></span>
</span>
</h2>
<a href="#contact"
class="btn position-relative over-hidden theme-bg text-uppercase transition5 mr-3">Say
Hello</a>
<a href="#about"
class="btn position-relative over-hidden bg-transparent main-border text-uppercase transition5">About
Me</a>
</div><!-- /slider-content -->
</div><!-- /col -->
</div><!-- /row -->
</div><!-- /container -->
<div class="slider-social-link position-absolute right-0 d-none d-md-block z-index11">
<ul class="social pr-60">
<li class="mt-10 mb-10 rotate-hover">
<a class="text-center d-inline-block rotate" href="https://www.facebook.com/"><i
class="fab fa-facebook-f"></i></a>
</li>
<li class="mt-10 mb-10 rotate-hover">
<a class="text-center d-inline-block rotate" href="https://twitter.com/home?lang=en"><i
class="fab fa-twitter"></i></a>
</li>
<li class="mt-10 mb-10 rotate-hover">
<a class="text-center d-inline-block rotate" href="https://www.linkedin.com/feed/"><i
class="fab fa-linkedin-in"></i></a>
</li>
<li class="mt-10 mb-10 rotate-hover">
<a class="text-center d-inline-block rotate"
href="https://www.instagram.com/___.hashwar.___/"><i class="fab fa-instagram"></i></a>
</li>
</ul><!-- social -->
</div><!-- /slider-social-link -->
</div><!-- /single-slider -->
</div>
<!-- slider-area-end -->
<!-- ====== intro-feature-area-start
================================================== -->
<div class="intro-feature-area over-hidden position-relative section-bg">
<div class="container">
<div class="row single-intro-feature-wrapper justify-content-center pt-170 pb-140">
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-9 col-11">
<div class="single-intro-feature-content white-bg border-radius10 transition5 mb-30" data-tilt
data-tilt-max="10">
<div class="intro-ft-icon d-inline-block mb-30 transition5">
<img src="images/icon/intro-ft-icon1.png" alt="icon1">
</div><!-- /intro ft-icon -->
<div class="intro-feature-text">
<h4 class="mb-22">Dedication</h4>
<p>Our team is committed to delivering exceptional results by leveraging cutting-edge
technology and innovative solutions to meet your business needs..</p>
</div>
</div><!-- /single-intro-feature-content -->
</div><!-- /col -->
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-9 col-11">
<div class="single-intro-feature-content white-bg border-radius10 transition5 mb-30 intro-feature-margin mt-60"
data-tilt data-tilt-max="10">
<div class="intro-ft-icon d-inline-block mb-30 transition5">
<img src="images/icon/intro-ft-icon2.png" alt="icon1">
</div><!-- /intro ft-icon -->
<div class="intro-feature-text">
<h4 class="mb-22">Smart Work</h4>
<p>We employ intelligent strategies and advanced tools to optimize workflows, ensuring
efficiency and productivity in every project we undertake..</p>
</div>
</div><!-- /single-intro-feature-content -->
</div><!-- /col -->
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-9 col-11">
<div class="single-intro-feature-content white-bg border-radius10 transition5 mb-30" data-tilt
data-tilt-max="10">
<div class="intro-ft-icon d-inline-block mb-30 transition5">
<img src="images/icon/intro-ft-icon3.png" alt="icon1">
</div><!-- /intro ft-icon -->
<div class="intro-feature-text">
<h4 class="mb-22">Collaboration</h4>
<p>We believe in the power of teamwork, working closely with our clients and partners to
foster an environment of mutual growth and success.</p>
</div>
</div><!-- /single-intro-feature-content -->
</div><!-- /col -->
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-9 col-11">
<div class="single-intro-feature-content white-bg border-radius10 transition5 mb-30 intro-feature-margin mt-60"
data-tilt data-tilt-max="10">
<div class="intro-ft-icon d-inline-block mb-30 transition5">
<img src="images/icon/intro-ft-icon4.png" alt="icon1">
</div><!-- /intro ft-icon -->
<div class="intro-feature-text">
<h4 class="mb-22">Technology</h4>
<p>Utilizing the latest advancements in IT, we provide solutions that are not only
robust and reliable but also scalable to adapt to future challenges.</p>
</div>
</div><!-- /single-intro-feature-content -->
</div><!-- /col -->
</div><!-- /row -->
</div><!-- /container -->
</div>
<!-- intro-area-end -->
<!-- ====== about-area-start
==================================================== -->
<div id="about" class="about-area over-hidden">
<div class="about-content-wrapper about-margin mt-170 mb-110 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-6 col-lg-6 col-md-8 offset-md-0 col-sm-10 col-10">
<div class="about-img-wrapper position-relative mb-90">
<div class="about-img position-relative z-index11" data-aos="fade-right"
data-aos-duration="2000" data-aos-delay="100">
<div class="about-img-over pl-50 transition5 d-inline-block position-relative">
<div class="position-relative z-index11" data-tilt data-tilt-max="10">
<img class="border-radius10 position-relative z-index11" src="hash.jpg"
alt="about image 1">
</div>
<div class="about-shape1 position-absolute" data-aos="fade-right"
data-aos-duration="2000" data-aos-delay="800"></div><!-- /about-shape1 -->
<div class="about-shape2 position-absolute z-index11" data-aos="fade-right"
data-aos-duration="2000" data-aos-delay="800"></div><!-- /about-shape2 -->
<div class="about-download-wrapper position-absolute z-index11">
<img class="download-bg rotate-animation d-inline-block"
src="images/about/download-bg.png" alt="about image 2">
<a href="Hashwar CV.pdf" class="cv-download-link transition5"
target="_blank">
<img class="d-icon d-inline-block position-absolute"
src="images/icon/download-icon.png" alt="about image 3">
</a>
</div><!-- /about-download -->
</div>
</div><!-- /about-img -->
</div><!-- /about-img-wrapper -->
</div><!-- /col -->
<div class="col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12">
<div class="about-content position-relative mb-50">
<div class="position-relative">
<div class="title">
<span class="meta-text-color text-uppercase d-block mb-1 mt--5">About Me</span>
<h2 class="mb-30">Get To Know About Me..!</h2>
</div><!-- /title -->
</div>
<p class="mb-25">Seeking an entry-level role at a reputable organization to upgrade my
technical
skills while contributing to the growth of the company.
With a keen eye for detail and a strong passion for technology,
I am dedicated to leveraging my talents to elevate the organization to the next
level of success</p>
<div class="about-info-wrapper pt-25 pb-20 mt-25">
<div class="row">
<div class="col-xl-6 col-lg-12 col-md-6 col-sm-12 col-12">
<ul class="about-info">
<li class="d-inline-block pr-50">
<p class="jostMedium-font-family mb-6">Name</p>
<p class="jostMedium-font-family mb-6">Age</p>
<p class="jostMedium-font-family mb-6">Position</p>
</li><!-- /li -->
<li class="d-inline-block">
<p class="mb-6">Hashwar.E</p>
<p class="mb-6">22 Years</p>
<p class="mb-6">Full Stack Developer</p>
</li><!-- /li -->
</ul>
</div><!-- /col -->
<div class="col-xl-6 col-lg-12 col-md-6 col-sm-12 col-12">
<ul class="about-info">
<li class="d-inline-block pr-50">
<p class="jostMedium-font-family mb-6">Phone</p>
<p class="jostMedium-font-family mb-6">Email</p>
<p class="jostMedium-font-family mb-6">Nationality</p>
</li><!-- /li -->
<li class="d-inline-block">
<p class="mb-6">7373001020</p>
<p class="mb-6">hashwar944@gmail</p>
<p class="mb-6">Indian</p>
</li><!-- /li -->
</ul>
</div><!-- /col -->
</div><!-- /row -->
</div><!-- /about-info-wrapper -->
<div class="about-footer-content d-sm-flex align-items-center mt-lg-2 mt-sm-4 mt-3">
<div class="signature pt-12 pr-45">
</div>
<div class="about-footer-content-right mt-20 text-left">
<h6 class="d-xl-inline-block text-uppercase pr5 mb-0">Hashwar E</h6>
<span class="openS-font-family meta-text-color">Full Stack Developer
</span>
</div>
</div><!-- /about-footer-content -->
</div><!-- /about-content -->
</div><!-- /col -->
</div><!-- /row -->
</div><!-- /container -->
</div><!-- /about-wrapper -->
</div>
<!-- about-area-end -->
<!-- ====== portfolio-area-start
==================================================== -->
<div id="work" class="portfolio-area over-hidden pb-165">
<div class="marquee-w mb-125">
<div class="marquee">
<span class="pl-4">Seeking Opportunities in Industry.</span>
<span class="pl-4">Seeking Opportunities in Industry.</span>
</div>
<div class="marquee marquee2 pb-1">
<span>I am Open for new projects. </span>
<span>I am Open for new projects.</span>
</div>
</div><!-- /marquee -->
<div class="portfolio-wrapper position-relative mt--5">
<div class="container">
<div class="row">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<div class="title text-center">
<span class="meta-text-color text-uppercase d-block mb-6">Projects</span>
<h2>My Projects</h2>
</div><!-- /title -->
</div><!-- /col -->
</div><!-- /row -->
<div class="row portfolio mt-80">
<div class="col-12">
<div class="row single-portfolio position-relative theme-border-top align-items-center">
<div class="col-xl-2 col-lg-2 col-md-7 col-sm- col-">
<div class="port-category">
<span class="meta-text-color text-uppercase">PHP</span>
</div>
</div><!-- /col -->
<div class="col-xl-5 col-lg-5 col-md-6 col-sm- col- pl-lg-0">
<h3>Leave Management System</h3>
</div><!-- /col -->
<div
class="col-xl-5 col-lg-5 col-md-6 col-sm- col- d-flex justify-content-end align-items-center">
<img class="port-img position-absolute left-0 ml-xl-3 transition5" src="leave.png"
alt="portfolio image 1">
<div class="port-content text-center transition5 z-index11" data-toggle="modal"
data-target="#exampleModal-p1">
<span class="d-inline-block"><i class="far fa-plus"></i>
</span>
</div><!-- /port-content -->
</div><!-- /col -->
</div><!-- /single-prot -->
</div><!-- /col -->
<div class="col-12">
<div class="row single-portfolio position-relative theme-border-top align-items-center">
<div class="col-xl-2 col-lg-2 col-md-7 col-sm- col-">
<div class="port-category">
<span class="meta-text-color text-uppercase">PHP</span>
</div>
</div><!-- /col -->
<div class="col-xl-5 col-lg-5 col-md-6 col-sm- col- pl-lg-0">
<h3>Social Spam Detection</h3>
</div><!-- /col -->
<div
class="col-xl-5 col-lg-5 col-md-6 col-sm- col- d-flex justify-content-end align-items-center">
<img class="port-img position-absolute left-0 ml-xl-3 transition5"
src="spamsmall.png" alt="portfolio image2">
<div class="port-content text-center transition5 z-index11" data-toggle="modal"
data-target="#exampleModal-p2">
<span class="d-inline-block"><i class="far fa-plus"></i>
</span>
</div><!-- /port-content -->
</div><!-- /col -->
</div><!-- /single-prot -->
</div><!-- /col -->
<div class="col-12">
<div class="row single-portfolio position-relative theme-border-top align-items-center">
<div class="col-xl-2 col-lg-2 col-md-7 col-sm- col-">
<div class="port-category">
<span class="meta-text-color text-uppercase">Web Development</span>
</div>
</div><!-- /col -->
<div class="col-xl-5 col-lg-5 col-md-6 col-sm- col- ml-lg-0">
<h3>Vland City</h3>
</div><!-- /col -->
<div
class="col-xl-5 col-lg-5 col-md-6 col-sm- col- d-flex justify-content-end align-items-center">
<img class="port-img position-absolute left-0 ml-xl-3 transition5"
src="v land logo.png" alt="portfolio image 3">
<div class="port-content text-center transition5 z-index11" data-toggle="modal"
data-target="#exampleModal-p3">
<span class="d-inline-block"><i class="far fa-plus"></i>
</span>
</div><!-- /port-content -->
</div><!-- /col -->
</div><!-- /single-prot -->
</div><!-- /col -->
<div class="col-12">
<div
class="row single-portfolio position-relative theme-border-top theme-border-bottom align-items-center">
<div class="col-xl-2 col-lg-2 col-md-7 col-sm- col-">
<div class="port-category">
<span class="meta-text-color text-uppercase">PHP</span>
</div>
</div><!-- /col -->
<div class="col-xl-5 col-lg-5 col-md-6 col-sm- col- pl-lg-0">
<h3>Logistics And Distribution System</h3>
</div><!-- /col -->
<div
class="col-xl-5 col-lg-5 col-md-6 col-sm- col- d-flex justify-content-end align-items-center">
<img class="port-img position-absolute left-0 ml-xl-3 transition5"
src="lgdsystem.png" alt="portfolio image 4">
<div class="port-content text-center transition5 z-index11" data-toggle="modal"
data-target="#exampleModal-p4">
<span class="d-inline-block"><i class="far fa-plus"></i>
</span>
</div><!-- /port-content -->
</div><!-- /col -->
</div><!-- /single-prot -->
</div><!-- /col -->
</div><!-- /row -->
<!-- Modal1 start -->
<div class="modal fade" id="exampleModal-p1" tabindex="-1" role="dialog"
aria-labelledby="exampleModal-p1" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="close-icon float-right pt-10 pr-10">
<button type="button" class="close d-inline-block" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true"><i class="fa fa-times"></i></span>
</button>
</div>
<div class="modal-content border-0">
<div class="modal-body pl-50 pr-50 pt-10 pb-20">
<div class="blog-modal-img">
<img class="w-100" src="leavemain_page.png" alt="product image 02">
</div>
<div class="row">
<div class="col-xl-7 col-lg-7 col-md-12 col-sm-12 col-12">
<div class="content-wrapper">
<h2 class="modal-title">Leave Management System</h2>
<p> <strong>PHP for the frontend MySQL for the backend.</strong>
Engineered an end-to-end Leave Management System
streamlining staff leave requests and approvals.
Orchestrated a hierarchical approval process: requests
moved through Staff, HOD, IQAC, and Principal
levels.
Designed an interface for various leave types—casual,
medical, and on-duty—enabling easy staff application.
Collaborated across departments, seamlessly integrating
the system with college, managed by IQAC.
Contributed significantly to heightened operational
efficiency and elevated staff satisfaction levels.</p>
</div>
</div><!-- /col -->
<div class="col-xl-5 col-lg-5 col-md-12 col-sm-12 col-12">
<div
class="meta-wrapper form-bg mt-60 pt-40 pb-45 pr-20 pl-45 mt-40 mb-10">
<a href="#"
class="btn position-relative over-hidden text-uppercase mt-20 pt-2 pb-2">View
Live</a>
</div>
</div><!-- /col -->
</div><!-- /row -->
</div><!-- /modal-body -->
</div>
</div>
</div>
</div>
<!-- Modal end -->
<!-- Modal2 start -->
<div class="modal fade" id="exampleModal-p2" tabindex="-2" role="dialog"
aria-labelledby="exampleModal-p1" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="close-icon float-right pt-10 pr-10">
<button type="button" class="close d-inline-block" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true"><i class="fa fa-times"></i></span>
</button>
</div>
<div class="modal-content border-0">
<div class="modal-body pl-50 pr-50 pt-10 pb-20">
<div class="blog-modal-img">
<img class="w-100" src="spamlarge.png" alt="product image 02">
</div>
<div class="row">
<div class="col-xl-7 col-lg-7 col-md-12 col-sm-12 col-12">
<div class="content-wrapper">
<h2 class="modal-title">Social Spam Detection</h2>
<p><strong>PHP for the frontend MySQL for the backend.</strong>
Created a system with two parts: User and Admin
modules the goal was to make social media safer by
reducing spam and offensive content.
the User module, allowing users to create profiles,
post content, follow others, and interact through
comments.
Admin module for monitoring and keyword
training to Implement spam detection.
when the user post or comment the inappropriate
words the message as been sent to admin for a
review and the admin will block the user.</p>
</div>
</div><!-- /col -->
<div class="col-xl-5 col-lg-5 col-md-12 col-sm-12 col-12">
<div
class="meta-wrapper form-bg mt-60 pt-40 pb-45 pr-20 pl-45 mt-40 mb-10">
<a href="#"
class="btn position-relative over-hidden text-uppercase mt-20 pt-2 pb-2">View
Live</a>
</div>
</div><!-- /col -->
</div><!-- /row -->
</div><!-- /modal-body -->
</div>
</div>
</div>
</div>
<!-- Modal end -->
<!-- Modal3 start -->
<div class="modal fade" id="exampleModal-p3" tabindex="-3" role="dialog"
aria-labelledby="exampleModal-p1" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="close-icon float-right pt-10 pr-10">
<button type="button" class="close d-inline-block" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true"><i class="fa fa-times"></i></span>
</button>
</div>
<div class="modal-content border-0">
<div class="modal-body pl-50 pr-50 pt-10 pb-20">
<div class="blog-modal-img">
<img class="w-100" src="vlandcityimg.png" alt="product image 02">
</div>
<div class="row">
<div class="col-xl-7 col-lg-7 col-md-12 col-sm-12 col-12">
<div class="content-wrapper">
<h2 class="modal-title">vland city</h2>
<p>
Whether you're looking to buy your dream home or invest in prime
real estate, Vland City has everything you need.
Our properties are built with meticulous attention to detail,
ensuring you experience the ultimate in style and functionality.
From spacious apartments to elegant villas, Vland City caters to
diverse tastes and preferences.
At Vland City, we prioritize your well-being. Enjoy our
beautifully landscaped parks, top-tier fitness centers,
and a wide range of recreational facilities. Our city is
designed to provide a safe, family-friendly environment with
excellent schools,
healthcare facilities, and convenient shopping centers.
Experience the best of urban living in Vland City, where every
day feels like a vacation.
Join our community today and start enjoying the lifestyle you
deserve.
</p>
</div>
</div><!-- /col -->
<div class="col-xl-5 col-lg-5 col-md-12 col-sm-12 col-12">
<div
class="meta-wrapper form-bg mt-60 pt-40 pb-45 pr-20 pl-45 mt-40 mb-10">
<a href="https://www.vlandcity.com/"
class="btn position-relative over-hidden text-uppercase mt-20 pt-2 pb-2">View
Live</a>
</div>
</div><!-- /col -->
</div><!-- /row -->
</div><!-- /modal-body -->
</div>
</div>
</div>
</div>
<!-- Modal end -->
<!-- Modal4 start -->
<div class="modal fade" id="exampleModal-p4" tabindex="-4" role="dialog"
aria-labelledby="exampleModal-p1" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="close-icon float-right pt-10 pr-10">
<button type="button" class="close d-inline-block" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true"><i class="fa fa-times"></i></span>
</button>
</div>
<div class="modal-content border-0">
<div class="modal-body pl-50 pr-50 pt-10 pb-20">
<div class="blog-modal-img">
<img class="w-100" src="lgdlargeimage.png" alt="product image 02">
</div>
<div class="row">
<div class="col-xl-7 col-lg-7 col-md-12 col-sm-12 col-12">
<div class="content-wrapper">
<h2 class="modal-title">Logistics And Distribution System</h2>
<p>
The Logistics and Distribution System Project is designed to
develop a
comprehensive platform for managing the end-to-end processes of
logistics and distribution. Central to the system are key
modules including Order Management, Inventory Management,
Warehouse Management, Shipping and Freight Management, Tracking
and Visibility, Returns Management, Billing and Invoicing,
Reporting and Analytics, User Authentication
and Authorization, Notifications and Alerts, and Integration
with Other Systems.
</p>
</div>
</div><!-- /col -->
<div class="col-xl-5 col-lg-5 col-md-12 col-sm-12 col-12">
<div
class="meta-wrapper form-bg mt-60 pt-40 pb-45 pr-20 pl-45 mt-40 mb-10">
<a href="#"
class="btn position-relative over-hidden text-uppercase mt-20 pt-2 pb-2">View
Live</a>
</div>
</div><!-- /col -->
</div><!-- /row -->
</div><!-- /modal-body -->
</div>
</div>
</div>
</div>
<!-- Modal end -->
</div><!-- /container -->
</div><!-- /portfolio-wrapper -->
</div>
<!-- portfolio-area-end -->
<!-- ====== experience-area-start
==================================================== -->
<div class="experience-area over-hidden pb-165">
<div class="experience-wrapper extra-width position-relative">
<div class="experience-bg-img left-0 top-0 bottom-0 bg-cover no-repeat w-50 position-absolute"
data-background="images/work/work-img.jpg" style="height: 90%;"></div>
<div class="container">
<div class="row">
<div class="col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12 d-none">
<div class="experience-img" data-aos="fade-right" data-aos-duration="2000">
</div><!-- /experience-img -->
</div><!-- /col -->
<div class="col-xl-6 col-lg-6 offset-lg-6 col-md-12 col-sm-12 col-12">
<div class="experience-margin mt-160 pb-80 pl-100 mb-50">
<div class="position-relative">
<div class="title">
<span class="meta-text-color text-uppercase d-block mb-6 mt--5">
Internships</span>
<h2 class="mb-25">Internships</h2>
<p></p>
</div><!-- /title --><br><br><br>
</div>
<div class="experience-wrapper pt-25">
<ul class="experience-content">
<li class="mb-32 d-flex align-items-start rotate-hover">
<div
class="experience-ser-icon d-inline-block text-center mt-10 mr-30 transition3">
<span class="theme-color d-inline-block">
<span class="d-block rotate flat-family flaticon-briefcase"></span>
</span>
</div><!-- /experience-ser-icon -->
<div class="experience-service-text d-inline-block">
<h3 class="mb-2">Web Development</h3>
<h4>Doers Tech <span class="meta-text-color openS-font-family"> ( 2024
jan-apr
)</span></h4>
<p class="mb-0 mt-15">Doers Tech Enterprise Solutions is a leading
provider of comprehensive web
development, IT services, and enterprise solutions, dedicated to
empowering businesses with
innovative digital solutions. With a focus on cutting-edge
technologies and unparalleled
expertise, we strive to deliver superior results that drive growth
and succe</p>
</div>
</li><br><br>
<li class="mb-32 d-flex align-items-start rotate-hover">
<div
class="experience-ser-icon d-inline-block text-center mt-10 mr-30 transition3">
<span class="theme-color d-inline-block">
<span class="d-block rotate flat-family flaticon-briefcase"></span>
</span>
</div><!-- /experience-ser-icon -->
<div class="experience-service-text d-inline-block">
<h3 class="mb-2">Full Stack Development</h3>
<h4>Sivasethu infotech <span class="meta-text-color openS-font-family">(
may-present )</span></h4>
<p class="mb-0 mt-15">Sivasethu Infotech Private Limited, driven by the
visionary ethos of Great Infotech,
stands at the forefront of technological innovation. Our dynamic
organization is
dedicated to delivering cutting-edge solutions in web development,
industrial training, and recruitment.</p>
</div>
</li>
</ul>
</div><!-- /experience-wrapper -->
</div><!-- /experience-margin -->
</div><!-- /col -->
</div><!-- /row -->
</div><!-- /container -->
</div><!-- /experience-wrapper -->
</div>
<!-- experience-area-end -->
<!-- ====== education-area-start
==================================================== -->
<div class="education-area over-hidden">
<div class="container">
<div class="row position-relative">
<div class="col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12">
<div class="position-relative">
<div class="title">
<span class="meta-text-color text-uppercase d-block mb-1">Education</span>
<h2 class="mb-25">My Education</h2>
<p></p>
</div><!-- /title -->
</div>
<div class="education-wrapper mr-20 pt-25 mb-50">
<ul class="education-content">
<li class="mb-32 d-flex align-items-start rotate-hover">
<div class="experience-ser-icon d-inline-block text-center mt-10 mr-30 transition3">
<span class="theme-color d-inline-block">
<span class="d-block rotate flat-family flaticon-graduation-cap"></span>
</span>
</div><!-- /education-ser-icon -->
<div class="experience-service-text d-inline-block">
<h3 class="mb-2">MASTER OF COMPUTER APPLICATION (MCA)</h3>
<h4>St. Joseph's College (Autonomous) Tiruchirappalli
<span class="meta-text-color openS-font-family"> ( 2022-2024 )</span>
</h4>
<p class="mb-0 mt-15">Post graduation in Master of computer application
CGPA 7.5
.</p>
</div>
</li><br><br>
<li class="mb-32 d-flex align-items-start rotate-hover">
<div class="experience-ser-icon d-inline-block text-center mt-10 mr-30 transition3">
<span class="theme-color d-inline-block">
<span class="d-block rotate flat-family flaticon-graduation-cap"></span>
</span>
</div><!-- /education-ser-icon -->
<div class="experience-service-text d-inline-block">
<h3 class="mb-2">BACHELOR OF COMPUTER APPLICATION (BCA)</h3>
<h4>St. Joseph's College (Autonomous) Tiruchirappalli
<span class="meta-text-color openS-font-family"> ( 2019-2022 )</span>
</h4>
<p class="mb-0 mt-15">Bachelor's Degree in computer application with
CGPA 7.0.</p>
</div>
</li><br><br>
</ul>
</div><!-- /education-wrapper -->
</div><!-- /col -->
<div
class="col-xl-5 offset-xl-1 col-lg-6 col-md-12 col-sm-12 col-12 d-lg-blok d-flex align-items-center justify-content-center">
<div class="education-img position-relative text-center" data-aos="fade-left"
data-aos-duration="2000">
<img class="border-radius10" src="images/education/education-img.jpg" alt="education image"
style="height:650px;">
</div><!-- /education-img -->
</div><!-- /col -->
</div><!-- /row -->
</div><!-- /container -->
</div>
<!-- education-area-end -->
<!-- ====== skill-area-start
==================================================== -->
<div id="skills" class="skill-area over-hidden position-relative pt-130 pb-110">
<div class="marquee-w mb-125">
<div class="marquee">
<span class="pl-4">Seeking Opportunities in Industry</span>
<span class="pl-4">Seeking Opportunities in Industry</span>
</div>
<div class="marquee marquee2 pb-1">
<span class="pl-4">I’m Open for new projects </span>
<span class="pl-4">I’m Open for new projects</span>
</div>
</div><!-- /marquee -->
<div class="container">
<div class="row align-items-start justify-content-center">
<div class="col-xl-5 col-lg-5 col-md-12 col-sm-12 col-12">
<div class="position-relative">
<div class="title mb-50">
<span class="meta-text-color text-uppercase d-block mb-6">My Skill</span>
<h2 class="mb-25">Growing Over Times</h2>
<p> My journey as a fresher begins with a strong desire to learn and grow within the
organization. I am eager to develop my skills by contributing to innovative projects
and gaining hands-on experience. By working alongside talented professionals, I aim
to enhance my knowledge in cutting-edge technologies and embrace every opportunity
for training and development. Together with the organization, I look forward to
growing and evolving, while delivering value and striving for excellence.</p>
</div><!-- /title -->
</div>
</div><!-- /col -->
<div class="col-xl-6 col-lg-7 offset-xl-1 col-md-12 col-sm-12 col-12" data-aos="fade-up"
data-aos-anchor-placement="top-bottom" data-aos-duration="1400">
<div class="row justify-content-center mt-10">
<div class="col-xl-4 col-lg-4 col-md-4 col-sm-6 col-9 mb-30">
<div class="single-skill mb-15 text-center text-lg-left">
<div class="progress-circular over-hidden">
<input type="text" class="knob" value="0" data-rel="80" data-linecap=""
data-width="190" data-height="190" data-bgcolor="#f1f2f6"
data-fgcolor="#9b9db1" data-thickness=".06" data-readonly="true" disabled=""
readonly="readonly">
<h4 class="mt-15 text-center">Html</h4>
</div>
</div>
</div><!-- /col -->
<div class="col-xl-4 col-lg-4 col-md-4 col-sm-6 col-9 mb-30">
<div class="single-skill text-center">
<div class="progress-circular over-hidden">
<input type="text" class="knob" value="0" data-rel="95" data-linecap=""
data-width="190" data-height="190" data-bgcolor="#f1f2f6"
data-fgcolor="#9b9db1" data-thickness=".06" data-readonly="true" disabled=""
readonly="readonly">
<h4 class="mt-15 text-center">Css</h4>
</div>
</div>
</div><!-- /col -->
<div class="col-xl-4 col-lg-4 col-md-4 col-sm-6 col-9 mb-30">
<div class="single-skill mb-15 text-center text-lg-left">
<div class="progress-circular over-hidden">
<input type="text" class="knob" value="0" data-rel="90" data-linecap=""
data-width="190" data-height="190" data-bgcolor="#f1f2f6"
data-fgcolor="#9b9db1" data-thickness=".06" data-readonly="true" disabled=""
readonly="readonly">
<h4 class="mt-15 text-center">JavaScript</h4>
</div>
</div>
</div><!-- /col -->
<div class="col-xl-4 col-lg-4 col-md-4 col-sm-6 col-9 mb-30">
<div class="single-skill text-center">
<div class="progress-circular over-hidden">
<input type="text" class="knob" value="0" data-rel="75" data-linecap=""
data-width="190" data-height="190" data-bgcolor="#f1f2f6"
data-fgcolor="#9b9db1" data-thickness=".06" data-readonly="true" disabled=""
readonly="readonly">
<h4 class="mt-15 text-center">PHP</h4>
</div>
</div>
</div><!-- /col -->
<div class="col-xl-4 col-lg-4 col-md-4 col-sm-6 col-9 mb-30">
<div class="single-skill text-center text-lg-right">
<div class="progress-circular over-hidden">
<input type="text" class="knob" value="0" data-rel="60" data-linecap=""
data-width="190" data-height="190" data-bgcolor="#f1f2f6"
data-fgcolor="#9b9db1" data-thickness=".06" data-readonly="true" disabled=""
readonly="readonly">
<h4 class="mt-15 text-center">Sql</h4>
</div>
</div>
</div><!-- /col -->
<div class="col-xl-4 col-lg-4 col-md-4 col-sm-6 col-9 mb-30">
<div class="single-skill text-center text-lg-right">
<div class="progress-circular over-hidden">
<input type="text" class="knob" value="0" data-rel="85" data-linecap=""