-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
809 lines (793 loc) · 66.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Aswin pv</title>
<!--GOOGLE 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=Oswald:wght@200;300;400;500;700&display=swap"
rel="stylesheet"
/>
<!--STYLESHEET-->
<link rel="stylesheet" href="style.css" />
<!--AOS ANIMATION-->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<!-- BOOTSTRAP CDN -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous"
/>
<!--IMAGE ZOOM-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.css" />
</head>
<body>
<!--NAVBAR-->
<nav class="navbar navbar-expand-lg fixed-top text-uppercase p-3">
<div class="container-fluid">
<a class="navbar-brand" href="#"><img src="./images/logo-png.png" class="navbar-logo" alt="logo" /></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"
><svg
xmlns="http://www.w3.org/2000/svg"
width="25"
height="25"
fill="currentColor"
class="bi bi-list"
viewBox="0 0 16 16"
>
<path
fill-rule="evenodd"
d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z"
/></svg
></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item mx-3">
<a class="nav-link" aria-current="page" href="#main-id">Home</a>
</li>
<li class="nav-item mx-3">
<a class="nav-link" href="#about-id">About</a>
</li>
<li class="nav-item mx-3">
<a class="nav-link" href="#skills-id">Skills</a>
</li>
<li class="nav-item mx-3">
<a class="nav-link" href="#portfolio-id">Projects</a>
</li>
<li class="nav-item mx-3">
<a class="nav-link" href="#contact-id">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!--MAIN SECTION-->
<section class="main py-3">
<div class="container py-4">
<div class="row py-5">
<div class="col-lg-6 text-center py-5 order-lg-2 order-md-1" id="main-id">
<img src="./images/aswin dp.jpg" class="mx-auto" />
</div>
<div class="col-lg-6 py-5 order-lg-1 order-md-2 main-head">
<h5>Hey There!</h5>
<h3>I am <span>Aswin pv</span></h3>
<h6>Full Stack Web developer</h6>
<ul class="icons mb-5 d-flex justify-content-start">
<li class="pe-5">
<a href="https://x.com/pvaswin888?t=63RnuIE6MjiI2HCPNPdh_w&s=08">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-twitter-x"
viewBox="0 0 16 16"
>
<path
d="M12.6.75h2.454l-5.36 6.142L16 15.25h-4.937l-3.867-5.07-4.425 5.07H.316l5.733-6.57L0 .75h5.063l3.495 4.633L12.601.75Zm-.86 13.028h1.36L4.323 2.145H2.865l8.875 11.633Z"
/></svg
></a>
</li>
<li class="pe-5">
<a href="https://github.com/Aswin-pv">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-github"
viewBox="0 0 16 16"
>
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z"
/>
</svg>
</a>
</li>
<li class="pe-5">
<a href="https://www.linkedin.com/in/aswin-pv-870339254">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-linkedin"
viewBox="0 0 16 16"
>
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z"
/>
</svg>
</a>
</li>
<li>
<a href="https://wa.me/6238366862">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-whatsapp"
viewBox="0 0 16 16"
>
<path
d="M13.601 2.326A7.854 7.854 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.933 7.933 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.898 7.898 0 0 0 13.6 2.326zM7.994 14.521a6.573 6.573 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.557 6.557 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592zm3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.088-.403.087-.088.197-.232.296-.346.1-.114.133-.198.198-.33.065-.134.034-.248-.015-.347-.05-.099-.445-1.076-.612-1.47-.16-.389-.323-.335-.445-.34-.114-.007-.247-.007-.38-.007a.729.729 0 0 0-.529.247c-.182.198-.691.677-.691 1.654 0 .977.71 1.916.81 2.049.098.133 1.394 2.132 3.383 2.992.47.205.84.326 1.129.418.475.152.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232z"
/>
</svg>
</a>
</li>
</ul>
<a class="hire-btn" href="mailto:[email protected]">Hire Me</a>
</div>
</div>
</div>
</section>
<!--ABOUT SECTION-->
<section class="about" id="about-id">
<div class="container pb-5">
<div class="row pt-5">
<div class="col-lg-5" data-aos="fade-right">
<img
src="./images/steves.jpg"
data-aos="fade-right"
data-aos-duration="2000"
data-aos-easing="ease-in-out"
class="img-fluid"
alt=""
/>
</div>
<div class="col-lg-7 pt-5">
<h1 class="about-head">About me</h1>
<h1 class="about-sub-head">Python Django developer</h1>
<p class="py-5 about-me">
I am Aswin pv . A highly motivated aspiring full stack developer with strong problem-solving and
ownership skills. Proficient in Python and object-oriented programming, and skilled in HTML,
CSS, JavaScript, and Bootstrap. Also done projects using React JS, Ajax, and jQuery, and
proficient in database management systems including MySQL, Oracle SQL, and MongoDB. Demonstrates
exceptional teamwork, communication, and brilliant interpersonal skills. Suitable for both
freshers and experienced professionals in need of a talented problem-solver and team player.
</p>
<a class="cv-btn" href="./mycv/Resume.pdf">Download cv</a>
</div>
</div>
</div>
</section>
<!--SKILLS SECTION-->
<section class="skills py-5" id="skills-id">
<div class="container py-5">
<h1 class="skill-head text-center pb-5">Skills</h1>
<div class="row pb-3">
<div class="col-lg-3 mb-3">
<div class="card border rounded-0 text-center py-3" data-aos="slide-up" data-aos-duration="1000">
<div class="card-body">
<div class="card-icons py-3 rounded-pill">
<svg xmlns="http://www.w3.org/2000/svg" height="2em" viewBox="0 0 448 512">
<path
d="M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z"
/>
</svg>
</div>
<h4 class="fw-bold pt-2">Python</h4>
<p>
Proficient in Python programming with a strong foundation in object-oriented
programming. Familiar with essential Python data structures and algorithms. Basic
knowledge of data manipulation and analysis using libraries like NumPy and Pandas.
</p>
</div>
</div>
</div>
<div class="col-lg-3 mb-3">
<div class="card border rounded-0 text-center py-3" data-aos="slide-up" data-aos-duration="1000">
<div class="card-body">
<div class="card-icons py-3 rounded-pill">
<?xml version="1.0" ?><svg
class="card-svg"
height="24"
viewBox="0 0 24 24"
width="24"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7.533 12.249c-.011 1.985 1.445 3.168 3.768 2.63V9.618c-2.352-.716-3.758.733-3.768 2.631m3.839-10.238h3.199v15.143c-3.066.501-6.004.819-8.104-.355-2.705-1.513-2.923-6.319-.782-8.46 1.085-1.085 3.271-1.85 5.616-1.351V2.225c-.006-.101-.012-.202.071-.214m8.389 3.342h-3.199V2.011h3.199v3.342z"
/>
<path
d="M19.761 7.044c-.003 2.356-.003 4.048-.003 6.911-.136 2.813-.104 5.052-1.135 6.398-.203.266-.634.652-.995.924-.303.228-.881.691-1.208.711-.331.021-1.18-.459-1.564-.64-.505-.237-.971-.553-1.493-.71 1.218-.754 2.372-1.32 2.844-2.844.41-1.326.355-3.247.355-5.119 0-1.849.009-3.998.009-5.63l3.19-.001z"
/>
</svg>
</div>
<h4 class="fw-bold pt-2">Django</h4>
<p>
I've successfully utilized the Django framework to build web applications. I am
well-versed in Django's Object-Relational Mapping (ORM) for efficient database
management. My experience includes the completion of projects that leverage Django to
create web solutions, showcasing my practical skills and knowledge in the field.
</p>
</div>
</div>
</div>
<div class="col-lg-3 mb-3">
<div class="card border rounded-0 text-center py-3" data-aos="slide-up" data-aos-duration="1000">
<div class="card-body">
<div class="card-icons py-3 rounded-pill">
<svg xmlns="http://www.w3.org/2000/svg" height="2em" viewBox="0 0 448 512">
<!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M448 80v48c0 44.2-100.3 80-224 80S0 172.2 0 128V80C0 35.8 100.3 0 224 0S448 35.8 448 80zM393.2 214.7c20.8-7.4 39.9-16.9 54.8-28.6V288c0 44.2-100.3 80-224 80S0 332.2 0 288V186.1c14.9 11.8 34 21.2 54.8 28.6C99.7 230.7 159.5 240 224 240s124.3-9.3 169.2-25.3zM0 346.1c14.9 11.8 34 21.2 54.8 28.6C99.7 390.7 159.5 400 224 400s124.3-9.3 169.2-25.3c20.8-7.4 39.9-16.9 54.8-28.6V432c0 44.2-100.3 80-224 80S0 476.2 0 432V346.1z"
/>
</svg>
</div>
<h4 class="fw-bold pt-2">Database</h4>
<p>
Proficient in SQL with hands-on experience in working with various database management
systems, including MySQL, MongoDB, and Oracle SQL. Successfully completed projects using
Django with SQLite for efficient database management.
</p>
</div>
</div>
</div>
<div class="col-lg-3 mb-3">
<div class="card border rounded-0 text-center py-3" data-aos="slide-up" data-aos-duration="1000">
<div class="card-body">
<div class="card-icons py-3 rounded-pill">
<span class="px-2"
><svg xmlns="http://www.w3.org/2000/svg" height="2em" viewBox="0 0 384 512">
<path
d="M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z"
/></svg
></span>
<span class="px-2"
><svg xmlns="http://www.w3.org/2000/svg" height="2em" viewBox="0 0 384 512">
<path
d="M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"
/></svg
></span>
<span class="px-2"
><svg xmlns="http://www.w3.org/2000/svg" height="2em" viewBox="0 0 448 512">
<path
d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"
/></svg
></span>
</div>
<h4 class="fw-bold pt-2">Frontend development</h4>
<p>
Proficient in front-end technologies including HTML, CSS, and JavaScript. Hands-on
experience in creating diverse projects such as weather apps, portfolio websites, and
more, showcasing a strong command of frontend development.
</p>
</div>
</div>
</div>
<div class="col-lg-3 mb-3">
<div class="card border rounded-0 text-center py-3" data-aos="slide-up" data-aos-duration="1000">
<div class="card-body">
<div class="card-icons py-3 rounded-pill">
<svg xmlns="http://www.w3.org/2000/svg" height="2em" viewBox="0 0 512 512">
<path
d="M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zM167.2 307.5c5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5 4.6 8.8 9.3 17.5 14.3 26.1zm-30.3-120.3c14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26-6.3-14.9-11.6-29.5-16-43.6zm27.4 68.9c6.6-13.8 13.8-27.3 21.4-40.6s15.8-26.2 24.4-38.9c15-1.1 30.3-1.7 45.9-1.7s31 .6 45.9 1.7c8.5 12.6 16.6 25.5 24.3 38.7s14.9 26.7 21.7 40.4c-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6s-30.9-.5-45.6-1.4c-8.7-12.7-16.9-25.7-24.6-39s-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zm-149.7-15c25.3 0 45.8-20.5 45.8-45.8s-20.5-45.8-45.8-45.8c-25.3 0-45.8 20.5-45.8 45.8s20.5 45.8 45.8 45.8z"
/>
</svg>
</div>
<h4 class="fw-bold pt-2">React Js</h4>
<p>
I have skills in React js and build projects in react js that i included in portfolio
section, and familiar with Redux for state management.
</p>
</div>
</div>
</div>
<div class="col-lg-3 mb-3">
<div class="card border rounded-0 text-center py-3" data-aos="slide-up" data-aos-duration="1000">
<div class="card-body">
<div class="card-icons py-3 rounded-pill">
<svg xmlns="http://www.w3.org/2000/svg" height="2em" viewBox="0 0 576 512">
<path
d="M333.5,201.4c0-22.1-15.6-34.3-43-34.3h-50.4v71.2h42.5C315.4,238.2,333.5,225,333.5,201.4z M517,188.6 c-9.5-30.9-10.9-68.8-9.8-98.1c1.1-30.5-22.7-58.5-54.7-58.5H123.7c-32.1,0-55.8,28.1-54.7,58.5c1,29.3-0.3,67.2-9.8,98.1 c-9.6,31-25.7,50.6-52.2,53.1v28.5c26.4,2.5,42.6,22.1,52.2,53.1c9.5,30.9,10.9,68.8,9.8,98.1c-1.1,30.5,22.7,58.5,54.7,58.5h328.7 c32.1,0,55.8-28.1,54.7-58.5c-1-29.3,0.3-67.2,9.8-98.1c9.6-31,25.7-50.6,52.1-53.1v-28.5C542.7,239.2,526.5,219.6,517,188.6z M300.2,375.1h-97.9V136.8h97.4c43.3,0,71.7,23.4,71.7,59.4c0,25.3-19.1,47.9-43.5,51.8v1.3c33.2,3.6,55.5,26.6,55.5,58.3 C383.4,349.7,352.1,375.1,300.2,375.1z M290.2,266.4h-50.1v78.4h52.3c34.2,0,52.3-13.7,52.3-39.5 C344.7,279.6,326.1,266.4,290.2,266.4z"
/>
</svg>
</div>
<h4 class="fw-bold pt-2">Responsivness</h4>
<p>
I am good in bootstrap for designing and developing responsive websites, Utilized Bootstrap
extensively in various projects to create visually appealing and mobile-friendly web
applications
</p>
</div>
</div>
</div>
<div class="col-lg-3 mb-3">
<div class="card border rounded-0 text-center py-3" data-aos="slide-up" data-aos-duration="1000">
<div class="card-body">
<div class="card-icons py-3 rounded-pill">
<?xml version="1.0" encoding="utf-8"?><svg
version="1.1"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
width="50"
height="2em"
viewBox="0 0 113.014 122.881"
enable-background="new 0 0 113.014 122.881"
xml:space="preserve"
>
<g>
<path
d="M42.881,62.313c-0.747-0.768-0.729-1.996,0.038-2.743c0.768-0.747,1.996-0.73,2.743,0.038l6.558,6.755l15.107-15.985 c0.735-0.781,1.963-0.818,2.743-0.083s0.818,1.962,0.084,2.743l-16.502,17.46h0c-0.02,0.02-0.04,0.041-0.06,0.061 c-0.768,0.747-1.996,0.73-2.743-0.038L42.881,62.313L42.881,62.313z M44.131,102.058c-1.138,0.025-2.139-0.806-2.299-1.961 c-0.167-1.201,0.64-2.313,1.817-2.542c-1.304-7.368-4.851-11.429-8.601-15.72c-2.919-3.341-5.95-6.81-8.339-11.919 c-2.354-5.034-3.643-10.23-3.596-15.628c0.046-5.4,1.425-10.961,4.403-16.714c0.019-0.036,0.039-0.072,0.059-0.107l-0.001,0 c3.912-6.62,9.377-11.038,15.468-13.524c5.111-2.086,10.662-2.798,16.101-2.3c5.422,0.497,10.729,2.197,15.365,4.938 c5.905,3.49,10.75,8.668,13.419,15.206c1.444,3.539,2.421,7.493,2.539,11.816c0.119,4.312-0.621,8.959-2.608,13.879 c-2.663,6.591-6.18,10.682-9.473,14.513c-3.031,3.527-5.854,6.813-7.418,11.839c0.886,0.211,1.595,0.945,1.727,1.9 c0.173,1.244-0.696,2.391-1.939,2.563l-0.768,0.108c-0.141,1.095-0.232,2.263-0.27,3.515l0.252-0.036 c1.243-0.172,2.391,0.697,2.563,1.94s-0.696,2.391-1.939,2.563l-0.778,0.11c0.011,0.15,0.02,0.301,0.031,0.454l0.001-0.001 c0.069,0.88,0.076,1.729,0.027,2.545l0.131-0.016c1.248-0.152,2.384,0.735,2.536,1.984c0.152,1.248-0.736,2.384-1.984,2.536 l-1.682,0.206c-1.197,3.112-3.336,5.476-5.866,6.945c-1.738,1.01-3.667,1.594-5.61,1.71c-1.973,0.117-3.958-0.246-5.777-1.135 c-2.084-1.019-3.943-2.71-5.293-5.139c-0.651-0.333-1.13-0.973-1.226-1.753c-0.037-0.308-0.012-0.608,0.067-0.889 c-0.39-1.156-0.685-2.431-0.869-3.827l-0.069,0.01c-1.243,0.172-2.391-0.696-2.563-1.94c-0.172-1.242,0.696-2.39,1.939-2.563 l0.542-0.076C44.188,104.317,44.18,103.155,44.131,102.058L44.131,102.058z M2.181,58.856c-1.167,0.037-2.143-0.88-2.18-2.047 c-0.037-1.167,0.88-2.143,2.047-2.18l8.702-0.3c1.167-0.037,2.143,0.88,2.18,2.047c0.037,1.167-0.88,2.143-2.048,2.18L2.181,58.856 L2.181,58.856z M110.682,50.251c1.162-0.119,2.201,0.728,2.32,1.89c0.119,1.162-0.727,2.202-1.89,2.32l-8.659,0.913 c-1.163,0.119-2.202-0.727-2.32-1.89c-0.119-1.163,0.727-2.202,1.89-2.321L110.682,50.251L110.682,50.251z M94.908,14.783 c0.65-0.97,1.964-1.23,2.935-0.58c0.97,0.65,1.229,1.963,0.58,2.934l-4.836,7.241c-0.65,0.97-1.964,1.23-2.935,0.58 c-0.97-0.65-1.229-1.964-0.58-2.934L94.908,14.783L94.908,14.783z M57.626,2.064C57.653,0.897,58.622-0.027,59.789,0 c1.167,0.028,2.091,0.996,2.063,2.164l-0.22,8.704c-0.027,1.167-0.996,2.091-2.163,2.064s-2.092-0.996-2.063-2.163L57.626,2.064 L57.626,2.064z M13.885,15.528c-0.856-0.796-0.904-2.136-0.108-2.992s2.136-0.904,2.992-0.107l6.365,5.941 c0.856,0.796,0.904,2.136,0.107,2.992c-0.796,0.856-2.136,0.904-2.992,0.108L13.885,15.528L13.885,15.528z M47.881,96.95 l18.492-2.625c1.592-6.701,5.053-10.729,8.797-15.085c3.076-3.578,6.362-7.401,8.76-13.336c1.758-4.352,2.413-8.429,2.311-12.188 c-0.103-3.748-0.965-7.213-2.241-10.34c-2.299-5.632-6.505-10.112-11.645-13.15c-4.111-2.43-8.805-3.936-13.592-4.374 c-4.773-0.437-9.644,0.188-14.128,2.019c-5.26,2.147-9.99,5.975-13.394,11.718c-2.639,5.121-3.859,10.02-3.9,14.731 c-0.041,4.737,1.105,9.33,3.198,13.805c2.133,4.561,4.965,7.803,7.692,10.924C42.469,83.9,46.475,88.488,47.881,96.95L47.881,96.95 z M65.624,99.023l-17.27,2.451c0.054,1.098,0.071,2.253,0.047,3.47l17.053-2.421C65.467,101.288,65.524,100.124,65.624,99.023 L65.624,99.023z M48.487,109.522c0.12,0.921,0.297,1.766,0.525,2.537l16.553-2.036c0.107-0.858,0.131-1.773,0.055-2.743h0.001 l-0.001-0.017l-0.012-0.172L48.487,109.522L48.487,109.522z M51.374,116.358c0.639,0.67,1.35,1.186,2.104,1.554 c1.154,0.564,2.416,0.794,3.672,0.72c1.284-0.076,2.569-0.468,3.736-1.146c1.097-0.637,2.087-1.529,2.877-2.652L51.374,116.358 L51.374,116.358z"
/>
</g>
</svg>
</div>
<h4 class="fw-bold pt-2">Problem Solving</h4>
<p>
As an enthusiast in data structures and algorithms, I am actively engaged in developing
my problem-solving capabilities. My journey as a beginner has equipped me with the
determination and commitment to tackle challenges head-on. I approach problem-solving
with an open mind, a willingness to learn, and a passion for finding efficient and
creative solutions. I am eager to further refine my skills and contribute to solving
real-world problems in the world of technology
</p>
</div>
</div>
</div>
<div class="col-lg-3 mb-3">
<div class="card border rounded-0 text-center py-3" data-aos="slide-up" data-aos-duration="1000">
<div class="card-body">
<div class="card-icons py-3 rounded-pill">
<?xml version="1.0" encoding="utf-8"?><svg
version="1.1"
height="2em"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 122.88 91.26"
style="enable-background: new 0 0 122.88 91.26"
xml:space="preserve"
>
<style type="text/css">
.st0 {
fill-rule: evenodd;
clip-rule: evenodd;
}
</style>
<g>
<path
class="st0"
d="M8.32,0h106.24c4.58,0,8.32,3.74,8.32,8.32v74.62c0,4.57-3.74,8.32-8.32,8.32H8.32C3.74,91.26,0,87.51,0,82.94 V8.32C0,3.74,3.74,0,8.32,0L8.32,0z M43.7,64.74H32.8l-1.57,5.14H21.4l11.73-31.16h10.54l11.68,31.16H45.26L43.7,64.74L43.7,64.74z M41.67,58l-3.4-11.2L34.85,58H41.67L41.67,58z M59.15,38.72h16.02c3.49,0,6.1,0.83,7.84,2.49c1.73,1.66,2.6,4.03,2.6,7.09 c0,3.15-0.95,5.61-2.84,7.38c-1.89,1.78-4.79,2.66-8.68,2.66h-5.28v11.53h-9.66V38.72L59.15,38.72z M68.81,52.03h2.37 c1.87,0,3.18-0.33,3.94-0.97c0.75-0.65,1.13-1.47,1.13-2.48c0-0.98-0.33-1.81-0.99-2.49c-0.65-0.68-1.89-1.02-3.7-1.02h-2.76V52.03 L68.81,52.03z M91.82,38.72h9.66v31.16h-9.66V38.72L91.82,38.72z M117.97,23.29H5.29v60.46c0,0.64,0.25,1.2,0.67,1.63 c0.42,0.42,0.99,0.67,1.63,0.67h108.04c0.64,0,1.2-0.25,1.63-0.67c0.43-0.43,0.67-0.99,0.67-1.63V23.29H117.97L117.97,23.29z M106.64,9.35c2.27,0,4.11,1.84,4.11,4.11c0,2.27-1.84,4.11-4.11,4.11c-2.27,0-4.11-1.84-4.11-4.11 C102.54,11.19,104.38,9.35,106.64,9.35L106.64,9.35z M78.8,9.35c2.27,0,4.11,1.84,4.11,4.11c0,2.27-1.84,4.11-4.11,4.11 c-2.27,0-4.11-1.84-4.11-4.11C74.69,11.19,76.53,9.35,78.8,9.35L78.8,9.35z M92.72,9.35c2.27,0,4.11,1.84,4.11,4.11 c0,2.27-1.84,4.11-4.11,4.11c-2.27,0-4.11-1.84-4.11-4.11C88.61,11.19,90.45,9.35,92.72,9.35L92.72,9.35z"
/>
</g>
</svg>
</div>
<h4 class="fw-bold pt-2">REST API</h4>
<p>
Know Django REST framework for building robust and scalable APIs.Successfully integrated
Django REST framework with React for creating dynamic and interactive web
applications.Demonstrated ability to develop end-to-end web solutions, combining backend
API development with frontend interactivity.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--PORTFOLIO SECTION-->
<section class="portfolio py-5" id="portfolio-id">
<div class="container text-center py-5">
<h1 class="port-head text-center pb-5">Portfolio</h1>
<div class="row pt-5">
<div class="col-lg-4 d-flex justify-content-center">
<div class="card rounded-0 mt-4" style="width: 90%" data-aos="slide-up" data-aos-duration="1000">
<a class="image-zoom" href="./images/Screenshot 2023-10-11 232944.jpg">
<img
src="./images/Screenshot 2023-10-11 232944.jpg"
class="img-fluid"
alt="project image"
/>
</a>
<div class="card-body">
<h5 class="card-title">Ecommerce</h5>
<p class="card-text">
Some quick example text to build on the card title and make up the bulk of the card's
content.
</p>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">
<div class="stack d-flex justify-content-evenly">
<svg xmlns="http://www.w3.org/2000/svg" height="2em" viewBox="0 0 384 512">
<!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z"
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" height="2em" viewBox="0 0 384 512">
<!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" height="2em" viewBox="0 0 448 512">
<!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"
/>
</svg>
</div>
</li>
<li class="list-group-item">
<div class="stack d-flex justify-content-evenly">
<?xml version="1.0" ?><svg
height="24"
viewBox="0 0 24 24"
width="24"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7.533 12.249c-.011 1.985 1.445 3.168 3.768 2.63V9.618c-2.352-.716-3.758.733-3.768 2.631m3.839-10.238h3.199v15.143c-3.066.501-6.004.819-8.104-.355-2.705-1.513-2.923-6.319-.782-8.46 1.085-1.085 3.271-1.85 5.616-1.351V2.225c-.006-.101-.012-.202.071-.214m8.389 3.342h-3.199V2.011h3.199v3.342z"
/>
<path
d="M19.761 7.044c-.003 2.356-.003 4.048-.003 6.911-.136 2.813-.104 5.052-1.135 6.398-.203.266-.634.652-.995.924-.303.228-.881.691-1.208.711-.331.021-1.18-.459-1.564-.64-.505-.237-.971-.553-1.493-.71 1.218-.754 2.372-1.32 2.844-2.844.41-1.326.355-3.247.355-5.119 0-1.849.009-3.998.009-5.63l3.19-.001z"
/>
</svg>
</div>
</li>
<li class="list-group-item">A third item</li>
</ul>
<div class="card-body d-flex justify-content-center">
<button type="button" class="btn m-3 px-2"><a href="#">Open Project</a></button>
<button type="button" class="btn m-3 px-4"><a href="#">Github</a></button>
</div>
</div>
</div>
<div class="col-lg-4 d-flex justify-content-center">
<div class="card rounded-0 mt-4" style="width: 90%" data-aos="slide-up" data-aos-duration="1000">
<a class="image-zoom" href="./images/Screenshot 2023-10-11 232944.jpg">
<img
src="./images/Screenshot 2023-10-11 232944.jpg"
class="img-fluid"
alt="project image"
/>
</a>
<div class="card-body">
<h5 class="card-title">Ecommerce</h5>
<p class="card-text">
Some quick example text to build on the card title and make up the bulk of the card's
content.
</p>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">
<div class="stack d-flex justify-content-evenly">
<svg xmlns="http://www.w3.org/2000/svg" height="2em" viewBox="0 0 384 512">
<!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z"
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" height="2em" viewBox="0 0 384 512">
<!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" height="2em" viewBox="0 0 448 512">
<!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"
/>
</svg>
</div>
</li>
<li class="list-group-item">
<div class="stack d-flex justify-content-evenly">
<?xml version="1.0" ?><svg
height="24"
viewBox="0 0 24 24"
width="24"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7.533 12.249c-.011 1.985 1.445 3.168 3.768 2.63V9.618c-2.352-.716-3.758.733-3.768 2.631m3.839-10.238h3.199v15.143c-3.066.501-6.004.819-8.104-.355-2.705-1.513-2.923-6.319-.782-8.46 1.085-1.085 3.271-1.85 5.616-1.351V2.225c-.006-.101-.012-.202.071-.214m8.389 3.342h-3.199V2.011h3.199v3.342z"
/>
<path
d="M19.761 7.044c-.003 2.356-.003 4.048-.003 6.911-.136 2.813-.104 5.052-1.135 6.398-.203.266-.634.652-.995.924-.303.228-.881.691-1.208.711-.331.021-1.18-.459-1.564-.64-.505-.237-.971-.553-1.493-.71 1.218-.754 2.372-1.32 2.844-2.844.41-1.326.355-3.247.355-5.119 0-1.849.009-3.998.009-5.63l3.19-.001z"
/>
</svg>
</div>
</li>
<li class="list-group-item">A third item</li>
</ul>
<div class="card-body d-flex justify-content-center">
<button type="button" class="btn m-3 px-2"><a href="#">Open Project</a></button>
<button type="button" class="btn m-3 px-4"><a href="#">Github</a></button>
</div>
</div>
</div>
<div class="col-lg-4 d-flex justify-content-center">
<div class="card rounded-0 mt-4" style="width: 90%" data-aos="slide-up" data-aos-duration="1000">
<a class="image-zoom" href="./images/Screenshot 2023-10-11 232944.jpg">
<img
src="./images/Screenshot 2023-10-11 232944.jpg"
class="img-fluid"
alt="project image"
/>
</a>
<div class="card-body">
<h5 class="card-title">Ecommerce</h5>
<p class="card-text">
Some quick example text to build on the card title and make up the bulk of the card's
content.
</p>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">
<div class="stack d-flex justify-content-evenly">
<svg xmlns="http://www.w3.org/2000/svg" height="2em" viewBox="0 0 384 512">
<!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z"
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" height="2em" viewBox="0 0 384 512">
<!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z"
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" height="2em" viewBox="0 0 448 512">
<!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"
/>
</svg>
</div>
</li>
<li class="list-group-item">
<div class="stack d-flex justify-content-evenly">
<?xml version="1.0" ?><svg
height="24"
viewBox="0 0 24 24"
width="24"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7.533 12.249c-.011 1.985 1.445 3.168 3.768 2.63V9.618c-2.352-.716-3.758.733-3.768 2.631m3.839-10.238h3.199v15.143c-3.066.501-6.004.819-8.104-.355-2.705-1.513-2.923-6.319-.782-8.46 1.085-1.085 3.271-1.85 5.616-1.351V2.225c-.006-.101-.012-.202.071-.214m8.389 3.342h-3.199V2.011h3.199v3.342z"
/>
<path
d="M19.761 7.044c-.003 2.356-.003 4.048-.003 6.911-.136 2.813-.104 5.052-1.135 6.398-.203.266-.634.652-.995.924-.303.228-.881.691-1.208.711-.331.021-1.18-.459-1.564-.64-.505-.237-.971-.553-1.493-.71 1.218-.754 2.372-1.32 2.844-2.844.41-1.326.355-3.247.355-5.119 0-1.849.009-3.998.009-5.63l3.19-.001z"
/>
</svg>
</div>
</li>
<li class="list-group-item">A third item</li>
</ul>
<div class="card-body d-flex justify-content-center">
<button type="button" class="btn m-3 px-2"><a href="#">Open Project</a></button>
<button type="button" class="btn m-3 px-4"><a href="#">Github</a></button>
</div>
</div>
</div>
</div>
</div>
</section>
<!--CONTACT SECTION-->
<section class="contact py-5" id="contact-id">
<div class="container py-5">
<h1 class="text-center">Contact me</h1>
<div class="row py-5">
<div class="col-lg-10 mx-auto">
<div class="row text-center">
<div class="col-lg-4">
<div class="circle pb-3">
<svg
xmlns="http://www.w3.org/2000/svg"
width="25"
height="25"
fill="currentColor"
class="bi bi-geo-alt"
viewBox="0 0 16 16"
>
<path
d="M12.166 8.94c-.524 1.062-1.234 2.12-1.96 3.07A31.493 31.493 0 0 1 8 14.58a31.481 31.481 0 0 1-2.206-2.57c-.726-.95-1.436-2.008-1.96-3.07C3.304 7.867 3 6.862 3 6a5 5 0 0 1 10 0c0 .862-.305 1.867-.834 2.94zM8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10z"
/>
<path d="M8 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0 1a3 3 0 1 0 0-6 3 3 0 0 0 0 6z" />
</svg>
</div>
<h5>Address</h5>
<p>
<a href=""
>pantheerankavu<br />kerala<br />
calicut-673019.
</a>
</p>
</div>
<div class="col-lg-4">
<div class="circle pb-3">
<span
><svg
xmlns="http://www.w3.org/2000/svg"
width="25"
height="25"
fill="currentColor"
class="bi bi-envelope"
viewBox="0 0 16 16"
>
<path
d="M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1H2Zm13 2.383-4.708 2.825L15 11.105V5.383Zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741ZM1 11.105l4.708-2.897L1 5.383v5.722Z"
/></svg
></span>
</div>
<h5>Email</h5>
<p><a href="">[email protected]</a></p>
</div>
<div class="col-lg-4">
<div class="circle pb-3">
<span
><svg
xmlns="http://www.w3.org/2000/svg"
width="25"
height="25"
fill="currentColor"
class="bi bi-telephone"
viewBox="0 0 16 16"
>
<path
d="M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z"
/></svg
></span>
</div>
<h5>Contact</h5>
<p><a href="">6238366862</a></p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-9 mx-auto">
<!--EMAIL FORM-->
<form action="https://formsubmit.co/[email protected]" method="post">
<div class="row">
<div class="col-lg-6">
<input type="text" name="name" class="form-control rounded-0 bg-light mb-3" placeholder="Your Name" required autocomplete="off"/>
</div>
<div class="col-lg-6">
<input type="text" name="email" class="form-control rounded-0 bg-light mb-3" placeholder="Email" required autocomplete="off" />
</div>
</div>
<div class="form-row">
<div class="col-lg-12 mb-5">
<textarea
name="message"
class="form-control rounded-0 bg-light"
placeholder="Message"
cols="30"
rows="10"
required
></textarea>
</div>
</div>
<div class="ct-button d-flex justify-content-center">
<button type="submit" class="btn3 border-0 px-4 py-2">Send</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!--SIDEBAR-->
<div class="sidebar">
<ul class="sidebar-ul">
<li>
<a href="https://github.com/Aswin-pv"
><svg xmlns="http://www.w3.org/2000/svg" height="1.3em" viewBox="0 0 496 512">
<!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<style>
svg {
fill: #ffffff;
}
</style>
<path
d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"
/></svg
></a>
</li>
<li>
<a href="https://x.com/pvaswin888?t=63RnuIE6MjiI2HCPNPdh_w&s=08">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-twitter-x"
viewBox="0 0 16 16"
>
<path
d="M12.6.75h2.454l-5.36 6.142L16 15.25h-4.937l-3.867-5.07-4.425 5.07H.316l5.733-6.57L0 .75h5.063l3.495 4.633L12.601.75Zm-.86 13.028h1.36L4.323 2.145H2.865l8.875 11.633Z"
/></svg
></a>
</li>
<li>
<a href="https://wa.me/916238366862"
><svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-whatsapp"
viewBox="0 0 16 16"
>
<path
d="M13.601 2.326A7.854 7.854 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.933 7.933 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.898 7.898 0 0 0 13.6 2.326zM7.994 14.521a6.573 6.573 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.557 6.557 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592zm3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.088-.403.087-.088.197-.232.296-.346.1-.114.133-.198.198-.33.065-.134.034-.248-.015-.347-.05-.099-.445-1.076-.612-1.47-.16-.389-.323-.335-.445-.34-.114-.007-.247-.007-.38-.007a.729.729 0 0 0-.529.247c-.182.198-.691.677-.691 1.654 0 .977.71 1.916.81 2.049.098.133 1.394 2.132 3.383 2.992.47.205.84.326 1.129.418.475.152.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232z"
/></svg
></a>
</li>
<li>
<a href="https://www.linkedin.com/in/aswin-pv-870339254">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-linkedin"
viewBox="0 0 16 16"
>
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z"
/></svg
></a>
</li>
</ul>
</div>
<!--AOS ANIMATION-->
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<!--BOOTSTRAP-->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"
></script>
<!--INDEX FILE-->
<script src="index.js"></script>
<!--JQUERRY and IMAGEPOP-->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/jquery.magnific-popup.min.js"></script>
</body>
</html>