-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1029 lines (932 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
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>
<head>
<meta charset="utf-8">
<meta content="width=device-width,intial-scale=1.0,user-scalable=no" name="viewport" />
<title>Kushagra Jain</title>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<link rel="stylesheet" type="text/css" href="media/css/style.css">
<link rel="stylesheet" type="text/css" href="media/css/responsive.css">
<link rel = "icon" href ="media/img/title-image-4.png" type = "image/x-icon">
</head>
<body>
<!---------------------- Header Open --------------------->
<div class="topnav">
<div class="sml-head">
<a href="#home-sml" class="name sml-name">
<span class="first-name">Kushagra</span>
<span class="last-name">Jain</span>
</a>
</div>
<div class="hamburger">
<div id="myLinks" class="animate__animated animate__slideInDown animate__slideOutUp">
<ul>
<li><a href="#home" class="home head-option selected">Home</a></li>
<li><a href="#about" class="about head-option">About</a></li>
<li><a href="#skills" class="skills head-option">Skills</a></li>
<li><a href="#qualifications" class="qualifications head-option">Qualifications</a></li>
<li><a href="#projects" class="projects head-option">Projects</a></li>
<li><a href="./certificate.html" class="certificates head-option">Certificates</a></li>
<li><a href="#contact" class="contact head-option">Contact Me</a></li>
</ul>
</div>
<div class="icon-head">
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"><span class="iconify" data-icon="ci:hamburger"></span></i>
</a>
<span class="material-icons-outlined dark_mode">dark_mode</span>
<span class="material-icons-outlined light_mode hide">light_mode</span>
</div>
</div>
</div>
<header class="head" id="header">
<div class="left-head">
<a href="#home" class="name">
<span class="first-name">Kushagra</span>
<span class="last-name">Jain</span>
</a>
</div>
<div class="right-head">
<ul class="menu">
<li><a href="#home" class="home head-option selected">Home</a></li>
<li><a href="#about" class="about head-option">About</a></li>
<li><a href="#skills" class="skills head-option">Skills</a></li>
<li><a href="#qualifications" class="qualifications head-option">Qualifications</a></li>
<li><a href="#projects" class="projects head-option">Projects</a></li>
<li><a href="./certificate.html" class="certificates head-option">Certificates</a></li>
<li><a href="#contact" class="contact head-option">Contact Me</a></li>
<span class="material-icons-outlined dark_mode">dark_mode</span>
<span class="material-icons-outlined light_mode hide">light_mode</span>
</ul>
</div>
</header>
<!---------------------- Header Close --------------------->
<!---------------------- HOME ----------------------------->
<div id="home" class="section">
<div class="home-pic">
<svg class="homeBlob" viewBox="0 0 500 500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" id="blobSvg">
<path id="blob" d="M433.5,300Q424,350,387.5,387.5Q351,425,300.5,445.5Q250,466,198,448.5Q146,431,105,394Q64,357,41.5,303.5Q19,250,35.5,193Q52,136,104.5,112.5Q157,89,203.5,80.5Q250,72,308,61Q366,50,395.5,99.5Q425,149,434,199.5Q443,250,433.5,300Z" fill="#2643F5"></path>
</svg>
</div>
<div class="home-content">
<div class="written">
<h1>Hi, I'm Kushagra Jain</h1>
<div class="container">
<p>I am <span class="typed-text"></span><span class="cursor"> </span></p>
</div>
<span class="homeIntro">
A self-learner who want to learn more about new things. Enthusaistic about Web Development and always curious to solve new problems.
</span>
</div>
<a class="button button-flex" href="#contact">
Contact Me
<span class="material-icons-outlined">send</span>
</a>
</div>
<div class="social-home">
<a href="https://www.instagram.com/kushagra_j_58/" class="home_social-icon" target="_blank">
<span class="iconify social-icon" data-icon="uil:instagram"></span>
</a>
<a href="https://github.com/KushagraJain58-cmd" class="home_social-icon" target="_blank">
<span class="iconify social-icon" data-icon="uil:github-alt"></span>
</a>
<a href="https://www.linkedin.com/in/kushagra-jain-6a9a8a1b1/" class="home_social-icon" target="_blank">
<span class="iconify social-icon" data-icon="uil:linkedin-alt"></span>
</a>
<!-- <a href="https://www.twitter.com/mrkc2303/" class="home_social-icon" target="_blank">
<span class="iconify social-icon" data-icon="uil:twitter-alt"></span>
</a> -->
<a href="https://leetcode.com/kushagrajain112/" class="home_social-icon" target="_blank">
<span class="iconify social-icon" data-icon="cib:leetcode"></span>
</a>
<!-- <a href="https://www.codechef.com/users/kushagra_58" class="home_social-icon" target="_blank">
<span class="iconify social-icon" data-icon="simple-icons:codechef"></span>
</a> -->
</div>
</div>
<!------------------------ About Me -------------------------------------------------->
<div id="about" class="section">
<div class="about-heading section-heading">
<h2>About Me</h2>
<span>My Introduction</span>
</div>
<div class="about-content">
<div class="about-para">
<p>Hey!!👋 Currently, I am a final-year B.Tech CSE student and an enthusiastic learner who is constantly seeking new skills and knowledge in the programming field. I have a keen interest in web development and am actively involved in creating innovative websites that benefit others. </p>
<a href="https://drive.google.com/file/d/1dpt0we_SEZnUTt4KH_ujjb_5jOZkYd1Z/view?usp=sharing" class="button" target="_blank">
Resume
<span class="iconify" data-icon="carbon:document"></span> </a>
</div>
<div class="about-img">
<img src="./media/img/my_img3.jpg">
</div>
</div>
</div>
<!--------------------- Skills --------------------------------------->
<div id="skills" class="section">
<div class="skills-heading section-heading">
<h2>Skills</h2>
<span>My Technical and Non-Technical Skills</span>
</div>
<div class="skills-main">
<div class="skill-card">
<div class="card-head">
<div class="sub-head">
<span class="iconify" data-icon="ph:brackets-angle-bold"></span>
<div>
<h4>Languages</h4>
<span class="head-caption">Languages that I have picked up over the years</span>
</div>
</div>
<span class="iconify expand" data-icon="akar-icons:chevron-up"data-rotate="180deg"></span>
</div>
<div class="skills-content">
<div class="skills-specs">
<div class="specs-heading">
<span class="iconify" data-icon="icomoon-free:html-five"></span>
<h4>HTML</h4>
</div>
<!-- <div class="specs-progress">
<div class="progress-bar">
<div style="width: 90%;"></div>
</div>
<span>90%</span>
</div> -->
</div>
<div class="skills-specs">
<div class="specs-heading">
<span class="iconify" data-icon="akar-icons:css-fill"></span>
<h4>CSS</h4>
</div>
<!-- <div class="specs-progress">
<div class="progress-bar">
<div style="width: 80%;"></div>
</div>
<span>80%</span>
</div> -->
</div>
<div class="skills-specs">
<div class="specs-heading">
<span class="iconify" data-icon="file-icons:c"></span>
<h4>C++</h4>
</div>
<!-- <div class="specs-progress">
<div class="progress-bar">
<div style="width: 60%;"></div>
</div>
<span>60%</span>
</div> -->
</div>
<div class="skills-specs">
<div class="specs-heading">
<span class="iconify" data-icon="akar-icons:javascript-fill"></span>
<h4>Javascript</h4>
</div>
<!-- <div class="specs-progress">
<div class="progress-bar">
<div style="width: 50%;"></div>
</div>
<span>50%</span>
</div> -->
</div>
<div class="skills-specs">
<div class="specs-heading">
<span class="iconify" data-icon="cib:kotlin"></span>
<h4>Kotlin</h4>
</div>
<!-- <div class="specs-progress">
<div class="progress-bar">
<div style="width: 40%;"></div>
</div>
<span>40%</span>
</div> -->
</div>
<div class="skills-specs">
<div class="specs-heading">
<span class="iconify" data-icon="bxl:java"></span>
<h4>Java</h4>
</div>
<!-- <div class="specs-progress">
<div class="progress-bar">
<div style="width: 30%;"></div>
</div>
<span>30%</span>
</div> -->
</div>
<div class="skills-specs">
<div class="specs-heading">
<span class="iconify" data-icon="bxl:java"></span>
<h4>MySQL</h4>
</div>
<!-- <div class="specs-progress">
<div class="progress-bar">
<div style="width: 30%;"></div>
</div>
<span>30%</span>
</div> -->
</div>
</div>
</div>
<div class="skill-card">
<div class="card-head">
<div class="sub-head">
<span class="iconify" data-icon="icon-park-outline:code-brackets"></span>
<div>
<h4>Libraries and Frameworks</h4>
<span class="head-caption">Libraries and Frameworks that I prefer to work with</span>
</div>
</div>
<span class="iconify expand" data-icon="akar-icons:chevron-up"data-rotate="180deg"></span>
</div>
<div class="skills-content">
<div class="skills-specs">
<div class="specs-heading">
<span class="iconify" data-icon="akar-icons:bootstrap-fill"></span>
<h4>Bootstrap</h4>
</div>
<!-- <div class="specs-progress">
<div class="progress-bar">
<div style="width: 70%;"></div>
</div>
<span>70%</span>
</div> -->
</div>
<div class="skills-specs">
<div class="specs-heading">
<span class="iconify" data-icon="file-icons:tailwind"></span>
<h4>Tailwind CSS</h4>
</div>
<!-- <div class="specs-progress">
<div class="progress-bar">
<div style="width: 50%;"></div>
</div>
<span>50%</span>
</div> -->
</div>
<div class="skills-specs">
<div class="specs-heading">
<span class="iconify" data-icon="ri:reactjs-line"></span>
<h4>ReactJs</h4>
</div>
<!-- <div class="specs-progress">
<div class="progress-bar">
<div style="width: 50%;"></div>
</div>
<span>50%</span>
</div> -->
</div>
<div class="skills-specs">
<div class="specs-heading">
<span class="iconify" data-icon="ri:reactjs-line"></span>
<h4>NodeJs</h4>
</div>
<!-- <div class="specs-progress">
<div class="progress-bar">
<div style="width: 50%;"></div>
</div>
<span>50%</span>
</div> -->
</div>
<div class="skills-specs">
<div class="specs-heading">
<span class="iconify" data-icon="ri:reactjs-line"></span>
<h4>MongoDB</h4>
</div>
<!-- <div class="specs-progress">
<div class="progress-bar">
<div style="width: 50%;"></div>
</div>
<span>50%</span>
</div> -->
</div>
</div>
</div>
<div class="skill-card">
<div class="card-head">
<div class="sub-head">
<span class="iconify" data-icon="carbon:tools"></span>
<div>
<h4>Tools</h4>
<span class="head-caption">Tools that I know and use on a daily basis</span>
</div>
</div>
<span class="iconify expand" data-icon="akar-icons:chevron-up" data-rotate="180deg"></span>
</div>
<div class="skills-content">
<div class="skills-specs">
<div class="specs-heading">
<span class="iconify" data-icon="bi:git"></span>
<h4>Git</h4>
</div>
<!-- <div class="specs-progress">
<div class="progress-bar">
<div style="width: 85%;"></div>
</div>
<span>85%</span>
</div> -->
</div>
<div class="skills-specs">
<div class="specs-heading">
<span class="iconify" data-icon="akar-icons:github-fill"></span>
<h4>Github</h4>
</div>
<!-- <div class="specs-progress">
<div class="progress-bar">
<div style="width: 85%;"></div>
</div>
<span>85%</span>
</div> -->
</div>
<div class="skills-specs">
<div class="specs-heading">
<span class="iconify" data-icon="cib:arduino"></span>
<h4>Arduino</h4>
</div>
<!-- <div class="specs-progress">
<div class="progress-bar">
<div style="width: 30%;"></div>
</div>
<span>30%</span>
</div> -->
</div>
<div class="skills-specs">
<div class="specs-heading">
<span class="iconify" data-icon="cib:canva"></span>
<h4>Canva</h4>
</div>
<!-- <div class="specs-progress">
<div class="progress-bar">
<div style="width: 70%;"></div>
</div>
<span>70%</span>
</div> -->
</div>
</div>
</div>
</div>
</div>
<!--------------------- Qualification ------------------------------>
<div id="qualifications" class="section">
<div class="qualifications-heading section-heading">
<h2>Qualifications</h2>
<span>My Educational Qualification, Work Experience & Achivements</span>
</div>
<div class="qualifications-menu">
<div class="menu-heading selected">
<span class="iconify" data-icon="cil:education"></span>
<h4>Education</h4>
</div>
<div class="menu-heading">
<span class="iconify" data-icon="ant-design:trophy-outlined"></span>
<h4>Achievements</h4>
</div>
<div class="menu-heading">
<span class="iconify" data-icon="bytesize:work"></span>
<h4>Work</h4>
</div>
</div>
<div id="education">
<section class="timeline-whole">
<div class="timeline-items">
<div class="timeline-card">
<div class="card-dot"></div>
<div class="card-date">2020</div>
<div class="card-content">
<h3>Graduation</h3>
<p>In year 2020 I got admission in the college <em><u><b>"Mahraja Agrasen Institute of Technology, New Delhi</em></u></b> in the B.Tech Degree in the course of Computer Science and Engineering.</p>
<p class="timespan">
<span class="iconify" data-icon="uil:calender"></span> December 2020 - April 2024
</p>
</div>
</div>
<div class="timeline-card">
<div class="card-dot"></div>
<div class="card-date">2020</div>
<div class="card-content">
<h3>High School Graduate</h3>
<p>I studied for my higher secondary education from <em><b>St. Mark's Senior Secondary Public School</em></b> and in year 2020 I passed my Higher Secondary School exam from CBSE(Central Board of Secondary Education) Board in the subjects of PCM. I scored <em> 88%</em> overall.
</p>
<p class="timespan">
<span class="iconify" data-icon="uil:calender"></span> April 2018 - April 2020
</p>
</div>
</div>
<div class="timeline-card">
<div class="card-dot"></div>
<div class="card-date">2018</div>
<div class="card-content">
<h3>Matriculated</h3>
<p>I studied for my secondary education from <em><b>St. Mark's Senior Secondary Public School</em></b> and in year 2018 I passed my matriculation exam from CBSE(Central Board of Secondary Education) Board.
</p>
<p class="timespan">
<span class="iconify" data-icon="uil:calender"></span> April 2008 - March 2018
</p>
</div>
</div>
</div>
</section>
</div>
<div id="achievements" class="hide">
<section class="timeline-whole">
<div class="timeline-items">
<div class="timeline-card">
<div class="card-dot"></div>
<div class="card-date">2023</div>
<div class="card-content">
<h3>President at IOSD-MAIT</h3>
<p class="scd-text">President at IOSD-MAIT, the technical society of MAIT
</p>
<p class="timespan">
<span class="iconify" data-icon="uil:calender"></span> August 2023
</p>
</div>
</div>
<div class="timeline-card">
<div class="card-dot"></div>
<div class="card-date">2023</div>
<div class="card-content">
<h3>Hack7days Hackathon</h3>
<p class="scd-text">We ranked among the <strong>Top 7 teams </strong>at Hack7days Hackathon powered by Tezos India with our project called <strong>TezWag</strong>. Our project focused on utilizing blockchain technology and a web3 wallet to enable the online booking of cabs, revolutionizing the way cab reservations are made.
</p>
<p class="timespan">
<span class="iconify" data-icon="uil:calender"></span> March 2023
</p>
</div>
</div>
<div class="timeline-card">
<div class="card-dot"></div>
<div class="card-date">2021</div>
<div class="card-content">
<h3>Live The Code - Hackathon</h3>
<p class="scd-text">I with my team participated in nation-wide hackathon where we created a website to educated common people about rocket science and gave information of all types of rockets of different organizations in lamen language.
It was our <b>First Hackathon</b>
We came <strong><em>16 at National level.</em></strong>
</p>
<p class="timespan">
<span class="iconify" data-icon="uil:calender"></span> October 2021
</p>
</div>
</div>
<div class="timeline-card">
<div class="card-dot"></div>
<div class="card-date">2019</div>
<div class="card-content">
<h3>3rd Position and Best Innovation Award at TechnoXian</h3>
<p class="scd-text">Archived a Nationwide <b><em>3rd position</b></em> and won Best Innovation Award in TechnoXian- World Robotics Championship. I was awarded a Medal and a Trophy for the same.
</p>
<p class="timespan">
<span class="iconify" data-icon="uil:calender"></span> September 2019
</p>
</div>
</div>
<div class="timeline-card">
<div class="card-dot"></div>
<div class="card-date">2018</div>
<div class="card-content">
<h3>1st prize at Geek a Hertz</h3>
<p class="scd-text">I was awarded 1st prize in inter school science competition by making an innovative prototype named<b><em> No Human Vehicle
Tolling System.</em></b> It was made to prevent road accidents and automate the challan system.
</p>
<p class="timespan">
<span class="iconify" data-icon="uil:calender"></span>November 2018
</p>
</div>
</div>
</div>
</section>
</div>
<div id="work" class="hide">
<section class="timeline-whole">
<div class="timeline-items">
<div class="timeline-card">
<div class="card-dot"></div>
<div class="card-date">2023</div>
<div class="card-content">
<h3>Web Developer Intern</h3>
<h3>Sapphire Sourcings</h3>
<p class="scd-text">• Developed the complete company website and improved overall business effectiveness within the organization. • Developed the website using <strong> ReactJS</strong>.
</p>
<p class="timespan">
<span class="iconify" data-icon="uil:calender"></span> June 2023 - August 2023
</p>
</div>
</div>
<div class="timeline-card">
<div class="card-dot"></div>
<div class="card-date">2022</div>
<div class="card-content">
<h3>Full Stack Developer Intern</h3>
<h3>Basil Infotech Limited</h3>
<p class="scd-text">• Maintained the Backend side for <strong> CRM </strong> using PHP and SQL, reducing company cost around 15%. • Coordinated data integrity within the company’s CRM Model. • Developed the Ticket Support System with <strong> HTML, CSS, JS, PHP and MySQL </strong> making it 65% more efficient than previous version.
</p>
<p class="timespan">
<span class="iconify" data-icon="uil:calender"></span> May 2022 - August 2022
</p>
</div>
</div>
<div class="timeline-card">
<div class="card-dot"></div>
<div class="card-date">2022</div>
<div class="card-content">
<h3>Open Source Contributor</h3>
<p class="scd-text">I took part in 3 month program as a contributor in <b><em> Girl Script Summer of Contributing</em></b>.I contributed in various domains like Frontend Web Developement with HTML CSS & JS, Data Structures & Algorithms.
</p>
<p class="timespan">
<span class="iconify" data-icon="uil:calender"></span> March 2022 - May 2022
</p>
</div>
</div>
<div class="timeline-card">
<div class="card-dot"></div>
<div class="card-date">2021</div>
<div class="card-content">
<h3>Open Source Contributor</h3>
<p class="scd-text">I took part in 3 month program as a contributor in <b><em> Let's Grow More Summer of Code</em></b>. I contributed in various repositories for frontend and DSA.
Contributed some important and valuable solutions of <strong> Data Structures and Algorithms</strong> in form of Documentation and also provided some beginner-friendly projects in <em>Web Development using <strong>HTML, CSS and JavaScript</strong>.</em>
</p>
<p class="timespan">
<span class="iconify" data-icon="uil:calender"></span> June 2021 - August 2021
</p>
</div>
</div>
</div>
</section>
</div>
</div>
<!----------------------- Projects --------------------------------->
<div id="projects" class="section">
<div class="projects-heading section-heading">
<h2>Projects</h2>
<span>My Projects made with the skills I learned throghout</span>
</div>
<div class="projects-menu">
<div id="show-all" class="toggle-projects selected">
<span class="iconify" data-icon="bi:border-all"></span>
<h4>Show All</h4>
</div>
<div id="web-apps" class="toggle-projects">
<span class="iconify" data-icon="bx:code-alt"></span>
<h4>Web Apps</h4>
</div>
<!-- <div id="android-apps" class="toggle-projects">
<span class="iconify" data-icon="ant-design:android-filled"></span>
<h4>Android Apps</h4>
</div> -->
<div id="electronics" class="toggle-projects">
<span class="iconify" data-icon="bx:chip"></span>
<h4>Electronics</h4>
</div>
</div>
<div class="slideshow-projects">
<a class="prev">❮</a>
<div class="carousel">
<div class="slide animate__animated animate__backInRight animate__backInLeft">
<div class="numbertext"></div>
<div class="slide-content">
<h2>Rocket-o-Pedia</h2>
<span class="learn-more">Read More</span>
<p>
This is a group which I and my friends are developing together. The aim for this website is to educate people about rockets and various space organizations. This project is currently under development project. Initially we have started making Front-End using HTML & CSS. Later we are planning to add JavaScript, React and even link to some Database making it a Full-Stack Development Project.
</p>
<h5>Tech Stack:</h5>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
<div>
<a href="https://server-geeks.github.io/rocket-o-pedia/" class="button-flex button" target="_blank">
Project Link
<span class="iconify" data-icon="akar-icons:link-out"></span>
</a>
<a href="https://github.com/server-geeks/rocket-o-pedia" class="button-flex button" target="_blank">
Github Link
<span class="iconify" data-icon="akar-icons:link-out"></span>
</a>
</div>
</div>
<video src="./media/vid/rocketopedia_demo.mp4" autoplay muted loop ></video>
</div>
<div class="animate__animated animate__backInRight animate__backInLeft slide">
<div class="numbertext"></div>
<div class="slide-content">
<h2>Portfolio Site</h2>
<span class="learn-more">Read More</span>
<p>
This is a portfolio Website that I made <b>for my sister</b> using HTML, CSS, Javascript. I built this website from scratch and added many features like sliders, animation, istream, dropdown,etc. This website is a <b>multi-page website</b> with different UI of each page. Also it is completely <b>responsive and mobile friendly</b>. I have uploaded on domain name <a href="https://ishikajain.in/" target="_blank">ishikajain.in</a>
</p>
<h5>Tech Stack:</h5>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
<div>
<a href="https://ishikajain.in/" class="button-flex button" target="_blank">
Project Link
<span class="iconify" data-icon="akar-icons:link-out"></span>
</a>
<a href="https://github.com/KushagraJain58-cmd/Portfolio-Site" class="button-flex button" target="_blank">
Github Link
<span class="iconify" data-icon="akar-icons:link-out"></span>
</a>
</div>
</div>
<video src="./media/vid/portfoliosite_demo.mp4" autoplay muted loop ></video>
</div>
<div class="animate__animated animate__backInRight animate__backInLeft slide">
<div class="numbertext"></div>
<div class="slide-content">
<h2>Personal Portfolio Site</h2>
<span class="learn-more">Read More</span>
<p>
This is my portfolio Website that I made using HTML, CSS, Javascript. The UI is minimal and easy to understand. It also have a dark mode.I have also added many features like timeline,sliders,dropdown and animations. I have uploaded on domain name <a href="https://kushagrajain.in/" target="_blank">kushagrajain.in</a>
</p>
<h5>Tech Stack:</h5>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
<div>
<a href="https://kushagrajain.in" class="button-flex button" target="_blank">
Project Link
<span class="iconify" data-icon="akar-icons:link-out"></span>
</a>
<a href="https://github.com/KushagraJain58-cmd/My-Portfolio" class="button-flex button" target="_blank">
Github Link
<span class="iconify" data-icon="akar-icons:link-out"></span>
</a>
</div>
</div>
<video src="./media/vid/personal-sr.mp4" autoplay muted loop ></video>
</div>
<div class="animate__animated animate__backInRight animate__backInLeft slide">
<div class="numbertext"></div>
<div class="slide-content">
<h2>Robofriends</h2>
<span class="learn-more">Read More</span>
<p>
This is my <b>first React Js website</b> which I have made to practice React. This is a simple website which shows list of robots. It calls an API from other website and
use that to make list of robots. Also there is a input search which sort the robots according to the typed value.
</p>
<h5>Tech Stack:</h5>
<ul>
<li>React JS</li>
</ul>
<div>
<a href="https://kushagrajain58-cmd.github.io/Robofriends/" class="button-flex button" target="_blank">
Project Link
<span class="iconify" data-icon="akar-icons:link-out"></span>
</a>
<a href="https://github.com/KushagraJain58-cmd/Robofriends" class="button-flex button" target="_blank">
Github Link
<span class="iconify" data-icon="akar-icons:link-out"></span>
</a>
</div>
</div>
<video class="robo-vid" src="./media/vid/robofriends_demo.mp4" autoplay muted loop ></video>
</div>
<div class="animate__animated animate__backInRight animate__backInLeft slide">
<div class="numbertext"></div>
<div class="slide-content">
<h2>Takeaway</h2>
<span class="learn-more">Read More</span>
<p>
This is a group project which I and my friends are developing together. The aim for this website is the user is able to find and order food in their cities. This project is currently under development project. Initially we have started making Front-End using HTML & CSS. Later we are planning to add JavaScript, React and even link to some Database making it a Full-Stack Development Project.
</p>
<h5>Tech Stack:</h5>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
<div>
<a href="https://server-geeks.github.io/Takeaway/" class="button-flex button" target="_blank">
Project Link
<span class="iconify" data-icon="akar-icons:link-out"></span>
</a>
<a href="https://github.com/server-geeks/Takeaway" class="button-flex button" target="_blank">
Github Link
<span class="iconify" data-icon="akar-icons:link-out"></span>
</a>
</div>
</div>
<video src="./media/vid/takeaway_demo.mp4" autoplay muted loop ></video>
</div>
<div class="animate__animated animate__backInRight animate__backInLeft slide">
<div class="numbertext"></div>
<div class="slide-content">
<h2>Youtube Clone</h2>
<span class="learn-more">Read More</span>
<p>
While I was learning the concepts of Web Development, I tried to clone Youtube UI by using HTML, CSS and Vanilla JS. I tried to made this page as responsive as possible using Media Queries. I made this from scratch in order to enhance my development skills by making out some projects. It has some functionalities like Responsiveness, Collapsible Menu, Centeral Grid System, Interactive Header Menu, etc.
</p>
<h5>Tech Stack:</h5>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
<div>
<a href="https://kushagrajain58-cmd.github.io/Youtube-Clone/" class="button-flex button" target="_blank">
Project Link
<span class="iconify" data-icon="akar-icons:link-out"></span>
</a>
<a href="https://github.com/KushagraJain58-cmd/Youtube-Clone" class="button-flex button" target="_blank">
Github Link
<span class="iconify" data-icon="akar-icons:link-out"></span>
</a>
</div>
</div>
<video src="./media/vid/youtube_demo.mp4" autoplay muted loop ></video>
</div>
<div class="animate__animated animate__backInRight animate__backInLeft slide">
<div class="numbertext"></div>
<div class="slide-content">
<h3>The Road Safety Protocol</h3>
<h5>AKA No Human Vehicle Tolling System</h5>
<span class="learn-more">Read More</span>
<p>
This prototype aims to <b>minimize the number of Accidents</b> occurring on roads due to Red-light Jumping, over speeding and Drunk and Drive cases using
the combination of <b>Hardware and Software</b>. In addition, it would address the issues such as Emergency Lanes Misuse, Deaths in Ambulance due to traffic related delays. It Utilizes Arduino, ATMEGA-328, RFID, and many sensors as Hardware. As a part of Software it uses PHP, HTML, CSS, JavaScript & MySQL as database.
</p>
<h5>Tech Stack:</h5>
<ul>
<li>Arduino</li>
<li>C++</li>
<li>PHP</li>
</ul>
<div>
<a href="https://www.youtube.com/watch?v=OJvxadXaHm8" class="button-flex button" target="_blank">
Video Link
<span class="iconify" data-icon="akar-icons:link-out"></span>
</a>
<!-- <a href="https://github.com/server-geeks/rocket-o-pedia" class="button-flex button" target="_blank">
Github Link
<span class="iconify" data-icon="akar-icons:link-out"></span>
</a> -->
</div>
</div>
<img src="./media/img/echallan_img.jpeg" class="echallan-img">
</div>
<div class="animate__animated animate__backInRight animate__backInLeft slide">
<div class="numbertext"></div>
<div class="slide-content">
<h2>Home Automation and Security System</h2>
<span class="learn-more">Read More</span>
<p>
This prototype aims to make our <b>more secured and automated</b>. In this prototype, there are various methods
to unlock the door <b>(by speaking a password, through RFID card, through a website, by keypad,etc)</b>. It also informs the owner if someone
is trying to unlock without permission and give a call on the owner's number. I have also added some sensors to make it
automated: <b>PIR sensor, Flame sensor, RFID and IOT ESP8266.</b>
</p>
<h5>Tech Stack:</h5>
<ul>
<li>Arduino</li>
<li>C++</li>
<li>PHP</li>
</ul>
<div>
<a href="https://www.youtube.com/watch?v=ihesPLNKMTI&feature=youtu.be" class="button-flex button" target="_blank">
Video Link
<span class="iconify" data-icon="akar-icons:link-out"></span>
</a>
<!-- <a href="https://github.com/server-geeks/rocket-o-pedia" class="button-flex button" target="_blank">
Github Link
<span class="iconify" data-icon="akar-icons:link-out"></span>
</a> -->
</div>
</div>
<img src="./media/img/home4.jpeg" class="automation-img">
</div>
</div>
<a class="next">❯</a>
</div>
<div class="dot-container">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
<span class="dot" onclick="currentSlide(4)"></span>
<span class="dot" onclick="currentSlide(5)"></span>
<span class="dot" onclick="currentSlide(6)"></span>
<span class="dot" onclick="currentSlide(7)"></span>
<span class="dot" onclick="currentSlide(8)"></span>
</div>
</div>
<!--------------- Contact Form ------------------------>
<div id="contact" class="section">
<div class="section-heading">
<h2>Contact Me</h2>
<span>Contact me if you have any questions or feedbacks</span>
</div>
<div class="contact-container">
<div class="contact-social">
<a href="https://goo.gl/maps/kaCB85f1GqqRe3sE7" class="social-link" target="_blank">
<span class="iconify" data-icon="akar-icons:location"></span>
<div>
<h4 class="social-text">Location</h4>
<span class="social-subtext">New Delhi, India</span>
</div>
</a>
<a href="mailto:[email protected]" class="social-link" target="_blank">
<span class="iconify" data-icon="carbon:email"></span>
<div>
<h4 class="social-text">Email</h4>
<span class="social-subtext">[email protected]</span>
</div>
</a>
<a href="https://calendly.com/jainkushagra582/30min" class="social-link" target="_blank">
<span class="iconify" data-icon="uil:calender"></span>
<div>
<h4 class="social-text">Online Meet</h4>
<span class="social-subtext">Schedule an Online Meet with Me</span>
</div>
</a>
<a href="https://www.linkedin.com/in/kushagra-jain-6a9a8a1b1/" class="social-link" target="_blank">
<span class="iconify social-icon" data-icon="uil:linkedin-alt"></span>
<div>
<h4 class="social-text">Linkedin</h4>
<span class="social-subtext">@kushagra-jain</span>
</div>
</a>
</div>
<div class="contact-content">
<form id="contact-form" name="simple-contact-form" accept-charset="utf-8" action="https://formspree.io/f/mjvlrdoy" method="POST">
<div id="text-message" class="msg_style"></div>
<div class="contact-grid">
<div class="contact-input">
<label for="full-name">Full Name</label>
<input type="text" name="name" id="full-name" required>
</div>
<div class="contact-input">
<label for="email-address">Email Address</label>
<input type="email" name="_replyto" id="email-address" placeholder="[email protected]" required>
</div>
</div>
<div class="contact-input">
<label for="full-name">Subject</label>
<input type="text" name="_subject" id="email-subject" required>
</div>
<div class="contact-input">
<label for="message">Message</label>
<textarea rows="7" col="0" name="message" id="message" placeholder="Write your Message Here" required></textarea>
</div>
<button type="submit" value="Send" class="button button-flex">
Send
<span class="iconify" data-icon="akar-icons:send"></span>
</button>
</form>
</div>
</div>
</div>
<footer id="footer">
<div class="foot-content">
<div class="foot-name">
<h2>Kushagra Jain</h2>
<span>Frontend Web Developer</span>
</div>
<div class="foot-social">
<a href="https://leetcode.com/ishaanjain112/" target="_blank">
<span class="iconify" data-icon="cib:leetcode"></span>
</a>
<a href="https://www.codechef.com/users/kushagra_58" target="_blank">
<span class="iconify" data-icon="simple-icons:codechef"></span>
</a>
<a href="https://github.com/KushagraJain58-cmd" target="_blank">
<span class="iconify" data-icon="uil:github-alt"></span>
</a>
</div>