-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1365 lines (1297 loc) · 64.9 KB
/
index.html
File metadata and controls
1365 lines (1297 loc) · 64.9 KB
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>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-221452204-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-221452204-1');
</script>
<title>WebDevChandan Portfolio | WordPress & Front End Web Devloper </title>
<meta charset="utf-8" />
<meta name="google-site-verification" content="uX44wWS7WeRhFV0sfeOtZ9-1cuHdIkOtsKU-K3NMjM0" />
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<link rel="dns-prefetch" href="http://cdnjs.cloudflare.com/">
<link rel="dns-prefetch" href="http://www.googletagmanager.com/">
<link rel="dns-prefetch" href="http://www.google-analytics.com/">
<link rel="canonical" href="https://hirechandan.in" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<meta name=description content="WebDevChandan Portfolio: A WordPress & Front End Web Developer with a strong interest in projects requiring conceptual and analytical thinking.">
<meta name=robots content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1"/>
<meta name="theme-color" content="#eff0f4">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="#eff0f4">
<meta name="apple-mobile-web-app-title" content="WebDevChandan Portfolio | WordPress & Front End Web Devloper ">
<meta name="apple-touch-icon" content="apple-touch-icon.png">
<meta name="msapplication-TileImage" content="apple-touch-icon.png">
<meta name="msapplication-TileColor" content="#eff0f4">
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="WebDevChandan Portfolio | WordPress & Front End Web Devloper" />
<meta property="og:description"
content="WebDevChandan Portfolio: A WordPress & Front End Web Developer with a strong interest in projects requiring conceptual and analytical thinking." />
<meta property="og:url" content="https://hirechandan.in/" />
<meta property="og:image" content="webdevchandan.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:description"
content="WebDevChandan Portfolio: A WordPress & Front End Web Developer with a strong interest in projects requiring conceptual and analytical thinking." />
<meta name="twitter:title" content="WebDevChandan Portfolio | WordPress & Front End Web Devloper" />
<meta name="twitter:image" content="webdevchandan.png" />
<link rel="stylesheet" href="css/skins/color-1.css">
<!-- Fontawesome -->
<link rel="stylesheet" href="css/font-awesome.css">
<!-- Stylesheet -->
<link rel="stylesheet" href="css/style.css">
<!-- SVG stylesheet -->
<link rel="stylesheet" href="css/SVG.css">
<!-- responsive css -->
<link rel="stylesheet" href="css/responsive.css">
<!-- style switcher -->
<link rel="stylesheet" href="css/skins/color-1.css" class="alternate-style" title="color-1" disabled>
<link rel="stylesheet" href="css/skins/color-2.css" class="alternate-style" title="color-2" disabled>
<link rel="stylesheet" href="css/skins/color-3.css" class="alternate-style" title="color-3" disabled>
<link rel="stylesheet" href="css/skins/color-4.css" class="alternate-style" title="color-4" disabled>
<link rel="stylesheet" href="css/skins/color-5.css" class="alternate-style" title="color-5" disabled>
<link rel="stylesheet" href="css/style-switcher.css">
<!-- Jquerry -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!--Schema Markup Data-->
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Person",
"name": "Chandan Kumar",
"url": "https://hirechandan.in/",
"image": "https://hirechandan.in/img/Chandan_Kumar.webp",
"sameAs": [
"https://www.facebook.com/profile.php?id=100043375849234",
"https://twitter.com/WebChandan",
"https://www.linkedin.com/in/webdevchandan/",
"https://github.com/WebDevChandan",
"https://hirechandan.in/"
],
"jobTitle": "WordPress & Front End Web Developer",
"worksFor": {
"@type": "Organization",
"name": "Hawk Viewer - The Digital EYE"
}
}
</script>
</head>
<body oncontextmenu="return false" oncopy="return false">
<!-- preloader start -->
<div class="preloader">
<div class="box">
<div></div><div></div><div></div>
</div>
</div>
<!-- preloader end -->
<!-- header start -->
<header class="header">
<div class="container">
<div class="row justify-content-between">
<div class="logo">
<a href="https://hirechandan.in/">C</a>
</div>
<div class="wrn_msg">Sorry, The Pressed Keys are not Allowed
<div class="crs"></div>
</div>
<div class="hamburger-btn outer-shadow hover-in-shadow">
<span>
</span>
</div>
</div>
</div>
</header>
<!-- header end -->
<!-- navigation menu start -->
<nav class="nav-menu">
<div class="close-nav-menu outer-shadow hover-in-shadow">×</div>
<div class="nav-menu-inner">
<ul>
<li><a href="#home" class="link-item inner-shadow active">home</a></li>
<li><a href="#about" class="link-item outer-shadow hover-in-shadow">about</a></li>
<li><a href="#services" class="link-item outer-shadow hover-in-shadow">services</a></li>
<li><a href="#portfolio" class="link-item outer-shadow hover-in-shadow">portfolio</a></li>
<li><a href="#testimonial" class="link-item outer-shadow hover-in-shadow">testimonial</a></li>
<li><a href="#contact" class="link-item outer-shadow hover-in-shadow">contact</a></li>
</ul>
</div>
<!-- copyright text -->
<p class="copyright-text">
Copyright © 2021 WebDevChandan
</p>
</nav>
<div class="fade-out-effect"></div>
<!-- navigation menu end -->
<!-- home section start -->
<section class="home-section section active" id="home">
<!-- effect wrap start -->
<div class="effect-wrap">
<div class="effect effect-1">
</div>
<div class="effect effect-2">
<div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div>
</div>
<div class="effect effect-3">
</div>
<div class="effect effect-4">
</div>
<div class="effect effect-5">
<div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div>
</div>
</div>
<!-- effect wrap end -->
<div class="container">
<div class="row full-screen align-items-center">
<div class="home-text">
<p>Hello</p>
<h2>I'm <label id="myName" data-text="Chandan">Chandan</label> <svg id="logo" width="150.89" height="40" viewBox="0 0 433 115" fill="black" xmlns="http://www.w3.org/2000/svg">
<mask id="path-1-outside-1" maskUnits="userSpaceOnUse" x="0.815994" y="0.759995" width="432" height="114" fill="#000000">
<rect fill="yellow" x="0.815994" y="0.759995" width="432" height="114"/>
<path d="M5.81599 108V5.90399H15.896V65.232L72.2 5.75999H83.288L41.528 50.688L85.448 108H74.072L35.048 56.736L15.896 76.608V108H5.81599Z"/>
<path d="M93.08 77.04V32.976H102.872V75.312C102.872 92.304 108.68 100.8 120.296 100.8C126.056 100.8 131.432 98.928 136.424 95.184C141.512 91.44 145.16 86.448 147.368 80.208V32.976H157.16V96.192C157.16 98.784 158.312 100.128 160.616 100.224V108C159.464 108.192 158.552 108.288 157.88 108.288C157.304 108.288 156.68 108.288 156.008 108.288C153.992 108.096 152.264 107.328 150.824 105.984C149.48 104.64 148.808 103.008 148.808 101.088L148.52 91.008C145.256 96.864 140.792 101.424 135.128 104.688C129.56 107.856 123.512 109.44 116.984 109.44C101.048 109.44 93.08 98.64 93.08 77.04Z"/>
<path d="M290.9 108H281.108V66.096C281.108 57.456 279.716 51.072 276.932 46.944C274.148 42.72 270.02 40.608 264.548 40.608C258.788 40.608 253.7 42.624 249.284 46.656C244.868 50.688 241.748 55.872 239.924 62.208V108H230.132V66.096C230.132 57.264 228.74 50.832 225.956 46.8C223.268 42.672 219.188 40.608 213.716 40.608C208.052 40.608 202.964 42.576 198.452 46.512C194.036 50.448 190.916 55.632 189.092 62.064V108H179.3V32.976H188.228V49.968C191.3 44.208 195.332 39.744 200.324 36.576C205.316 33.312 210.836 31.68 216.884 31.68C223.124 31.68 228.164 33.504 232.004 37.152C235.844 40.704 238.196 45.312 239.06 50.976C245.972 38.112 255.62 31.68 268.004 31.68C276.452 31.68 282.356 34.656 285.716 40.608C289.172 46.464 290.9 54.288 290.9 64.08V108Z"/>
<path d="M305.58 86.4C305.58 81.792 306.924 77.808 309.612 74.448C312.3 70.992 315.996 68.304 320.7 66.384C325.5 64.464 331.02 63.504 337.26 63.504C340.908 63.504 344.7 63.84 348.636 64.512C352.572 65.088 356.076 65.904 359.148 66.96V60.624C359.148 54.288 357.276 49.248 353.532 45.504C349.788 41.76 344.604 39.888 337.98 39.888C334.044 39.888 330.108 40.656 326.172 42.192C322.236 43.632 318.156 45.792 313.932 48.672L310.188 41.76C315.084 38.4 319.884 35.904 324.588 34.272C329.292 32.544 334.092 31.68 338.988 31.68C348.204 31.68 355.5 34.32 360.876 39.6C366.252 44.88 368.94 52.176 368.94 61.488V96.192C368.94 98.784 370.14 100.128 372.54 100.224V108C370.428 108.288 368.94 108.384 368.076 108.288C365.676 108.192 363.852 107.424 362.604 105.984C361.356 104.544 360.684 103.008 360.588 101.376L360.444 95.904C357.084 100.224 352.716 103.584 347.34 105.984C341.964 108.288 336.492 109.44 330.924 109.44C326.028 109.44 321.66 108.432 317.82 106.416C313.98 104.304 310.956 101.52 308.748 98.064C306.636 94.512 305.58 90.624 305.58 86.4ZM355.836 92.16C358.044 89.568 359.148 87.168 359.148 84.96V74.016C352.524 71.424 345.612 70.128 338.412 70.128C331.404 70.128 325.74 71.52 321.42 74.304C317.1 77.088 314.94 80.88 314.94 85.68C314.94 89.808 316.524 93.552 319.692 96.912C322.956 100.272 327.468 101.952 333.228 101.952C337.932 101.952 342.3 101.04 346.332 99.216C350.46 97.392 353.628 95.04 355.836 92.16Z"/>
<path d="M427.537 41.616C421.009 41.808 415.249 43.632 410.257 47.088C405.361 50.544 401.905 55.296 399.889 61.344V108H390.097V32.976H399.313V50.976C401.905 45.696 405.313 41.424 409.537 38.16C413.857 34.896 418.417 33.072 423.217 32.688C424.177 32.592 424.993 32.544 425.665 32.544C426.337 32.544 426.961 32.592 427.537 32.688V41.616Z"/>
</mask>
<path d="M5.81599 108V5.90399H15.896V65.232L72.2 5.75999H83.288L41.528 50.688L85.448 108H74.072L35.048 56.736L15.896 76.608V108H5.81599Z" stroke="#ff0d5ff0" stroke-width="5" mask="url(#path-1-outside-1)"/>
<path d="M93.08 77.04V32.976H102.872V75.312C102.872 92.304 108.68 100.8 120.296 100.8C126.056 100.8 131.432 98.928 136.424 95.184C141.512 91.44 145.16 86.448 147.368 80.208V32.976H157.16V96.192C157.16 98.784 158.312 100.128 160.616 100.224V108C159.464 108.192 158.552 108.288 157.88 108.288C157.304 108.288 156.68 108.288 156.008 108.288C153.992 108.096 152.264 107.328 150.824 105.984C149.48 104.64 148.808 103.008 148.808 101.088L148.52 91.008C145.256 96.864 140.792 101.424 135.128 104.688C129.56 107.856 123.512 109.44 116.984 109.44C101.048 109.44 93.08 98.64 93.08 77.04Z" stroke="#ff0d5ff0" stroke-width="5" mask="url(#path-1-outside-1)"/>
<path d="M290.9 108H281.108V66.096C281.108 57.456 279.716 51.072 276.932 46.944C274.148 42.72 270.02 40.608 264.548 40.608C258.788 40.608 253.7 42.624 249.284 46.656C244.868 50.688 241.748 55.872 239.924 62.208V108H230.132V66.096C230.132 57.264 228.74 50.832 225.956 46.8C223.268 42.672 219.188 40.608 213.716 40.608C208.052 40.608 202.964 42.576 198.452 46.512C194.036 50.448 190.916 55.632 189.092 62.064V108H179.3V32.976H188.228V49.968C191.3 44.208 195.332 39.744 200.324 36.576C205.316 33.312 210.836 31.68 216.884 31.68C223.124 31.68 228.164 33.504 232.004 37.152C235.844 40.704 238.196 45.312 239.06 50.976C245.972 38.112 255.62 31.68 268.004 31.68C276.452 31.68 282.356 34.656 285.716 40.608C289.172 46.464 290.9 54.288 290.9 64.08V108Z" stroke="#d429e3" stroke-width="5" mask="url(#path-1-outside-1)"/>
<path d="M305.58 86.4C305.58 81.792 306.924 77.808 309.612 74.448C312.3 70.992 315.996 68.304 320.7 66.384C325.5 64.464 331.02 63.504 337.26 63.504C340.908 63.504 344.7 63.84 348.636 64.512C352.572 65.088 356.076 65.904 359.148 66.96V60.624C359.148 54.288 357.276 49.248 353.532 45.504C349.788 41.76 344.604 39.888 337.98 39.888C334.044 39.888 330.108 40.656 326.172 42.192C322.236 43.632 318.156 45.792 313.932 48.672L310.188 41.76C315.084 38.4 319.884 35.904 324.588 34.272C329.292 32.544 334.092 31.68 338.988 31.68C348.204 31.68 355.5 34.32 360.876 39.6C366.252 44.88 368.94 52.176 368.94 61.488V96.192C368.94 98.784 370.14 100.128 372.54 100.224V108C370.428 108.288 368.94 108.384 368.076 108.288C365.676 108.192 363.852 107.424 362.604 105.984C361.356 104.544 360.684 103.008 360.588 101.376L360.444 95.904C357.084 100.224 352.716 103.584 347.34 105.984C341.964 108.288 336.492 109.44 330.924 109.44C326.028 109.44 321.66 108.432 317.82 106.416C313.98 104.304 310.956 101.52 308.748 98.064C306.636 94.512 305.58 90.624 305.58 86.4ZM355.836 92.16C358.044 89.568 359.148 87.168 359.148 84.96V74.016C352.524 71.424 345.612 70.128 338.412 70.128C331.404 70.128 325.74 71.52 321.42 74.304C317.1 77.088 314.94 80.88 314.94 85.68C314.94 89.808 316.524 93.552 319.692 96.912C322.956 100.272 327.468 101.952 333.228 101.952C337.932 101.952 342.3 101.04 346.332 99.216C350.46 97.392 353.628 95.04 355.836 92.16Z" stroke="#000000" stroke-width="3" mask="url(#path-1-outside-1)"/>
<path d="M427.537 41.616C421.009 41.808 415.249 43.632 410.257 47.088C405.361 50.544 401.905 55.296 399.889 61.344V108H390.097V32.976H399.313V50.976C401.905 45.696 405.313 41.424 409.537 38.16C413.857 34.896 418.417 33.072 423.217 32.688C424.177 32.592 424.993 32.544 425.665 32.544C426.337 32.544 426.961 32.592 427.537 32.688V41.616Z" stroke="#000000" stroke-width="3" mask="url(#path-1-outside-1)"/>
</svg></h2>
<h1>WordPress & Front End Web Developer</h1>
<a href="#portfolio" class="link-item btn-1 outer-shadow hover-in-shadow">Portfolio</a>
<a href="https://hirechandan.in/myResume.pdf" target="_blank" class="link-item btn-1 outer-shadow hover-in-shadow">Resume</a>
</div>
<div class="home-img">
<div class="img-box inner-shadow">
<img src="img/Chandan_Kumar.webp" class="outer-shadow" alt="Chandan Kumar">
</div>
</div>
</div>
</div>
</section>
<!-- home section end -->
<!-- about section start-->
<section class="about-section section" id="about">
<div class="container">
<div class="row">
<div class="section-title">
<h2 data-heading="main info">About me</h2>
</div>
</div>
<div class="row">
<div class="about-img">
<div class="img-box inner-shadow">
<img src="img/Chandan_Kumar.webp" alt="Chandan Kumar" class="outer-shadow">
</div>
<!-- social links start -->
<div class="social-links">
<a href="https://www.facebook.com/profile.php?id=100043375849234" target="_blank" class="outer-shadow hover-in-shadow"><i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com/WebChandan" target="_blank" class="outer-shadow hover-in-shadow"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/webdevchandan/" target="_blank" class="outer-shadow hover-in-shadow"><i class="fab fa-linkedin-in"></i></a>
<a href="https://github.com/WebDevChandan" target="_blank" class="outer-shadow hover-in-shadow"><i class="fab fa-github"></i></a>
</div>
<!-- social links end -->
</div>
<div class="about-info">
<p>Hello, My name is Chandan Kumar. I am a <span>Front End & WordPress Developer</span> from Jharkhand, India. I like to code things from scratch and enjoy bringing ideas to life in the browser. I value simple content structure, clean design patterns, and thoughtful interactions. I've done remote work for agencies, consulted for startups, and also worked as a Freelancer in a various online digital platform. <br/><br/>I love in turning People's Imagination into Reality. Feel free to take a look at my latest projects on my <a href="#portfolio" class="link-item" style="font-weight: bold; color: var(--text-black-600); " >Portfolio page</a>.</p>
<p>Remotely available UTC-1 to UTC+05:30. <a href="mailto:hirechandan@gmail.com" class="link-item" style="font-weight: 600; color: var(--text-black-600); " >hirechandan@gmail.com</a></p>
<a href="myResume.pdf" target="_blank" class="btn-1 outer-shadow hover-in-shadow">Download Resume</a>
<a href="#contact" class="link-item btn-1 outer-shadow hover-in-shadow">Hire Me</a>
</div>
</div>
<!--about tabs start -->
<div class="row">
<div class="about-tabs">
<span class="tab-item outer-shadow active" data-target=".skills">skills</span>
<span class="tab-item" data-target=".experience">experience</span>
<span class="tab-item" data-target=".education">education</span>
</div>
</div>
<!--about tabs end -->
<!-- skills start -->
<div class="row">
<div class="skills tab-content active">
<div class="row">
<!-- skill item start -->
<div class="skill-item">
<p>Html</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(90% - 14px)">
<span>90%</span>
</div>
</div>
</div>
<!-- skill item end -->
<!-- skill item start -->
<div class="skill-item">
<p>CSS</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(75% - 14px)">
<span>75%</span>
</div>
</div>
</div>
<!-- skill item end -->
<!-- skill item start -->
<div class="skill-item">
<p>Javascript</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(70% - 14px)">
<span>70%</span>
</div>
</div>
</div>
<!-- skill item end -->
<!-- skill item start -->
<div class="skill-item">
<p>Bootstrap</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(85% - 14px)">
<span>85%</span>
</div>
</div>
</div>
<!-- skill item end -->
<!-- skill item start -->
<div class="skill-item">
<p>Jquery</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(60% - 14px)">
<span>60%</span>
</div>
</div>
</div>
<!-- skill item end -->
<!-- skill item start -->
<div class="skill-item">
<p>PHP</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(85% - 14px)">
<span>65%</span>
</div>
</div>
</div>
<!-- skill item end -->
<!-- skill item start -->
<div class="skill-item">
<p>SQL</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(85% - 14px)">
<span>85%</span>
</div>
</div>
</div>
<!-- skill item end -->
<!-- skill item start -->
<div class="skill-item">
<p>WordPress</p>
<div class="progress inner-shadow">
<div class="progress-bar" style="width: calc(80% - 14px)">
<span>90%</span>
</div>
</div>
</div>
<!-- skill item end -->
</div>
</div>
</div>
<!-- skills end -->
<!-- experience start -->
<div class="row">
<div class="experience tab-content">
<div class="row">
<div class="timeline">
<div class="row">
<!-- timeline item start -->
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow">
<i class="fas fa-briefcase icon"></i>
<span>May, 2019 - Present</span>
<h3>Front End & WordPress developer </h3>
<h4>Fiverr, Israel</h4>
<p>
Currently, I'm working at Fiverr as Freelancer by providing my services as Front End Developer over 100+ clients per month. Fiverr is an Israeli online marketplace for freelance services. The company provide a platform for freelancers to offer services to customers worldwide.
</p>
</div>
</div>
<!-- timeline item end -->
<!-- timeline item start -->
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow">
<i class="fas fa-briefcase icon"></i>
<span>Oct, 2017 - Nov, 2017</span>
<h3>WordPress Developer Intern</h3>
<h4>All India Tour & Taxi, India</h4>
<p>I've worked remotely with this company as a Senior WordPress Developer to build a Car Rental Website for their business. This is a Car Rental Service providing Company in over 3+ states across India which are located in Uttar Pradesh, India.
</p>
</div>
</div>
<!-- timeline item end -->
</div>
</div>
</div>
</div>
</div>
<!-- experience end -->
<!-- education start -->
<div class="row">
<div class="education tab-content">
<div class="row">
<div class="timeline">
<div class="row">
<!-- timeline item start -->
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow">
<i class="fas fa-graduation-cap icon"></i>
<span>2019 - Present</span>
<h3>Bachelor of Technology In Computer Science & Soft. Engineering</h3>
<p>
Currently, I'm pursuing my B.Tech Degree in Computer Science and Software Engineering from <a href="https://cgu-odisha.ac.in/" target="_blank" style="color: var(--text-black-600); font-weight: 550;" rel="nofollow">C.V. Raman Global University <i class='fas fa-external-link-alt'></i></a> since August 2019. This is an engineering and management institution located in Bhubaneswar, Odisha.
</p>
</div>
</div>
<!-- timeline item end -->
<!-- timeline item start -->
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow">
<i class="fas fa-graduation-cap icon"></i>
<span>2017 - 2019</span>
<h3>Higher Secondary Education</h3>
<p>
I've completed my Intermediate with Science Stream(Physics, Chemistry, Maths and Computer Fundamentals) from CBSE Board in India. I studied from <label style="font-weight: 550; color: var(--text-black-600);"> Crescent Public School</label> (Affiliated from CBSE Board), SEC-VI, BOKARO STEEL CITY, JHARKHAND.
</p>
</div>
</div>
<!-- timeline item end -->
<!-- timeline item start -->
<div class="timeline-item">
<div class="timeline-item-inner outer-shadow">
<i class="fas fa-graduation-cap icon"></i>
<span>2017</span>
<h3>Secondary Education</h3>
<p>
I've completed my Matriculation from CBSE Board in India. I studied at <label style="font-weight: 550; color: var(--text-black-600);"> Crescent Public School</label> (Affiliated from CBSE Board), SEC-VI, BOKARO STEEL CITY, JHARKHAND.
</p>
</div>
</div>
<!-- timeline item end -->
</div>
</div>
</div>
</div>
</div>
<!-- education end -->
</div>
</section>
<!-- about section end-->
<!-- service section start -->
<section class="service-section section" id="services">
<div class="container">
<div class="row">
<div class="section-title">
<h2 data-heading="Services">What i do</h2>
</div>
</div>
<div class="row">
<!-- service item start -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-mobile-alt"></i>
</div>
<h3>Responsive design</h3>
<p>Responsiveness is my primary goal for making Design of a website. A responsive design makes your website accessible to all users, regardless of their device.</p>
</div>
</div>
<!-- service item end -->
<!-- service item start -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-laptop-code"></i>
</div>
<h3>Web design</h3>
<p>My approach to website design is to create a website that strengthens your company’s brand while ensuring ease of use and simplicity for your audience.</p>
</div>
</div>
<!-- service item end -->
<!-- service item start -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fab fa-wordpress"></i>
</div>
<h3>WordPress</h3>
<p>Manage your website using the web's most popular CMS which allow you to easily update your website's content without knowing how to code.</p>
</div>
</div>
<!-- service item end -->
<!-- service item start -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-code"></i>
</div>
<h3>clean code</h3>
<p>A Clean Code help in increasing the readability for Clients or Developers and create ease for them while editing the code.</p>
</div>
</div>
<!-- service item end -->
<!-- service item start -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-search"></i>
</div>
<h3>Website seo</h3>
<p>Make your website fast, easy to find, and reach the widest audience possible around all over the Globe. </p>
</div>
</div>
<!-- service item end -->
<!-- service item start -->
<div class="service-item">
<div class="service-item-inner outer-shadow">
<div class="icon inner-shadow">
<i class="fas fa-bullhorn"></i>
</div>
<h3>Grand support</h3>
<p>Client satisfaction has always been my first priority. That's why I Always ready to help my clients even after the completion of my work.</p>
</div>
</div>
<!-- service item end -->
</div>
</div>
</section>
<!-- service section end -->
<!--portfolio section start -->
<section class="portfolio-section section" id="portfolio">
<div class="container">
<div class="row">
<div class="section-title">
<h2 data-heading="portfolio">
Latest Works
</h2>
</div>
</div>
<!-- portfolio filter start -->
<div class="row">
<div class="portfolio-filter">
<span class="filter-item outer-shadow active" data-target="all">all</span>
<span class="filter-item" data-target="web-application">web application</span>
<span class="filter-item" data-target="wordpress">WordPress</span>
<span class="filter-item" data-target="e-commerce">E-Commerce</span>
<span class="filter-item" data-target="web-design-&-development">Web Design & Development</span>
</div>
</div>
<!-- portfolio filter end -->
<!-- portfolio items start -->
<div class="row portfolio-items">
<!-- portfolio item start-->
<div class="portfolio-item" data-category="web-application">
<div class="portfolio-item-inner outer-shadow">
<div class="portfolio-item-img">
<img class="animate" src="img/portfolio/thumb/project-16.webp" alt="GoChat by MoviesRocker.co" title="GoChat"
data-screenshots="img/portfolio/large/project-16/GoChat Landing Page.webp,
img/portfolio/large/project-16/GoChat Admin Panel.webp,
img/portfolio/large/project-16/GoChat Chat Room.webp">
<!-- view project btn -->
<span class="view-project">view project</span>
</div>
<p class="portfolio-item-title">GoChat </p>
<!-- portfolio item details start -->
<div class="portfolio-item-details">
<div class="row">
<div class="description">
<h3>Project Brief</h3>
<ul class="prjt-brf">
<li> GoChat is a live free online community chat web application for every people around all over the world.</li>
<li>It allows their user to create multiple chat rooms to build a community for sharing information. Users can create their profiles and customize Rooms as per their branding. Moreover, they can make their rooms available for joining as Publicly or Privately as per their preference.</li>
<li>It uses Front-End and Back-End Tools (PHP & SQL) along with jQuery library and Node.Js.</li>
<li>Required APIs - APIs of Facebook, Google, Twitter (For Social login Integration).</li>
<li><label style="font-weight: bold; color: var(--text-black-600); ">Uniqueness</label>:- GoChat comes with Radio-Station Integration which fetches data from the source "Radiosure" (www.radiosure.com/stations). Users can play radios (For news & Songs) as per their choice while chatting inside the Chat Room.</li>
</ul>
</div>
<div class="info">
<h3>Project Info</h3>
<ul>
<li>Date - <span>Apr, 2021 - Jul,2021</span></li>
<li>My Project <span>- Chandan Kumar</span></li>
<li>Tools - <span>HTML, CSS, JavaScript, PHP, jQuery, SQL, Node.Js & Required APIs</span></li>
<li>Web - <span><a href="https://gochat.moviesrocker.co/" target="_blank">gochat.moviesrocker.co</a></span></li>
<li>Demo - <span>Email: demo@demo.com / Password: demo</span></li>
</ul>
</div>
</div>
</div>
<!-- portfolio item details end -->
</div>
</div>
<!-- portfolio item end-->
<!-- portfolio item start-->
<div class="portfolio-item" data-category="web-design-&-development">
<div class="portfolio-item-inner outer-shadow">
<div class="portfolio-item-img">
<img class="animate" src="img/portfolio/thumb/project-15.webp" alt="MoviesRocker.Co" title="MoviesRocker"
data-screenshots="img/portfolio/large/project-15/Moviesrocker Landing Page.webp,
img/portfolio/large/project-15/Movies and Cast info.webp,
img/portfolio/large/project-15/Moviesrocker Admin Panel.webp">
<!-- view project btn -->
<span class="view-project">view project</span>
</div>
<p class="portfolio-item-title">MoviesRocker.Co - Movie Review Website</p>
<!-- portfolio item details start -->
<div class="portfolio-item-details">
<div class="row">
<div class="description">
<h3>Project Brief</h3>
<ul class="prjt-brf">
<li> MoviesRocker is a Movies & TV series Review, Celebrity bio & news website. It uses TMDB API for the integration of database for Movies and TV shows. Users can create profile, Add Multiple lists to stores movies/shows, able to give reviews & comments, easy to get info. about any movies, tv shows & celebrities across the world.</li>
<li>It uses Front-End and Back-End Tools ( Including, PHP & SQL) along with jQuery library. </li>
<li>Required APIs - TMDB API (The Movie Database is a popular, user editable database for movies and TV shows ), APIs of Facebook, Google, Twitter (For the purpose of Social login Integration).</li>
</ul>
</div>
<div class="info">
<h3>Project Info</h3>
<ul>
<li>Date - <span>Apr,2021 - June, 2021</span></li>
<li>My Project <span>- Chandan Kumar</span></li>
<li>Tools - <span>HTML, CSS, JavaScript, PHP, jQuery, SQL & Required APIs</span></li>
<li>Web - <span><a href="https://www.moviesrocker.co/" target="_blank">www.moviesrocker.co</a></span></li>
<li>Demo - <span>Email: hirechandan@gmail.com / Password: demo@123</span></li>
</ul>
</div>
</div>
</div>
<!-- portfolio item details end -->
</div>
</div>
<!-- portfolio item end-->
<!-- portfolio item start-->
<div class="portfolio-item" data-category="web-design-&-development">
<div class="portfolio-item-inner outer-shadow">
<div class="portfolio-item-img">
<img class="animate" src="img/portfolio/thumb/project-12.webp" alt="Aderaba, A Video Sharing Website" title="Aderaba, A Video Sharing Website"
data-screenshots="img/portfolio/large/project-12/Aderaba Project Thumbnail.webp,
img/portfolio/large/project-12/Aderaba Home Page.webp,
img/portfolio/large/project-12/Aderaba admin panel.webp,
img/portfolio/large/project-12/Video Studios.webp">
<!-- view project btn -->
<span class="view-project">view project</span>
</div>
<p class="portfolio-item-title">Aderaba | YouTube Alternative </p>
<!-- portfolio item details start -->
<div class="portfolio-item-details">
<div class="row">
<div class="description">
<h3>Project Brief</h3>
<ul class="prjt-brf">
<li>Aderaba is a Yiddish video sharing platform, to see, share and upload videos.</li>
<li>It allow users to subscribe other's channel or create their own channel like YouTube.</li>
<li>It uses Front-End and Back-End Tools( Including, PHP & SQL) along with the Required APIs - APIs YouTube, Facebook, Twitch, DailyMotion to Upload and Import Videos.
</li>
</ul>
</div>
<div class="info">
<h3>Project Info</h3>
<ul>
<li>Date - <span>15th Apr, 2021</span></li>
<li>Client - <span>Shmieleisenberg</span></li>
<li>Tools - <span>HTML, CSS, JavaScript, PHP, jQuerry, AJAX, SQL, Required APIs.</span></li>
<li>Web - <span><a href="https://aderaba.com/" target="_blank" rel="nofollow">aderaba.com</a></span>
</li>
</ul>
</div>
</div>
</div>
<!-- portfolio item details end -->
</div>
</div>
<!-- portfolio item end-->
<!-- portfolio item start-->
<div class="portfolio-item" data-category="e-commerce">
<div class="portfolio-item-inner outer-shadow">
<div class="portfolio-item-img">
<img class="animate" src="img/portfolio/thumb/project-11.webp" alt="Shopavia E-commerce Store" title="Online E-commerce Store"
data-screenshots="img/portfolio/large/project-11/shopavia.webp">
<!-- view project btn -->
<span class="view-project">view project</span>
</div>
<p class="portfolio-item-title">Shopavia | Online E-commerce store</p>
<!-- portfolio item details start -->
<div class="portfolio-item-details">
<div class="row">
<div class="description">
<h3>Project Brief</h3>
<p>A Fully Responsive E-Commerce Store for High-Quality socks, school bags, hats, gloves, aprons, slippers, gardening products, pencil cases, pyjamas, wellington boots, and much much more.</p>
</div>
<div class="info">
<h3>Project Info</h3>
<ul>
<li>Date - <span>23rd Feb, 2021</span></li>
<li>Client - <span>Shoaib Ishtiaq</span></li>
<li>Tools - <span>WordPress & Woocommerce</span></li>
<li>Web - <span><a href="https://shopavia.co.uk/" target="_blank" rel="nofollow">shopavia.co.uk</a></span>
</li>
</ul>
</div>
</div>
</div>
<!-- portfolio item details end -->
</div>
</div>
<!-- portfolio item end-->
<!-- portfolio item start-->
<div class="portfolio-item" data-category="e-commerce">
<div class="portfolio-item-inner outer-shadow">
<div class="portfolio-item-img">
<img class="animate" src="img/portfolio/thumb/project-10.webp" alt="Sophie's Cards E-commerce Website" title="Personalised Cards E-commerce Website"
data-screenshots="img/portfolio/large/project-10/Sophies Cards.webp,
img/portfolio/large/project-10/Sophies Cards Shop Page.webp,
img/portfolio/large/project-10/Sophies Cards Product Page.webp">
<!-- view project btn -->
<span class="view-project">view project</span>
</div>
<p class="portfolio-item-title">Personalised Cards E-commerce Website </p>
<!-- portfolio item details start -->
<div class="portfolio-item-details">
<div class="row">
<div class="description">
<h3>Project Brief</h3>
<p>A Fully Responsive E-Commerce Website for unique gift ideas including famous Personalised Gifts & Cards perfect for every occasion including Christmas, Birthdays and many more.</p>
</div>
<div class="info">
<h3>Project Info</h3>
<ul>
<li>Date - <span>24th Jan, 2021</span></li>
<li>Client - <span>Afifah Naseem</span></li>
<li>Tools - <span>WordPress & Woocommerce</span></li>
<li>Web - <span><a href="https://sophiescards.co.uk/" target="_blank" rel="nofollow">sophiescards.co.uk</a></span>
</li>
</ul>
</div>
</div>
</div>
<!-- portfolio item details end -->
</div>
</div>
<!-- portfolio item end-->
<!-- portfolio item start-->
<div class="portfolio-item" data-category="wordpress">
<div class="portfolio-item-inner outer-shadow">
<div class="portfolio-item-img">
<img class="animate" src="img/portfolio/thumb/project-13.webp" alt="PositiveAdsManagement Landing Page" title="PositiveAdsManagement Landing Page"
data-screenshots="img/portfolio/large/project-13/positiveadsmanagement landing Page.webp">
<!-- view project btn -->
<span class="view-project">view project</span>
</div>
<p class="portfolio-item-title">PositiveAdsManagement Landing Page </p>
<!-- portfolio item details start -->
<div class="portfolio-item-details">
<div class="row">
<div class="description">
<h3>Project Brief</h3>
<p>PositiveAdsManagement provides customers with managed their Ads with the help of their Digital Marketing Experts with proven tracking records.</p>
</div>
<div class="info">
<h3>Project Info</h3>
<ul>
<li>Date - <span>6th May, 2021</span></li>
<li>Client - <span>Mohamedmohse</span></li>
<li>Tools - <span>HTML, CSS, WordPress & Elementor</span></li>
<li>Web - <span><a href="https://www.positiveadsmanagement.com/" target="_blank" rel="nofollow">positiveadsmanagement.com</a></span>
</li>
</ul>
</div>
</div>
</div>
<!-- portfolio item details end -->
</div>
</div>
<!-- portfolio item end-->
<!-- portfolio item start-->
<div class="portfolio-item" data-category="wordpress">
<div class="portfolio-item-inner outer-shadow">
<div class="portfolio-item-img">
<img class="animate" src="img/portfolio/thumb/project-14.webp" alt="JBSHUNTLLC (Trucking & Logistics)" title="JBSHUNTLLC (Trucking & Logistics)"
data-screenshots="img/portfolio/large/project-14/JBS Hunt Thumbnail.webp,
img/portfolio/large/project-14/jbshuntllc.webp">
<!-- view project btn -->
<span class="view-project">view project</span>
</div>
<p class="portfolio-item-title">JBSHUNT LLC (Trucking & Logistics) </p>
<!-- portfolio item details start -->
<div class="portfolio-item-details">
<div class="row">
<div class="description">
<h3>Project Brief</h3>
<p>I built this website for a Trucking and Logistics company namely "JBS Hunt LLC." which provided Road, Air, Train or OverSeas Freight Services with powerful Transport and Logistics Web Solution.</p>
</div>
<div class="info">
<h3>Project Info</h3>
<ul>
<li>Date - <span>1st May, 2020</span></li>
<li>Client - <span>Garry Singh</span></li>
<li>Tools - <span>CSS, WordPress & Elementor</span></li>
<li>Web - <span><a href="https://jbshuntllc.biz/" target="_blank" rel="nofollow">jbshuntllc.biz</a></span>
</li>
</ul>
</div>
</div>
</div>
<!-- portfolio item details end -->
</div>
</div>
<!-- portfolio item end-->
<!-- portfolio item start-->
<div class="portfolio-item" data-category="web-design-&-development">
<div class="portfolio-item-inner outer-shadow">
<div class="portfolio-item-img">
<img class="animate" src="img/portfolio/thumb/project-2.webp" alt="A Lifestyle Blog Portfolio" title="A Lifestyle Blog"
data-screenshots="img/portfolio/large/project-2/Mordermusings.co.webp">
<!-- view project btn -->
<span class="view-project">view project</span>
</div>
<p class="portfolio-item-title">Modern Musings | A Lifestyle Blog </p>
<!-- portfolio item details start -->
<div class="portfolio-item-details">
<div class="row">
<div class="description">
<h3>Project Brief</h3>
<p>This is a lifestyle blog dedicated to Celebrating the Every day, championing the ageing process and teaching women about how to create daily rituals. The major requirement of this project was to Add- a Slider on the TOP, Email Subscription PopUp, Newsletter at the bottom and an Archive page for the posts of the last 10years as per Date/Year </p>
</div>
<div class="info">
<h3>Project Info</h3>
<ul>
<li>Date - <span>Oct, 2020</span></li>
<li>Client - <span>Kimberly Morral</span></li>
<li>Tools - <span>HTML, CSS, JavaScript, PHP, JQuery, Bootstrap</span></li>
<li>Web - <span><a href="https://www.modernmusings.co/" target="_blank" rel="nofollow">www.modermusings.co</a></span>
</li>
</ul>
</div>
</div>
</div>
<!-- portfolio item details end -->
</div>
</div>
<!-- portfolio item end-->
<!-- portfolio item start-->
<div class="portfolio-item" data-category="wordpress">
<div class="portfolio-item-inner outer-shadow">
<div class="portfolio-item-img">
<img class="animate" src="img/portfolio/thumb/project-3.webp" alt="Car Rental Portfolio" title="Car Rental Website"
data-screenshots="img/portfolio/large/project-3/allindiatourandtaxi.webp,
img/portfolio/large/project-3/contact-us.webp">
<!-- view project btn -->
<span class="view-project">view project</span>
</div>
<p class="portfolio-item-title">Car Rental Website</p>
<!-- portfolio item details start -->
<div class="portfolio-item-details">
<div class="row">
<div class="description">
<h3>Project Brief</h3>
<p>This project was a Car Rental website that provides the easiest and best way to find car rental, taxi services and cab services across India.</p>
</div>
<div class="info">
<h3>Project Info</h3>
<ul>
<li>Date - <span>Oct, 2017</span></li>
<li>Client - <span>All India Tour & Taxi Agency</span></li>
<li>Tools - <span>WordPress, CSS, PHP</span></li>
<li>Web - <span><a href="https://www.allindiatourandtaxi.com/" target="_blank" rel="nofollow">www.allindiatourandtaxi.com</a></span></li>
</ul>
</div>
</div>
</div>
<!-- portfolio item details end -->
</div>
</div>
<!-- portfolio item end-->
<!-- portfolio item start-->
<div class="portfolio-item" data-category="web-design-&-development">
<div class="portfolio-item-inner outer-shadow">
<div class="portfolio-item-img">
<img class="animate" src="img/portfolio/thumb/project-1.webp" alt="WebDevChandan Personl Portfolio" title="Personal Portfolio"
data-screenshots="img/portfolio/large/project-1/personal_portfolio_dark.webp,
img/portfolio/large/project-1/personal_portfolio_light.webp">
<!-- view project btn -->
<span class="view-project">view project</span>
</div>
<p class="portfolio-item-title">Personal Portfolio from Scratch </p>
<!-- portfolio item details start -->
<div class="portfolio-item-details">
<div class="row">
<div class="description">
<h3>Project Brief</h3>
<p>This project is non-other than my own Personal Portfolio Project that has built from Scratch to show case my all works as WordPress & Front-End Web Developer. The most specific thing about this Portfolio is, it's made on Neumorphism Design from scratch which was the most trending Web Design in 2020. I made it to available in both Light Mode as well as in Dark Mode along with 5 different Color Switches.</p>
</div>
<div class="info">
<h3>Project Info</h3>
<ul>
<li>Date - <span>Oct, 2020</span></li>
<li>My Project <span>- Chandan Kumar</span></li>
<li>Tools - <span>HTML, CSS, JavaScript, PHP, JQuery, AJAX</span></li>
<li>Web - <span><a href="https://hirechandan.in/">hirechandan.in</a></span></li>
</ul>
</div>
</div>
</div>
<!-- portfolio item details end -->
</div>
</div>
<!-- portfolio item end-->
<!-- portfolio item start-->
<div class="portfolio-item" data-category="web-application">
<div class="portfolio-item-inner outer-shadow">
<div class="portfolio-item-img">
<img class="animate" src="img/portfolio/thumb/project-4.webp" alt="Web Calculator Portfolio" title="Neumorphism WebCalculator (2020)"
data-screenshots="img/portfolio/large/project-4/webcalculator_calculation.webp,
img/portfolio/large/project-4/webcalculator_result.webp">
<!-- view project btn -->
<span class="view-project">view project</span>
</div>
<p class="portfolio-item-title">Neumorphism WebCalculator (2020)</p>
<!-- portfolio item details start -->
<div class="portfolio-item-details">
<div class="row">
<div class="description">
<h3>Project Brief</h3>
<p>This is a basic Web Calculator Application. The most specific thing about this Calculator is, it's totally made on Neumorphism Design which was the most trending Design of Web Application in 2020.</p>
</div>
<div class="info">
<h3>Project Info</h3>
<ul>
<li>Date - <span>2020</span></li>
<li>My Project <span>- Chandan Kumar</span></li>
<li>Tools - <span>HTML5, CSS3, JavaScript</span></li>
<li>Web - <span><a href="https://webdevchandan.github.io/webcalculator/" target="_blank">webdevchandan.github.io</a></span></li>
</ul>
</div>
</div>
</div>
<!-- portfolio item details end -->
</div>
</div>
<!-- portfolio item end-->
<!-- portfolio item start-->
<div class="portfolio-item" data-category="web-application">
<div class="portfolio-item-inner outer-shadow">
<div class="portfolio-item-img">
<img class="animate" src="img/portfolio/thumb/project-5.webp" alt="Weather Detector Portfolio" title="Weather Detector"
data-screenshots="img/portfolio/large/project-5/WeatherDetector_Poland.webp,
img/portfolio/large/project-5/WeatherDetector_Bokaro.webp,
img/portfolio/large/project-5/WeatherDetector_London.webp"/>
<!-- view project btn -->
<span class="view-project">view project</span>
</div>
<p class="portfolio-item-title">Weather Detector</p>
<!-- portfolio item details start -->
<div class="portfolio-item-details">
<div class="row">
<div class="description">
<h3>Project Brief</h3>
<p>Weather Detector is a real-time weather detection web tool that can access current weather data for any location on Earth including over 200,000 cities by fetching a live weather detection API taken from OpenWeather.org. This API helps to collect and process data from different sources such as global and local weather models, satellites, radars and a vast network of weather stations.</p>
</div>
<div class="info">
<h3>Project Info</h3>
<ul>
<li>Date - <span>2020</span></li>
<li>My Project <span>- Chandan Kumar</span></li>
<li>Tools - <span>HTML, CSS, JavaScript, API(openweathermap.org)</span></li>
<li>Web - <span><a href="https://webdevchandan.github.io/WeatherDetector/" target="_blank">webdevchandan.github.io</a></span></li>
</ul>
</div>
</div>
</div>
<!-- portfolio item details end -->
</div>
</div>
<!-- portfolio item end-->
<!-- portfolio item start-->
<div class="portfolio-item" data-category="web-application">
<div class="portfolio-item-inner outer-shadow">
<div class="portfolio-item-img">
<img class="animate" src="img/portfolio/thumb/project-9.webp" alt="Glassmorphism WebCalculator Portfolio" title="Glassmorphism WebCalculator (2021)"
data-screenshots="img/portfolio/large/project-9/Glassmorphism WebCalculator.webp">
<!-- view project btn -->
<span class="view-project">view project</span>
</div>
<p class="portfolio-item-title">Glassmorphism WebCalculator (2021)</p>
<!-- portfolio item details start -->
<div class="portfolio-item-details">
<div class="row">
<div class="description">
<h3>Project Brief</h3>
<p>The Glassmorphism WebCalculator Application. The most specific thing about this Calculator is, it's made on Glassmorphism Design which is the most trending Web Design in 2021.</p>
</div>
<div class="info">
<h3>Project Info</h3>
<ul>
<li>Date - <span>Dec, 2020</span></li>
<li>My Project <span>- Chandan Kumar</span></li>
<li>Tools - <span> HTML5, CSS3, Vanilla JavaScript</span></li>
<li>Web - <span><a href="https://webdevchandan.github.io/webcalculator21/" target="_blank"> webdevchandan.github.io</a></span></li>
</ul>
</div>
</div>
</div>
<!-- portfolio item details end -->
</div>
</div>
<!-- portfolio item end-->
<!-- portfolio item start-->
<div class="portfolio-item" data-category="web-application">
<div class="portfolio-item-inner outer-shadow disable">
<div class="portfolio-item-img">
<img src="img/portfolio/thumb/project-7.webp" alt="Meme Generator portfolio" title="Meme Generator">
<div class="content">
<div class="mini-content">
<!-- view project btn -->