-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
758 lines (608 loc) · 39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ankit Portfolio-Page</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css" />
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="images/100.png" type="image/x-icon">
<style>
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
#animation-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.shape {
position: absolute;
opacity: 0.4;
animation: moveUp 5s linear infinite;
}
@keyframes moveUp {
0% {
transform: translateY(100vh) translateX(0);
opacity: 1;
}
100% {
transform: translateY(-100vh) translateX(calc(100vw * (random - 0.5)));
opacity: 0;
}
}
.circle {
border-radius: 50%;
}
.triangle {
width: 0;
height: 0;
border-bottom: 60px solid;
background-color: transparent;
}
.dot {
position: absolute;
border-radius: 50%;
opacity: 0.7;
animation: moveUp 5s linear infinite;
}
.polygon {
clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
#home1{
background-color: var(--bg-color);
color: white;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
height:auto;
padding: 30px;
}
.title{
text-align: center;
font-size: 50px;
}
.title span{
color:#0ef;
}
.container{
padding-top: 20px;
width: 545px;
}
.heading{
text-align: center;
text-decoration: underline;
text-underline-offset: 10px;
text-decoration-thickness: 5px;
margin-bottom: 30px;
}
.progress-line span{
color: white;
}
.bar{
padding: 20px;
font-size: 28px;
}
.bar1{
background: #f7fbfb;
display: block;
height: 20px;
border: 1px solid rgba(0, 0, 0, 0.3);
border-radius: 10px;
overflow: hidden;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.bar1:hover{
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.bar1 span{
height: 20px;
float: left;
}
.html{
width: 95%;
animation: html 3s;
background-color: #f24e1e;
}
.css{
width: 95%;
background-color: #0074d9;
animation: css 3s;
}
.js{
width: 85%;
animation: js 3s;
background-color: #ffd900;
}
.react{
width: 70%;
background-color: #a6e8e1;
animation: react 3s;
}
.kotlin { width: 60%; background-color: #7f52ff; animation: react 3s;}
.dart { width: 60%; background-color: #00b8d9; animation: react 3s; }
.figma { width: 80%; background-color: #f24e1e; animation: react 3s;}
.swift { width: 70%; background-color: #ff6f00; animation: react 3s;}
.python { width: 60%; background-color: #306998; animation: react 3s;}
.cpp { width: 60%; background-color: #00599c; }
.github { width: 95%; background-color: #000000; animation: react 3s; }
</style>
</head>
<body>
<div id="animation-container"></div>
<script>
const containers = document.getElementById('animation-container');
function createDot() {
const size = Math.random() * 10 + 5;
const color = `rgb(${Math.random() * 255}, ${Math.random() * 255}, ${Math.random() * 255})`;
const dot = document.createElement('div');
dot.classList.add('dot');
dot.style.backgroundColor = color;
dot.style.width = `${size}px`;
dot.style.height = `${size}px`;
dot.style.left = `${Math.random() * 100}vw`;
containers.appendChild(dot);
setTimeout(() => {
dot.remove();
}, 5000);
}
function animateDots() {
createDot();
setTimeout(animateDots, 30);
}
animateDots();
</script>
<header class="header">
<a href="#" class="logo"><img src="images/100.png" alt="" style="width:130px; height: 100px; border-radius: 100%;"></a>
<nav class="navbar">
<a href="#home" class="active">Home</a>
<a href="#about">About</a>
<a href="#home1">Skill</a>
<a href="#services">Knowledge</a>
<a href="#portfolio">Web-Project</a>
<a href="#ios">App-Project</a>
<a href="#contact">Contact</a>
</nav>
<div class="bx bx-moon" id="darkMode-icon"></div>
<div class="bx bx-menu" id="menu-icon"></div>
</header>
<section class="home" id="home">
<div class="home-content">
<h3 style="
background-image: url('images/aiback.jpg');
background-size: contain; -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 8rem !important;">Hello, I am </h3>
<h1 style="text-align: center; background-image: url('https://ideogram.ai/assets/progressive-image/balanced/response/8fuHhxdSSCmIKJm_9j0iJw'); background-size: contain; -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 6rem;">Ankit Kumar</h1>
<p>
I'm a web developer skilled in HTML, CSS, JavaScript, React, Flutter, and mobile development (Android, iOS). I create impactful, innovative solutions for a better digital experience. </p>
<p>Currently I'm a student of ITER College, where I am pursuing my B-tech Degree</p>
<div class="social-media">
<a href="https://www.facebook.com/profile.php?id=100055383093406"><i class='bx bxl-facebook'></i></a>
<a href="https://twitter.com/AnkitKumar63433"><i class='bx bxl-twitter'></i></a>
<a href="https://www.instagram.com/tech_ankit07?igsh=MXgxdmRzbWt3NDJybg=="><i class='bx bxl-instagram-alt'></i></a>
<a href="https://www.linkedin.com/in/ankit-kumar-01a52827b/"><i class='bx bxl-linkedin'></i></a>
</div>
<a href="images/Resume.pdf" class="btn">Download My Resume</a>
</div>
<div class="earth-container">
<img src="images/11.png" alt="Earth" class="earth" id="earth" style="border-radius: 50%;">
</div>
</section>
<section class="about" id="about">
<div class="about-img">
<img src="images/900.jpeg" alt="">
</div>
<div class="about-content">
<h2 class="heading">About <span>Me</span></h2>
<h3>
Hello, I'm Ankit Kumar, a second-year B.Tech student at ITER, Siksha 'O' Anusandhan University, currently maintaining a CGPA of 8.5.
</h3>
<p>
I completed my schooling at Gulmohar High School, achieving 78% in the ISC Board examinations. I have a strong passion for technology and development, which has led me to build a diverse range of web and mobile applications.
<br><br>
In web development, I am proficient in HTML, CSS, JavaScript, ReactJS, jQuery, and Bootstrap, allowing me to create responsive, user-friendly websites. I have worked on multiple projects, showcasing my ability to design sleek interfaces and implement complex functionalities.
<br> <br>
In addition to web development, I have hands-on experience in app development. I've built cross-platform apps using Flutter (Dart and Firebase), developed native iOS apps with Swift, and Android apps using Kotlin. My app development projects range from e-commerce platforms to utility and game apps.
<br><br>
I also have a solid foundation in Data Structures and Algorithms (DSA) using Java, which helps me write efficient and optimized code. I'm constantly looking to enhance my skills and stay updated with the latest trends in technology. Whether it’s web development or mobile app development, I strive to create impactful digital experiences.
</p>
</div>
</section>
<br><br><br>
<section id="home1">
<h2 class="title">
My <span>Skills</span>
</h2>
<div class="container" id="skills">
<div class="technical-bars">
<div class="bar"><svg stroke="currentColor" fill="currentColor" stroke-width="0" version="1.1"
viewBox="0 0 32 32" height="2em" width="2em" xmlns="http://www.w3.org/2000/svg">
<path
d="M4.665 3.411l2.063 23.176 9.258 2.574 9.284-2.578 2.065-23.172h-22.671zM8.951 8.911l-0.068-0.763h7.107v2.842h-4.005l0.259 2.911h3.746v2.842h-6.341l-0.698-7.833zM22.518 14.665l-0.667 7.483-0.043 0.48-5.822 1.616-5.814-1.616-0.398-4.463h2.849l0.202 2.267 3.163 0.854 3.165-0.856 0.329-3.686h-3.485v-2.842h6.587l-0.069 0.763zM23.032 8.911l-0.129 1.441-0.057 0.639h-6.846v-2.842h7.1l-0.068 0.762z">
</path>
</svg>
<div class="progress-line">
<span>HTML</span>
<span class="percentage">95%</span>
</div>
<span class="bar1"><span class="html"></span></span>
</div>
<div class="bar"><svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img"
viewBox="0 0 24 24" height="2em" width="2em" xmlns="http://www.w3.org/2000/svg">
<title></title>
<path
d="M1.5 0h21l-1.91 21.563L11.977 24l-8.565-2.438L1.5 0zm17.09 4.413L5.41 4.41l.213 2.622 10.125.002-.255 2.716h-6.64l.24 2.573h6.182l-.366 3.523-2.91.804-2.956-.81-.188-2.11h-2.61l.29 3.855L12 19.288l5.373-1.53L18.59 4.414z">
</path>
</svg>
<div class="progress-line">
<span>CSS</span>
<span class="percentage">95%</span>
</div>
<span class="bar1"><span class="css"></span></span>
</div>
<div class="bar"><svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img"
viewBox="0 0 24 24" height="2em" width="2em" xmlns="http://www.w3.org/2000/svg">
<title></title>
<path
d="M0 0h24v24H0V0zm22.034 18.276c-.175-1.095-.888-2.015-3.003-2.873-.736-.345-1.554-.585-1.797-1.14-.091-.33-.105-.51-.046-.705.15-.646.915-.84 1.515-.66.39.12.75.42.976.9 1.034-.676 1.034-.676 1.755-1.125-.27-.42-.404-.601-.586-.78-.63-.705-1.469-1.065-2.834-1.034l-.705.089c-.676.165-1.32.525-1.71 1.005-1.14 1.291-.811 3.541.569 4.471 1.365 1.02 3.361 1.244 3.616 2.205.24 1.17-.87 1.545-1.966 1.41-.811-.18-1.26-.586-1.755-1.336l-1.83 1.051c.21.48.45.689.81 1.109 1.74 1.756 6.09 1.666 6.871-1.004.029-.09.24-.705.074-1.65l.046.067zm-8.983-7.245h-2.248c0 1.938-.009 3.864-.009 5.805 0 1.232.063 2.363-.138 2.711-.33.689-1.18.601-1.566.48-.396-.196-.597-.466-.83-.855-.063-.105-.11-.196-.127-.196l-1.825 1.125c.305.63.75 1.172 1.324 1.517.855.51 2.004.675 3.207.405.783-.226 1.458-.691 1.811-1.411.51-.93.402-2.07.397-3.346.012-2.054 0-4.109 0-6.179l.004-.056z">
</path>
</svg>
<div class="progress-line">
<span>JAVASCRIPT</span>
<span class="percentage">85%</span>
</div>
<span class="bar1"><span class="js"></span></span>
</div>
<div class="bar"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 24 24"
height="2em" width="2em" xmlns="http://www.w3.org/2000/svg">
<g fill-rule="evenodd">
<circle cx="11.996" cy="11.653" r="2.142"></circle>
<path fill-rule="nonzero"
d="M11.9957722,7.80914159 C14.763782,7.80914159 17.3932297,8.19939152 19.3922491,8.88758063 C21.6123871,9.6518808 22.9666335,10.7818833 22.9666335,11.652558 C22.9666335,12.5799965 21.5040812,13.7840336 19.1293161,14.5708627 C17.2387355,15.1972602 14.7092455,15.538679 11.9957722,15.538679 C9.14520032,15.538679 6.58717845,15.203913 4.71853163,14.565185 C3.54866968,14.1653247 2.58256656,13.6456709 1.92037292,13.0785821 C1.32532838,12.5689984 1.02491103,12.0630628 1.02491103,11.652558 C1.02491103,10.7789546 2.32734001,9.66464781 4.49959681,8.90729393 C6.49945246,8.21010004 9.19325759,7.80914159 11.9957722,7.80914159 L11.9957722,7.80914159 L11.9957722,7.80914159 L11.9957722,7.80914159 L11.9957722,7.80914159 M11.9957722,6.78423056 C9.08437994,6.78423056 6.2777499,7.20198239 4.1621939,7.93951199 C1.62214541,8.82509585 0,10.2129394 0,11.652558 C0,13.1394248 1.74140227,14.6307252 4.38703934,15.5350074 C6.37567236,16.2147483 9.04125041,16.56359 11.9957722,16.56359 C14.8115523,16.56359 17.4474553,16.2078081 19.4516644,15.5437626 C22.2020573,14.632477 23.9915445,13.1592927 23.9915445,11.652558 C23.9915445,10.2077356 22.3170688,8.81052922 19.7258695,7.91848823 C17.6128656,7.19105846 14.871718,6.78423056 11.9957722,6.78423056 L11.9957722,6.78423056 L11.9957722,6.78423056 L11.9957722,6.78423056 L11.9957722,6.78423056 M8.64782576,9.74318674 C10.0306294,7.34537922 11.6822995,5.26251432 13.2771145,3.87459857 C15.0483324,2.33318986 16.7037652,1.72455661 17.4580053,2.15950561 C18.2614273,2.62281187 18.5738182,4.49132292 18.0690455,6.94154209 C17.6671734,8.89223963 16.6992742,11.2540339 15.3437168,13.6046372 C13.9196524,16.0740185 12.3517605,18.1226845 10.8648902,19.4223695 C9.93407029,20.2360369 9.00127666,20.8133347 8.17921011,21.1036655 C7.44050831,21.3645543 6.85214323,21.3720417 6.49651234,21.1669615 C5.73974814,20.7305244 5.42512511,19.045619 5.85426462,16.7855049 C6.24932455,14.7048419 7.24772098,12.1710157 8.64782671,9.74318508 L8.64782576,9.74318674 L8.64782576,9.74318674 L8.64782576,9.74318674 L8.64782576,9.74318674 M7.759974,9.23116928 C6.30547459,11.7533204 5.26525979,14.3932772 4.84734364,16.5943171 C4.34554839,19.2370813 4.73740525,21.3355983 5.98449631,22.0548141 C7.2725788,22.7976074 9.43439148,22.0341158 11.5394159,20.1940284 C13.121755,18.8108935 14.7555742,16.6760844 16.2315707,14.1166508 C17.6382359,11.6774242 18.6468519,9.21627599 19.0728759,7.1483441 C19.6574939,4.31054745 19.2752706,2.02434609 17.9700071,1.27164481 C16.7184046,0.549880923 14.6715337,1.30242953 12.6042836,3.1014613 C10.9185312,4.56851694 9.19669947,6.73986025 7.75997496,9.23116762 L7.759974,9.23116928 L7.759974,9.23116928 L7.759974,9.23116928 L7.759974,9.23116928 M8.65102932,13.6102163 C7.26423584,11.2147037 6.28457878,8.74353725 5.87862056,6.66870559 C5.42774955,4.36439699 5.72720706,2.6262057 6.48072727,2.18999639 C7.28337846,1.72531755 9.05821175,2.38783711 10.9288592,4.04883669 C12.4181905,5.37119379 13.9809502,7.38921897 15.3404734,9.7376059 C16.7686644,12.2045881 17.7605533,14.5861039 18.1440168,16.5233658 C18.384086,17.7361541 18.4183857,18.8326057 18.2593637,19.6898062 C18.1164684,20.4600771 17.8291151,20.9735449 17.473831,21.1792215 C16.7177635,21.6169189 15.1008664,21.0480332 13.3571194,19.5474962 C11.7518336,18.1661133 10.0552117,16.0356933 8.65102599,13.6102105 L8.65102932,13.6102163 L8.65102932,13.6102163 L8.65102932,13.6102163 L8.65102932,13.6102163 M7.76403451,14.1237168 C9.2227685,16.6434222 10.9904487,18.863069 12.6886037,20.3243677 C14.727583,22.0789594 16.7414064,22.7874988 17.9873239,22.0662207 C19.2741476,21.3212689 19.6923336,19.0670565 19.1494202,16.3243517 C18.741335,14.2627011 17.7077401,11.7810493 16.2274688,9.22410641 C14.8166895,6.78718171 13.1881856,4.68425955 11.6093526,3.2824351 C9.4428116,1.3587035 7.27122101,0.548080175 5.96723274,1.30299809 C4.71682218,2.02685487 4.34655386,4.17606524 4.87278214,6.8655093 C5.30188762,9.05864543 6.32316039,11.6347867 7.76403118,14.1237111 L7.76403451,14.1237168 L7.76403451,14.1237168 L7.76403451,14.1237168 L7.76403451,14.1237168">
</path>
</g>
</svg>
<div class="progress-line">
<span>REACT.JS</span>
<span class="percentage">70%</span>
</div>
<span class="bar1"><span class="react"></span></span>
</div>
<!-- Kotlin -->
<div class="bar">
<svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img"
viewBox="0 0 24 24" height="2em" width="2em" xmlns="http://www.w3.org/2000/svg">
<path d="M12 0L1.755 21.43h20.49L12 0zm.057 4.738l7.357 12.582H4.562L12.057 4.738zm-.003 15.835L4.561 11.92h14.895L12.054 20.573z"/>
</svg>
<div class="progress-line">
<span>Kotlin</span>
<span class="percentage">60%</span>
</div>
<span class="bar1"><span class="kotlin"></span></span>
</div>
<!-- Dart -->
<div class="bar">
<svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img"
viewBox="0 0 24 24" height="2em" width="2em" xmlns="http://www.w3.org/2000/svg">
<path d="M2 2l20 20L2 22 2 2zm10 4.7L15.2 12 12 14.6 7.8 10.6 12 6.7zm0 8.6l3.2-1.7L12 14.6l-4.2-2.6 3.2 1.7z"/>
</svg>
<div class="progress-line">
<span>Dart</span>
<span class="percentage">60%</span>
</div>
<span class="bar1"><span class="dart"></span></span>
</div>
<!-- Figma -->
<div class="bar">
<svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img"
viewBox="0 0 24 24" height="2em" width="2em" xmlns="http://www.w3.org/2000/svg">
<path d="M12 0l-5.4 9 5.4 9 5.4-9L12 0zM6 10l6 10 6-10-6-10L6 10zm0 4l6 10 6-10-6-10L6 14z"/>
</svg>
<div class="progress-line">
<span>Figma</span>
<span class="percentage">80%</span>
</div>
<span class="bar1"><span class="figma"></span></span>
</div>
<!-- Swift -->
<div class="bar">
<svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img"
viewBox="0 0 24 24" height="2em" width="2em" xmlns="http://www.w3.org/2000/svg">
<path d="M12 0L1.5 22l20.91-10.5L12 0zM12 8l6 10-6 10L6 18l6-10z"/>
</svg>
<div class="progress-line">
<span>Swift</span>
<span class="percentage">70%</span>
</div>
<span class="bar1"><span class="swift"></span></span>
</div>
<!-- Python -->
<div class="bar">
<svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img"
viewBox="0 0 24 24" height="2em" width="2em" xmlns="http://www.w3.org/2000/svg">
<path d="M4.4 9.6l-1.6-1.6v-2.4l1.6-1.6h2.4l1.6 1.6v2.4l-1.6 1.6H4.4zm4.8 0h2.4v-2.4h-2.4v2.4zm4.8 0l1.6 1.6v2.4l-1.6 1.6H12v-2.4h2.4l1.6-1.6V9.6zm0-4.8L12 2.4 10.4 4.8l1.6 1.6h2.4L16 4.8zm-4.8 0L8 2.4 6.4 4.8l1.6 1.6h2.4l1.6-1.6zm4.8 12l-1.6 1.6v2.4l1.6 1.6h2.4l1.6-1.6v-2.4l-1.6-1.6H16zm-4.8 0L8 18.4 6.4 20l1.6 1.6h2.4l1.6-1.6zm-4.8 0L2.4 18.4 4 16l1.6-1.6h2.4l1.6 1.6-1.6 1.6H4.4zm8 0h2.4v-2.4H12v2.4z"/>
</svg>
<div class="progress-line">
<span>Python</span>
<span class="percentage">60%</span>
</div>
<span class="bar1"><span class="python"></span></span>
</div>
<!-- C++ -->
<div class="bar">
<svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img"
viewBox="0 0 24 24" height="2em" width="2em" xmlns="http://www.w3.org/2000/svg">
<path d="M4 4l8 16 8-16H4zm8 14l-5.5-11h11L12 18z"/>
</svg>
<div class="progress-line">
<span>C++</span>
<span class="percentage">60%</span>
</div>
<span class="bar1"><span class="cpp"></span></span>
</div>
<!-- GitHub -->
<div class="bar">
<svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img"
viewBox="0 0 24 24" height="2em" width="2em" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.48 2 2 6.48 2 12c0 4.4 2.85 8.13 6.84 9.43.5.09.68-.22.68-.48v-1.74c-2.77.6-3.37-1.35-3.37-1.35-.45-1.12-1.1-1.42-1.1-1.42-.9-.62.07-.61.07-.61 1 .07 1.52 1.03 1.52 1.03.88 1.52 2.31 1.08 2.87.82.09-.64.35-1.08.63-1.32-2.22-.26-4.56-1.11-4.56-4.95 0-1.1.39-2 1.03-2.7-.1-.26-.45-1.26.1-2.62 0 0 .85-.27 2.79 1.03.81-.22 1.68-.32 2.55-.33.87.01 1.74.11 2.55.33 1.94-1.3 2.79-1.03 2.79-1.03.55 1.36.2 2.36.1 2.62.64.7 1.03 1.6 1.03 2.7 0 3.84-2.35 4.69-4.58 4.95.36.31.68.92.68 1.85v2.75c0 .27.18.58.68.48C21.15 20.13 24 16.4 24 12c0-5.52-4.48-10-10-10z"/>
</svg>
<div class="progress-line">
<span>GitHub</span>
<span class="percentage">95%</span>
</div>
<span class="bar1"><span class="github"></span></span>
</div>
</div>
</div>
</section>
<section class="services" id="services">
<h2 class="heading">My <span>Knowledge</span></h2>
<div class="services-container">
<div class="services-box">
<i class='bx bx-code-alt'></i>
<h3>Web Development</h3>
<p>I am proficient in both front-end and back-end web development. My expertise in front-end technologies includes HTML, CSS, and JavaScript, allowing me to build well-structured and dynamic websites. I also excel in ReactJS, which enables me to create high-performance, interactive user interfaces, using components and state management. On the back-end, I am skilled in Node.js, building scalable web applications, and working with databases like MongoDB for data storage. With a deep understanding of RESTful API development and Java Spring Boot, I ensure efficient server-side integration.</p>
<a href="https://en.wikipedia.org/wiki/Web_development#:~:text=Web%20development%20is%20the%20work,businesses%2C%20and%20social%20network%20services." class="btn">Read More</a>
</div>
<div class="services-box">
<i class='bx bx-mobile'></i>
<h3>App Development</h3>
<br>
<p>
With a solid foundation in Flutter, I have developed cross-platform mobile applications for both Android and iOS. My experience includes crafting apps with Dart and Firebase, ensuring smooth performance across devices. I also possess intermediate knowledge of Android development with Kotlin and iOS app development with Swift. I focus on creating intuitive user interfaces and optimizing app performance, adhering to best practices and leveraging native capabilities to deliver seamless and engaging user experiences.
</p>
<a href="https://en.wikipedia.org/wiki/Machine_learning" class="btn">Read More</a>
</div>
</div>
</section>
<section class="portfolio" id="portfolio">
<h2 class="heading">Latest <span>Project</span></h2>
<div class="portfolio-container">
<div class="portfolio-box" style="height: 250px; width: 350px;">
<img src="images/chilli.png" alt="">
<div class="portfolio-layer">
<h4>Chilli Chow Junction</h4>
<p class="myy">A Bussiness Website</p>
<a href="https://chilli-chow-junction.vercel.app/"><i class='bx bx-link-external'></i></a>
</div>
</div>
<div class="portfolio-box" style="height: 250px; width: 350px;">
<img src="images/code.png" alt="">
<div class="portfolio-layer">
<h4>CODE WARS</h4>
<p >A website Which show my Hackthon and Ideathon Projects</p>
<a href="https://code-wars-blush.vercel.app/"><i class='bx bx-link-external'></i></a>
</div>
</div>
<div class="portfolio-box" style="height: 250px; width: 350px;">
<img src="images/CodeCentric.jpeg" alt="">
<div class="portfolio-layer">
<h4>CodeCentric Creations </h4>
<p >A website which 100+ web projects From beginner to exterme level .</p>
<a href="https://ankit071105.github.io/Code-Centric-Creation/"><i class='bx bx-link-external'></i></a>
</div>
</div>
<div class="portfolio-box" style="height: 250px; width: 350px;">
<img src="images/101.png" alt="">
<div class="portfolio-layer">
<h4>ITER WALLAH</h4>
<p >A website for the Notes and video lectures</p>
<a href="https://iter-wallah.netlify.app/"><i class='bx bx-link-external'></i></a>
</div>
</div>
<div class="portfolio-box" style="height: 250px; width: 350px;">
<img src="images/thumb.png" alt="">
<div class="portfolio-layer">
<h4>Thumbnail Visionary</h4>
<p class="myy">GenAI Model Trained Thumbnail</p>
<a href="https://gen-ai-thumbnail-czt6.vercel.app/"><i class='bx bx-link-external'></i></a>
</div>
</div>
<div class="portfolio-box" style="height: 250px; width: 350px;">
<img src="images/git.jpeg" alt="">
<div class="portfolio-layer">
<h4>Git Lens </h4>
<p>Welcome to Git Lens, a comprehensive tool to analyze and visualize your GitHub repositories. Gain insights into your coding habits, contributions, and more with easy-to-understand charts and reports.</p>
<a href="https://github-profile-analysis-by-chart.vercel.app/"><i class='bx bx-link-external'></i></a>
</div>
</div>
<div class="portfolio-box" style="height: 250px; width: 350px;">
<img src="images/1.png" alt="">
<div class="portfolio-layer">
<h4>Amazon Clone</h4>
<p class="myy">A amazon front-end Clone Website</p>
<a href="https://ankit071105.github.io/Amazon-clone/"><i class='bx bx-link-external'></i></a>
</div>
</div>
<div class="portfolio-box" style="height: 250px; width: 350px;">
<img src="images//Currency.jpeg" alt="">
<div class="portfolio-layer">
<h4>Currency Convertor</h4>
<p>A Webpage which converts all the country currency to other country currency</p>
<a href="https://currency-convertor-nine-iota.vercel.app/"><i class='bx bx-link-external'></i></a>
</div>
</div>
<div class="portfolio-box" style="height: 250px; width: 350px;">
<img src="images/0912.png" alt="">
<div class="portfolio-layer">
<h4>Fun zone</h4>
<p class="myy">A website Full of Games</p>
<a href="https://fun-zone-two.vercel.app/"><i class='bx bx-link-external'></i></a>
</div>
</div>
<div class="portfolio-box" style="height: 250px; width: 350px;">
<img src="images/webscribe.png" alt="">
<div class="portfolio-layer">
<h4>webscribe</h4>
<p>Write, Edit, Create – All in Your Browser!</p>
<a href="https://web-scribe.vercel.app/"><i class='bx bx-link-external'></i></a>
</div>
</div>
<div class="portfolio-box" style="height: 250px; width: 350px;">
<img src="images/4.png" alt="">
<div class="portfolio-layer">
<h4>sign-In & Sign-Up</h4>
<p class="myy">A sign-In & Sign-Up page for the user to enter any website with dark mode Facility</p>
<a href="https://ankit071105.github.io/login"><i class='bx bx-link-external'></i></a>
</div>
</div>
<div class="portfolio-box" style="height: 250px; width: 350px;">
<img src="images/9.png" alt="">
<div class="portfolio-layer">
<h4>Chath Puja music </h4>
<p class="myy">A music website made for Chath Puja to make devotional atmosphere</p>
<a href="https://ankit071105.github.io/chath/"><i class='bx bx-link-external'></i></a>
</div>
</div>
<div class="portfolio-box" style="height: 250px; width: 350px;">
<img src="images//104.png" alt="">
<div class="portfolio-layer">
<h4>Fitness-Founder</h4>
<p class="myy">A Social Media Platform which promotes Body Builders</p>
<a href="https://ankit071105.github.io/Fitness-Founder/"><i class='bx bx-link-external'></i></a>
</div>
</div>
<div class="portfolio-box" style="height: 250px; width: 350px;">
<img src="images/digital.jpeg" alt="">
<div class="portfolio-layer">
<h4>Digital Marketing Agency</h4>
<p>A clone webpage of Digital Marketing Agency</p>
<a href="https://digital-marketing-agency-ruddy.vercel.app/"><i class='bx bx-link-external'></i></a>
</div>
</div>
</div>
</section>
<div class="testimonial-container" id="ios">
<h2 class="heading">App <span>Project</span></h2>
<div class="testimonial-wrapper">
<div class="testimonial-box mySwiper">
<div class="testimonial-content swiper-wrapper">
<div class="testimonial-slide swiper-slide">
<img src="images/21.png" alt="">
<h3>Beardo (ios)</h3>
<p>I have developed the Beardo app using Swift, offering a comprehensive range of grooming products tailored specifically for men. With sleek design and intuitive navigation, the app provides an effortless shopping experience for men seeking high-quality hair and body care essentials. From beard oils and balms to shampoos and body washes, Beardo offers a curated selection of products designed to meet the unique grooming needs of modern men. Users can explore detailed product descriptions, reviews, and recommendations to make informed choices, while seamless checkout and secure payment options ensure a convenient shopping journey. With Beardo, men can elevate their grooming routine, embracing confidence and style with every purchase.</p>
<br>
<br>
<button>
<a href="https://github.com/ankit071105/Beardo?tab=readme-ov-file"> Source code</a>
</button>
</div>
<div class="testimonial-slide swiper-slide">
<img src="images/silent.png" alt="">
<h3>Silent Speak (Flutter)</h3>
<p>I've developed an app called <B>Silent-Speak</B> that translates all 28 languages into Morse code. To make learning more engaging, I've included educational games for kids. These games feature learning Morse code for numbers through Tic-Tac-Toe, playing Rock-Paper-Scissors, and flipping cards to learn the alphabet in Morse code.</p>
<br><br>
<button>
<a href="https://github.com/ankit071105/Beardo?tab=readme-ov-file"> Source code</a>
</button>
</div>
<div class="testimonial-slide swiper-slide">
<img src="images/menu.png" alt="">
<h3 style="text-align: center;">Menufy: Your Ultimate Online Food Ordering and Delivery App (Android)</h3>
<p>
Discover the easiest way to satisfy your cravings with Menufy, the premier Android app for seamless online food ordering and delivery. Menufy connects you with a wide variety of local restaurants and food joints, offering a diverse range of cuisines right at your fingertips. Whether you’re in the mood for a quick snack, a hearty meal, or a gourmet dinner, Menufy has got you covered.
<br><br>
Key Features:
<br><br>
Extensive Restaurant Listings: Browse through a comprehensive list of local eateries, complete with detailed menus and customer reviews.
Personalized Recommendations: Receive tailored food suggestions based on your preferences and past orders.
Customer Support: Access 24/7 customer support for any queries or assistance.
Experience the joy of delicious food delivered straight to your door with Menufy. Download now and embark on a culinary adventure from the comfort of your home!
</p>
<br>
<br>
<button>
<a href="https://github.com/ankit071105/Menufys"> Source code</a>
</button>
</div>
<div class="testimonial-slide swiper-slide">
<img src="images/22.png" alt="">
<h3>Fructus (ios)</h3>
<p>I've developed an iOS app called "Fructus" using Swift, aimed at providing users with valuable insights into various fruits and their benefits. Fructus serves as a comprehensive guide, offering detailed descriptions of different fruits along with their nutritional qualities, health benefits, and culinary uses. Users can explore a vast database of fruits, learning about their vitamins, minerals, antioxidants, and other nutrients that contribute to overall well-being. Whether it's the antioxidant-rich berries, vitamin-packed citrus fruits, or fiber-rich apples, Fructus helps users understand the nutritional value of each fruit and how it can support a healthy lifestyle. With Fructus, users can make informed choices about incorporating a variety of fruits into their diet, promoting better health and vitality. Whether users are looking to boost their immune system, improve digestion, or simply enjoy delicious and nutritious snacks, Fructus provides the knowledge and inspiration needed to make fruits an essential part of their daily routine.
</p>
<br>
<br>
<button>
<a href="https://github.com/ankit071105/Fructus?tab=readme-ov-file"> Source code</a>
</button>
</div>
<div class="testimonial-slide swiper-slide">
<img src="images/23.png" alt="">
<h3>DogCompanion (ios)</h3>
<p>I have developed an iOS app using Swift called "DogCompanion," which serves as a comprehensive guide to various dog breeds. With DogCompanion, users can explore detailed descriptions of different breeds, including their unique qualities, characteristics, and temperament. The app provides valuable insights into each breed's behavior, exercise needs, grooming requirements, and potential health concerns. Additionally, DogCompanion educates users about the responsibilities of dog ownership, including the importance of training, socialization, and providing proper care. By offering a wealth of information about the joys and challenges of owning a dog, DogCompanion empowers users to make informed decisions about selecting the right breed for their lifestyle and preferences. Whether users are considering adopting a new furry friend or simply seeking to learn more about their favorite breeds, DogCompanion is a valuable resource for dog enthusiasts everywhere.
</p>
<br>
<br>
<button>
<a href="https://github.com/ankit071105/Africa?tab=readme-ov-file"> Source code</a>
</button>
</div>
<div class="testimonial-slide swiper-slide">
<img src="images/vimal.png" alt="">
<h3>Vimal Store (Flutter)</h3>
<p>The <B>Vimal Store</B> Flutter project is a grocery app designed to provide users with a convenient platform to purchase various household products at affordable prices. The app offers a wide range of items for users to browse and buy. It includes features such as product categorization, a user-friendly interface, secure payment options, and seamless navigation. With Vimal Store, users can easily shop for groceries and other essentials from the comfort of their homes, ensuring a hassle-free shopping experience</p>
<br>
<br>
<button>
<a href="https://github.com/ankit071105/VIMAL"> Source code</a>
</button>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-pagination"></div>
</div>
</div>
</div>
<br>
<br>
<footer class="footer" id="contact" style="background: rgb(3, 20, 50);">
<div class="footer-text">
<p>Copyright © 2024 | All Rights Reserved </p>
<p>
<B>Designed by ankit</B>
</p>
</div>
<div class="social-media" style="display: flex !important; justify-content: space-between !important;">
<a href="https://www.facebook.com/profile.php?id=100055383093406" style="color: aliceblue; background: rgb(26, 43, 191); font-size: 40px;border-radius: 50%; height: 60px;padding-left: 10px; padding-right: 10px;margin-right: 10px;"><i class='bx bxl-facebook'></i></a>
<a href="https://twitter.com/AnkitKumar63433" style="color: rgb(241, 241, 241); background:rgb(51, 107, 197); font-size: 40px;border-radius: 50%; height: 60px;padding-left: 10px; padding-right: 10px;margin-right: 10px;"><i class='bx bxl-twitter'></i></a>
<a href="https://www.instagram.com/tech_ankit07?igsh=MXgxdmRzbWt3NDJybg==" style="color: aliceblue; background: rgb(231, 138, 16); font-size: 40px;border-radius: 50%; height: 60px;padding-left: 10px; padding-right: 10px;margin-right: 10px;"><i class='bx bxl-instagram-alt'></i></a>
<a href="https://www.linkedin.com/in/ankit-kumar-01a52827b/" style="color: aliceblue; background: rgb(29, 83, 190); font-size: 40px;border-radius: 50%; height: 60px;padding-left: 10px; padding-right: 10px;margin-right: 10px;"><i class='bx bxl-linkedin'></i></a>
</div>
<div class="footer-iconTop">
<a href="#home"><i class='bx bx-up-arrow-alt'></i></a>
</div>
</footer>
<script src="https://unpkg.com/scrollreveal"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>