-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1248 lines (1176 loc) · 67.1 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 lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Arwaz Khan">
<meta name="title" content="ARWAZ KHAN | PORTFOLIO">
<meta name="description"
content="I'm Arwaz Khan, a Computer Science and Engineering student with a passion for developing innovative software solutions. I specialize in Android App Development and Full Stack Web Development, and have experience working with technologies such as Kotlin, nodejs, Python, HTML, CSS, JavaScript, and Firebase.">
<meta name="wot-verification" content="7d98fc325cc72a2031a2" />
<meta name="theme-color" content="#7952b3">
<meta name="keywords"
content="arwazkhan189, arwazkhan189.github.io, Arwaz Khan, Arwaz, arwaz, Web Developer, Android App Developer, Python Developer,Software developer, Software Engineer, SDE, NITD, NIT Delhi">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="revisit-after" content="3 days">
<meta property="og:title" content="ARWAZ KHAN | PORTFOLIO" />
<meta property="og:image" content="https://arwazkhan189.github.io/assets/images/mypic.jpg" />
<meta property="og:type" content="website">
<meta property="og:url" content="https://arwazkhan189.github.io/" />
<meta property="og:site_name" content="arwazkhan189">
<meta property="og:description"
content="I'm Arwaz Khan, a Computer Science and Engineering student with a passion for developing innovative software solutions. I specialize in Android App Development and Full Stack Web Development, and have experience working with technologies such as Kotlin, nodejs, Python, HTML, CSS, JavaScript, and Firebase." />
<!-- google site verification meta tags -->
<meta name="google-site-verification" content="JIOcOAR8NTqTj3zze6gohuqwXsf41oSd2-20KHZQnbo" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-DFLKBRQG6H"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-DFLKBRQG6H');
</script>
<!--noscript tag -->
<noscript>Sorry, your browser does not support JavaScript!</noscript>
<!-- Bootstrap CSS CDN-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<!--fontawesome link-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!--Animate on scroll -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<!--Lightbox css link-->
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/css/lightbox.css" />
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/css/lightbox.min.css" />
<!--Animate CSS link-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!--PageClip CSS link-->
<link rel="stylesheet" href="https://s.pageclip.co/v1/pageclip.css" media="screen">
<!-- flickity css crousel link -->
<link rel="stylesheet" href="https://unpkg.com/flickity@2/dist/flickity.min.css">
<!--Main CSS File -->
<link href="./assets/style.css" rel="stylesheet">
<!--Page title-->
<title>ARWAZ KHAN | PORTFOLIO</title>
<link rel="icon" href="./assets/images/icon.jpg" type="image/icon">
</head>
<body>
<!--navbar-->
<header id="header">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" href="#"><img src="./assets/images/icon.jpg" alt="logo" width='30'
style="border-radius: 50%;" loading="lazy"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<i class="fa fa-angle-down " aria-hidden="true"></i>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item ">
<a class="nav-link" href="#home"><i class="fa fa-home" aria-hidden="true"></i>Home</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="#about"><i class="fa fa-user" aria-hidden="true"></i>ABOUT</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#resume"><i class="fa fa-file" aria-hidden="true"></i>RESUME</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects"><i class="fa fa-th" aria-hidden="true"></i>PROJECTS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact"><i class="fa fa-envelope" aria-hidden="true"></i>CONTACT</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog.html">
<i class="fa fa-pencil" aria-hidden="true"></i>My Blog</a>
</li>
</ul>
</div>
</nav>
</header>
<!--navbar end-->
<!--home section-->
<section id="home" class="d-flex flex-column justify-content-center align-items-center">
<div class="home-container" data-aos="fade-in">
<h1>Arwaz Khan</h1>
<p><span class="typejs"></span></p>
</div>
</section>
<!--home section end-->
<!--main section-->
<main id='main'>
<!--about section-->
<section id="about" class="about">
<div class="container">
<div class="section-title" data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="100">
<h2>ABOUT</h2>
</div>
<div class="row">
<div class="col-lg-4 text-center" data-aos="fade-right" data-aos-easing="ease-in-sine" data-aos-delay="100">
<img src="./assets/images/desktop-pic.png" class="img-fluid about-dp" alt="Arwaz's picture" loading="lazy">
</div>
<div class="col-lg-8 pt-4 pt-lg-0 content" data-aos="fade-left" data-aos-easing="ease-in-sine"
data-aos-delay="100">
<p class="font-italic text-justify">
Welcome to my website!
I'm Arwaz Khan, a Computer Science and Engineering graduate student with a passion for developing
innovative software solutions. I specialize in Android App Development and Full Stack Web Development, and
have experience working with technologies such as Kotlin, Node.js, Python, HTML, CSS, JavaScript, and
Firebase.
</p>
<p class="font-italic text-justify">
I have developed various projects such as HealthIQ, Resume2Hire, EdRoom, HostelMate, and a Space Invaders
game using
my skills and knowledge. As a Lead/Web Developer at Alumni Of GEC Bilaspur (ABGEC), I have been involved
in creating a website (<a href="https://abgec.in/" target="_blank"
style="color: #7952b3; font-weight:bold;">www.abgec.in</a>) for the alumni organization of our college.
I am also a <strong>Gate
qualified</Strong> candidate.
</p>
<p class="font-italic text-justify">
<b>Currently, I am pursuing a Master of Technology at the National Institute of Technology Delhi</b>.
</p>
<p class="font-italic text-justify">
Apart from my technical expertise, I possess soft skills such as problem-solving, teamwork, leadership,
and analytical thinking. I have also been actively involved in technical clubs and organizations, such as
the Developer's Club and GDSC GECB, where I have taken up leadership roles and responsibilities.
</p>
<p class="font-italic text-justify">
Thank you for visiting my website. Feel free to explore my portfolio, projects, and blog section to know
more about me and my work.
</p>
<!--Porfile Views
<span style="font-weight:bold;">👉 Profile Views : <span id="views"></span> </span>-->
<p style="font-weight:bold;">👉 See My Certificates, Badges and Swags etc... <a
href="https://bit.ly/3mULhrS" target="_black" style="color: #7952b3; font-weight:bold;">🔗Click
here!</a>
</p>
<!-- Github Graph-->
<!--<div id="hide-small-div">
<center class="py-2" style="text-decoration:underline;">
<strong>GitHub Contribution Graph</strong>
</center>
<img src="https://ghchart.rshah.org/7952b3/arwazkhan189" alt="Arwaz's Github chart" class="img-fluid"
loading="lazy" />
</div>-->
</div>
</div>
</div>
</section>
<!--about section end-->
<!--Skills Section-->
<section id="skills" class="skills section-bg">
<div class="container">
<div class="section-title" data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="100">
<h3>Tech & Tools</h3>
</div>
<div class="main-carousel-skill">
<div class="carousel-cell">
<img src="./assets/images/skills_image/python.svg" alt="Python logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="100">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/c.svg" alt="C logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="110">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/cpp.svg" alt="C++ logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="120">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/html5.svg" alt="HTML5 logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="130">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/css3.svg" alt="CSS3 logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="140">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/js.svg" alt="JavaScript logo" data-aos="fade-left"
data-aos-easing="ease-in-sine" data-aos-delay="140">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/php.svg" alt="PHP logo" data-aos="fade-left"
data-aos-easing="ease-in-sine" data-aos-delay="130">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/mysql.svg" alt="MYSQL logo" data-aos="fade-left"
data-aos-easing="ease-in-sine" data-aos-delay="120">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/bootstrap.svg" alt="Bootstrap logo" data-aos="fade-left"
data-aos-easing="ease-in-sine" data-aos-delay="110">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/github.svg" alt="GitHub logo" data-aos="fade-left"
data-aos-easing="ease-in-sine" data-aos-delay="100">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/git.svg" alt="git logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="100">
</div>
<!--<div class="carousel-cell">
<img src="./assets/images/skills_image/java.svg" alt="java logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="110">
</div>-->
<div class="carousel-cell">
<img src="./assets/images/skills_image/kotlin.svg" alt="kotlin logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="120">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/jetpack_compose.svg" alt="Jetpack Compose logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="120">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/xml.svg" alt="xml logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="130">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/firebase.svg" alt="firebase logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="130">
</div>
<!--<div class="carousel-cell">
<img src="./assets/images/skills_image/jquery.svg" alt="jquery logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="140">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/json.svg" alt="json logo" data-aos="fade-left"
data-aos-easing="ease-in-sine" data-aos-delay="140">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/django.svg" alt="django logo" data-aos="fade-left"
data-aos-easing="ease-in-sine" data-aos-delay="130">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/flask.svg" alt="flask logo" data-aos="fade-left"
data-aos-easing="ease-in-sine" data-aos-delay="120">
</div>-->
<div class="carousel-cell">
<img src="./assets/images/skills_image/vscode.svg" alt="vscode logo" data-aos="fade-left"
data-aos-easing="ease-in-sine" data-aos-delay="110">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/android-studio.svg" alt="android logo" data-aos="fade-left"
data-aos-easing="ease-in-sine" data-aos-delay="100">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/figma.svg" alt="figma logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="100">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/canva.svg" alt="canva logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="100">
</div>
<!--<div class="carousel-cell">
<img src="./assets/images/skills_image/adobeXD.svg" alt="adobe xd logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="100">
</div>-->
<div class="carousel-cell">
<img src="./assets/images/skills_image/Whimsical.svg" alt="Whimsical logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="100">
</div>
<!--<div class="carousel-cell">
<img src="./assets/images/skills_image/photoshop.svg" alt="photoshop logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="100">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/blender.svg" alt="blender logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="110">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/autocad.svg" alt="autocad logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="120">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/Scilab.png" alt="scilab logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="130">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/unity.svg" alt="unity logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="140">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/heroku.svg" alt="heroku logo" data-aos="fade-left"
data-aos-easing="ease-in-sine" data-aos-delay="140">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/netlify.svg" alt="netlify logo" data-aos="fade-left"
data-aos-easing="ease-in-sine" data-aos-delay="130">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/chrome.svg" alt="chrome logo" data-aos="fade-left"
data-aos-easing="ease-in-sine" data-aos-delay="120">
</div>-->
<div class="carousel-cell">
<img src="./assets/images/skills_image/nodejs.svg" alt="nodejs logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="120">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/postman.svg" alt="postman logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="130">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/appscript.svg" alt="appscript logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="140">
</div>
<div class="carousel-cell">
<img src="./assets/images/skills_image/iot.png" alt="iot logo" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="150">
</div>
</div>
<div class="section-title pt-4" data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="100">
<h5 class="ss-head">Soft Skills:</h5>
</div>
<div class="row soft-skills">
<li>Time Management</li>
<li>Teamwork</li>
<li>Problem Solving</li>
<li>Leadership</li>
<li>Analytical Thinking</li>
<li>Adaptability</li>
<li>Communication</li>
</div>
<div class="section-title" data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="100">
<h5>👨💻Coding | Developer |Blogs - Profile :</h5>
</div>
<div class="row justify-content-center align-items-center skills-places">
<a href="https://www.hackerrank.com/arwazkhan189" target="_blank" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="140"><img
src="./assets/images/places_where_i_write_image/hackerrank.svg" alt="Hackerrank logo" title="Hackerrank"
loading="lazy"></a>
<a href="https://dev.to/arwazkhan189" target="_blank" data-aos="fade-left" data-aos-easing="ease-in-sine"
data-aos-delay="160"><img src="./assets/images/places_where_i_write_image/dev.svg" alt="Dev logo"
title="Dev.to" loading="lazy"></a>
<a href="https://g.dev/arwazkhan189" target="_blank" data-aos="zoom-in" data-aos-easing="ease-in-sine"
data-aos-delay="170"><img src="./assets/images/places_where_i_write_image/gdev.png"
alt="Google Developer profile logo" title="Google Developer profile" loading="lazy"></a>
<a href='https://www.cloudskillsboost.google/public_profiles/9d6b73e6-2864-4161-a97d-f38eaf50d3ec'
target="_blank" data-aos="zoom-in" data-aos-easing="ease-in-sine" data-aos-delay="170"><img
src="./assets/images/places_where_i_write_image/qwiklabs.svg" alt="Qwicklabs logo"
title="Qwicklab's profile" loading="lazy"></a>
<a href="https://www.codechef.com/users/arwaz189" target="_blank" data-aos="fade-left"
data-aos-easing="ease-in-sine" data-aos-delay="160"><img
src="./assets/images/places_where_i_write_image/codechef.svg" alt="Codechef logo" title="Codechef"
loading="lazy"></a>
<a href="https://wdforbeginner.blogspot.com/" target="_blank" data-aos="fade-right"
data-aos-easing="ease-in-sine" data-aos-delay="140"><img
src="./assets/images/places_where_i_write_image/blogger.svg" alt="Blogger logo" title="Blogspot"
loading="lazy"></a>
<!--<a href="https://codeforces.com/profile/arwazkhan189" target="_blank" data-aos="fade-left" data-aos-easing="ease-in" data-aos-delay="100"><img src="./assets/images/places_where_i_write_image/codeforces.png" alt="Codeforces logo" class="codeforces-logo" title="Click!" loading="lazy"></a>-->
</div>
</div>
</section>
<!--Skills Section end-->
<!--resume section-->
<section id='resume' class="resume">
<div class="container">
<div class="section-title" data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="100">
<h2>RESUME</h2>
<p class="text-justify">
<strong style="text-decoration: underline; font-variant: small-caps;">Career Objective :</strong> Seeking a
challenging role at a reputed IT organization to utilize my engineering skills that can contribute to the
company's growth as well as enhance my knowledge by exploring new things.
</p>
</div>
<div class="btn-download float-center" data-aos="zoom-in-up" data-aos-easing="ease-in-sine"
data-aos-delay="100">
<a class="btn btn-outline-secondary" href="assets/Arwaz_khan_Resume.pdf"
onclick='swal({title: "Resume Downloaded",text: "Last Updated : 25 March 2024 ✅",icon: "success"});'
download>Download Resume</a>
</div>
<div class="row">
<div class="col-lg-6" data-aos="fade-up" data-aos-easing="ease-in-sine" data-aos-delay="100">
<h3 class="resume-title">Education</h3>
<div class="resume-item ">
<h4>Master of technology </h4>
<h5>2024 - 2026</h5>
<p><em>National Institute of Technology Delhi (NITD), India </em></p>
</div>
<div class="resume-item ">
<h4>Bachelor of technology </h4>
<h5>2019 - 2023</h5>
<p><em>Government Engineering College, Bilaspur (C.G.), India </em></p>
<p class="text-justify">I successfully passed the B.Tech Computer Science and scored 9.14 CGPA out of 10.
</p>
</div>
<div class="resume-item">
<h4>Higher Secondary Exam (10+2)</h4>
<h5>2018</h5>
<p><em>DAV Public School , Bilaspur (C.G.), India</em></p>
<p class="text-justify">I successfully passed the Higher Secondary Exam (10+2) and scored 82.6%.</p>
</div>
<div class="resume-item">
<h4>Secondary Exam (10<sup>th</sup>)</h4>
<h5>2016</h5>
<p><em>JEM Higher Secondary School, Kotma (M.P.), India</em></p>
<p class="text-justify">I successfully passed the Secondary Exam (10<sup>th</sup>) and scored 84.6%.</p>
</div>
<h3 class="resume-title">Training</h3>
<div class="resume-item">
<h4>Introduction to Python Programming Language</h4>
<h5>August, 2020 - September, 2020 (2 Weeks)</h5>
<p><em>IIIT Raipur</em></p>
</div>
<div class="resume-item">
<h4>Full Stack Web Development (PHP, MYSQL)</h4>
<h5>March, 2021 (10 Days)</h5>
<p><em>EICT IIT Kanpur</em></p>
<a href="./assets/images/certificate_image/ECIT_FSD_Certificate.png" data-lightbox="certificate"
data-title="Certificate of Training - Full Stack Web Development(ECIT IIT Kanpur)"
style="color: #7952b3; font-weight:bold;">🔗Certificate</a>
</div>
<div class="resume-item">
<h4>Introduction to AI/ML</h4>
<h5>March, 2021 (1 Week)</h5>
<p><em>IT-ITeS SSC, NASSCOM</em></p>
<a href="./assets/images/certificate_image/ITSSC_NASSCOM_AI_ML_Certificate.png"
data-lightbox="certificate" data-title="Certificate of Training - Introduction to AI/ML(NASSCOM)"
style="color: #7952b3; font-weight:bold;">🔗Certificate</a>
</div>
<div class="resume-item">
<h4>Android App Development (Kotlin, XML)</h4>
<h5>July, 2021 - August, 2021 (8 Weeks)</h5>
<p><em>Internshala Trainings</em></p>
<a href="./assets/images/certificate_image/INTERNSHALA_TRAININGS_ANDROID_CERTIFICATE.jpg"
data-lightbox="certificate" data-title="Certificate of Training - Android App Development(Internshala)"
style="color: #7952b3; font-weight:bold;">🔗Certificate</a>
</div>
<div class="resume-item">
<h4>UI/UX Design</h4>
<h5>June, 2022 - July, 2022 (6 Weeks)</h5>
<p><em>Internshala Trainings</em></p>
<a href="./assets/images/certificate_image/INTERNSHALA_TRAININGS_UI_UX_DESIGN_CERTIFICATE.png"
data-lightbox="certificate" data-title="Certificate of Training - UI/UX Design(Internshala)"
style="color: #7952b3; font-weight:bold;">🔗Certificate</a>
</div>
<div class="resume-item">
<h4>Android App Development (Jetpack Compose)</h4>
<h5>July, 2024 - September, 2024 (8 Weeks)</h5>
<p><em>Internshala Trainings</em></p>
<a href="./assets/images/certificate_image/INTERNSHALA_TRAININGS_ANDROID_JETPACK_CERTIFICATE.png"
data-lightbox="certificate"
data-title="Certificate of Training - Android App Development Jetpack Compose (Internshala)"
style="color: #7952b3; font-weight:bold;">🔗Certificate</a>
</div>
<h3 class="resume-title">Paper Published</h3>
<div class="resume-item">
<h4><a
href='https://ijircce.com/get-current-issue.php?key=MTMz#:~:text=An%20Android%20Based%20Food%20and%20Residential%20Service%20Providing%20System'
target="_blank" style='text-decoration:none;color: black;' title="Click!">An
Android Based Food and Residential Service Providing System</a></h4>
<h5>DOI: 10.15680/IJIRCCE.2022.1006105</h5>
<p><em>International Journal of Innovative Research in Computer and Communication Engineering</em></p>
<p><a href="./assets/images/certificate_image/Certificate_of_publication_ijircce.png"
data-lightbox="certificate" data-title="Certificate of Publication - IJIRCCE"
style="color: #7952b3; font-weight:bold;">🔗Certificate of Publication</a>
<a href="assets/HostelMate_IJIRCCE_PAPER.pdf"
onclick='swal({title: "Paper Downloaded Successfully...",text: "Thanks for downlowing the paper🙏,\n Please share your Review with me 🙂",icon: "success"})'
style='color: #7952b3; font-weight:bold;' title="Click to download!" download>🔗Click
here to see
paper</a>
</p>
</div>
</div>
<div class="col-lg-6" data-aos="fade-up" data-aos-easing="ease-in-sine" data-aos-delay="100">
<h3 class="resume-title">Achievements</h3>
<div class="resume-item">
<h4>Gate 2024 Qualified (96.92 Percentile)
</h4>
</div>
<div class="resume-item">
<h4>Gate 2023 Qualified
<!--<a href="./assets/images/ArwazKhan_gate2023_Scorecard.png" data-lightbox="certificate"
data-title="Arwaz Khan Gate 2023 Scorecard" style="color: #7952b3; font-weight:bold;">🔗Scorecard</a>-->
</h4>
</div>
<!--<div class="resume-item">
<h4>5⭐ Badge Hackerrank</h4>
</div>
<div class="resume-item">
<h4>2⭐ @ CodeChef</h4>
</div>-->
<h3 class="resume-title">Work Experience</h3>
<div class="resume-item">
<h4>Web Developer Internship</h4>
<h5>September, 2020 - January, 2021</h5>
<p><em>The Rising People Welfare Society</em></p>
<p class="text-justify">I was hired as a Web developer in The Rising People Welfare Society <a
href='https://www.trpws.com/' target="_blank"
style='text-decoration:none;color: black;font-weight: bold; pointer-events: none;'
title="Click!">(www.trpws.com)</a>, Subhas Nagar, Delhi. In this internship, I work with a team and we
create the frontend of the Website using HTML, CSS, JavaScript, Bootstrap, and JQuery library. Managing
the Github repository of the Website. I learned many things during this internship.<br>
<a href="./assets/images/certificate_image/TRPWS_Certificate.jpg" data-lightbox="certificate"
data-title="Internship Certificate - Web Development at TRPWS"
style="color: #7952b3; font-weight:bold;">🔗Internship Certificate</a>
<a href="./assets/images/certificate_image/TRPWS_LOR.jpg" data-lightbox="certificate"
data-title="Letter of Recommendation - By TRPWS" style="color: #7952b3; font-weight:bold;">🔗Letter of
Recommendation</a>
</p>
</div>
<div class="resume-item">
<h4>Campus Ambassador Internship</h4>
<h5>July, 2020 - February, 2021</h5>
<p><em>E-Cell, IIT Bombay</em></p>
<p class="text-justify"><b>Tasks :-</b>
<ul>
<li>Increase the outreach of the initiatives of E-Cell, IIT Bombay to
promote entrepreneurial activities in your college network.</li>
<li>Perform tasks assigned by mentors and Participated in many events.</li>
</ul>
<a href="./assets/images/certificate_image/ECELL_IITB_Certificate_1.jpg" data-lightbox="certificate"
data-title="Certificate of recognition - Ecell IITB"
style="color: #7952b3; font-weight:bold;">🔗Certificate - 1</a>
<a href="./assets/images/certificate_image/ECELL_IITB_Certificate_2.jpg" data-lightbox="certificate"
data-title="Certificate of recognition - Concord Plinth For Innovation"
style="color: #7952b3; font-weight:bold;">🔗Certificate - 2</a>
</p>
</div>
<div class="resume-item">
<h4>Technical Lead</h4>
<h5>August, 2021 - July, 2022</h5>
<p><em><a href="https://gdsc.community.dev/government-engineering-college-bilaspur/" target="_blank"
style="color: #7952b3; font-weight:bold;">Google Developer Student Club , GEC-Bilaspur</a></em>
</p>
<p class="text-justify"><b>Responsibility :-</b>
<ul>
<li>Creating and maintaining Discord Server and Solving technical problems.</li>
<li>Conducting Events and helping other club members.</li>
</ul>
</div>
<div class="resume-item">
<h4>Lead/Manager</h4>
<h5>Jan, 2020 - June, 2023</h5>
<p><em><a href="https://www.linkedin.com/groups/10499004/" target="_blank"
style="color: #7952b3; font-weight:bold;">Developer's Club,
GEC-Bilaspur</a></em>
</p>
</div>
<div class="resume-item">
<h4>T&P Cell Member</h4>
<h5>2022</h5>
<p><em style="color: #7952b3; font-weight:bold;">GEC Bilaspur</a></em>
</p>
</div>
<div class="resume-item">
<h4>Lead/Web Developer</h4>
<h5>Sept, 2022 - March, 2023</h5>
<p><em><a href="https://abgec.in/" target="_blank" style="color: #7952b3; font-weight:bold;">Alumni Of GEC
Bilaspur (ABGEC)</a></em>
</p>
<p class="text-justify"><b>Work :-</b>
<ul class="text-justify">
<li>A website (<a href="https://abgec.in/" target="_blank"
style="color: #7952b3; font-weight:bold;">www.abgec.in</a>) was created for the alumni organization
of our college for various purposes, including registering alumni in one place, connecting alumni,
sharing glimpses, uploading events, and more. It has 200+ registrations to date.</li>
<li>I worked on the front-end, back-end, and data management. I also led a 10-member team and interacted
with the core team of ABGEC for the successful development of the website.</li>
<li>In August 2024, I updated some parts of the website, automated the registration, backend
confirmation, and data management for smoother operation. Additionally, I guided the new team to
ensure they understood the updates and could maintain the website effectively.</li>
</ul>
<a href="./assets/images/certificate_image/ABGEC_Certificate.png" data-lightbox="certificate"
data-title="Certificate of appreciation - ABGEC" style="color: #7952b3; font-weight:bold;">🔗Certificate
of Appreciation</a>
</div>
</div>
</div>
</div>
</section>
<!--resume section end-->
<!--Project section-->
<section id='projects' class="projects">
<div class="container">
<div class="section-title" data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="150">
<h2>PROJECTS</h2>
<p>You can find more projects on my <a href="https://github.com/arwazkhan189" target="_blank"
style="text-decoration: none;color: #7952b3;" title="Click!"><strong><i class="fa fa-github"></i>
Github</strong></a>.
</p>
</div>
<div class="main-carousel-project">
<div class="carousel-cell">
<!--card 1 -->
<div class="col py-2 " data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="100">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/images/project_image/ccqlogo.jpg" alt="Captain Cricket Quiz logo"
style="width:300px;height:300px;" loading="lazy">
<h5>Captain Cricket Quiz</h5>
</div>
<div class="flip-card-back">
<p class="py-4" style="opacity: 0.7;"><i class="fa fa-microphone" aria-hidden="true"></i> Ask Your
Assistant<br><b style="text-decoration: underline;">Talk to Captain Cricket Quiz</b></p>
<p>Captain Cricket Quiz is a Google assistant action created by using Google Sheets and Google
Action
Console. <br> Files available in <a
href="https://github.com/arwazkhan189/CCQ-Google-assistant-action" target="_blank"
style="color:#fff; text-decoration:underline;"><i class="fa fa-github"></i>Github</a>.</p>
<div class="card-btn py-2">
<a class="btn btn-outline-secondary"
onclick='swal("Oops!", "The program is no longer available in Google Assistant, But you can use this file to make your own trivia game (Checkout GitHub Repository).", "info",{buttons: ["Close", false],});'
target="_blank">Go To</a>
</div>
</div>
</div>
</div>
</div>
<!--card 1 end-->
</div>
<div class="carousel-cell">
<!--card 2 -->
<div class="col py-2" data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="200">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/images/project_image/HID-2020logo.png" alt="HID-2020 logo"
style="width:300px;height:300px;" loading="lazy">
<h5>HID-2020</h5>
</div>
<div class="flip-card-back">
<p class="py-4" style="opacity: 0.7;"><img src="./assets/images/project_image/flag.svg" alt='flag'
style="width: 30px;" loading="lazy"> <b style="text-decoration: underline;">Happy Independance
Day 2020</b></p>
<p>HID 2020 (Happy Independence Day 2020 Animation) is a Python program built using the turtle
module.
</p>
<div class="card-btn py-2">
<a class="btn btn-outline-secondary" href="https://github.com/arwazkhan189/HID-2020"
target="_blank">Go To</a>
</div>
</div>
</div>
</div>
</div>
<!--card 2 end-->
</div>
<div class="carousel-cell">
<!--card 3 -->
<div class="col py-2" data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="300">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/images/project_image/portfolio.jpg" alt="PORTFOLIO Webite"
style="width:300px;height:300px;" loading="lazy">
<h5>Portfolio Website</h5>
</div>
<div class="flip-card-back">
<p class="py-4" style="opacity: 0.7;"><i class="fa fa-user" aria-hidden="true"></i> <b
style="text-decoration: underline;">Portfolio Website</b></p>
<p>I created this website using HTML, CSS, JavaScript, Bootstrap, JQuery library, and many more...
<br>You Can find the code in my Github profile. Click the below button.
</p>
<div class="card-btn py-2">
<a class="btn btn-outline-secondary" href="https://github.com/arwazkhan189/arwazkhan189.github.io"
target="_blank">Go To</a>
</div>
</div>
</div>
</div>
</div>
<!--card 3 end-->
</div>
<div class="carousel-cell">
<!--card 4 -->
<div class="col py-2 " data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="100">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/images/project_image/weatherwebapp.png" alt="Weather Web App interface "
style="width:300px;height:300px;" loading="lazy">
<h5>Weather Web App</h5>
</div>
<div class="flip-card-back">
<p class="py-4" style="opacity: 0.7;"><img src="./assets/images/project_image/weathericon.png"
alt='weather app icon' style="width: 30px;" loading="lazy"> <b
style="text-decoration: underline;">Weather Web
App</b></p>
<p>A simple weather web app created using HTML, CSS, JavaScript, and openweather API.
<br> Code available in <a href="https://github.com/arwazkhan189/Weather-app" target="_blank"
style="color:#fff; text-decoration:underline;" title="Click to see!"><i
class="fa fa-github"></i>Github</a>.
</p>
<div class="card-btn py-2">
<a class="btn btn-outline-secondary" href="https://arwazkhan189.github.io/Weather-app/"
target="_blank">Go To</a>
</div>
</div>
</div>
</div>
</div>
<!--card 4 end-->
</div>
<div class="carousel-cell">
<!--card 5 -->
<div class="col py-2" data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="200">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/images/project_image/horoscopewebapp.jfif" alt="Horoscope Web App icon"
style="width:300px;height:300px;" loading="lazy">
<h5>Horoscope Web App</h5>
</div>
<div class="flip-card-back">
<p class="py-4" style="opacity: 0.7;"><img src="./assets/images/project_image/horoscopewebapp.jfif"
alt='Horoscope web icon' style="width: 30px;" loading="lazy">
<b style="text-decoration: underline;">Horoscope Web App</b>
</p>
<p>A simple Horoscope web app created using HTML, CSS, JavaScript, and aztro API.
<br> Code available in <a href="https://github.com/arwazkhan189/Horoscope-app" target="_blank"
style="color:#fff; text-decoration:underline;" title="Click to see!"><i
class="fa fa-github"></i>Github</a>.
</p>
<div class="card-btn py-2">
<a class="btn btn-outline-secondary" href="https://arwazkhan189.github.io/Horoscope-app/"
target="_blank">Go To</a>
</div>
</div>
</div>
</div>
</div>
<!--card 5 end-->
</div>
<div class="carousel-cell">
<!--card 6 -->
<div class="col py-2" data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="300">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/images/project_image/trpws.png" alt="TRPWS Webite"
style="width:300px;height:300px;" loading="lazy">
<h5>TRPWS Website</h5>
</div>
<div class="flip-card-back">
<p class="py-4" style="opacity: 0.7;"><i class="fa fa-globe" aria-hidden="true"></i> <b
style="text-decoration: underline;">TRPWS Website</b></p>
<p>I created a website using HTML, CSS, JavaScript, Bootstrap, JQuery library, etc... for the TRPWS
Organization.<br> I worked with a team as an Intern here.
<br>Source Code available in <a href="https://github.com/arwazkhan189/trpwsweb" target="_blank"
style="color:#fff; text-decoration:underline;" title="Click to see!"><i
class="fa fa-github"></i>Github</a>.
</p>
<div class="card-btn py-2">
<a class="btn btn-outline-secondary" href="https://arwazkhan189.github.io/trpwsweb/index.html"
target="_blank">Go To</a>
</div>
</div>
</div>
</div>
</div>
<!--card 6 end-->
</div>
<div class="carousel-cell">
<!--card 7 -->
<div class="col py-2 " data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="100">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/images/project_image/SPACE-INVADERS.png" alt="SPACE-INVADERS poster"
style="width:300px;height:300px;" loading="lazy">
<h5>SPACE INVADERS - PC GAME</h5>
</div>
<div class="flip-card-back">
<p class="py-4" style="opacity: 0.7;"><img
src="./assets/images/project_image/space-invaders-icon.png" alt='SPACE INVADERS GAME icon'
style="width: 30px;" loading="lazy"> <b style="text-decoration: underline;">SPACE
INVADERS - PC GAME</b></p>
<p>Space Invaders is a shooting game developed using pygame (python).
<br><br> Source Code available in <a href="https://github.com/arwazkhan189/SPACE-INVADERS"
target="_blank" style="color:#fff; text-decoration:underline;" title="Click to see!"><i
class="fa fa-github"></i>Github</a>.
</p>
<div class="card-btn py-2">
<a class="btn btn-outline-secondary" href="https://arwazkhan189.github.io/SPACE-INVADERS/"
target="_blank">Download the Game</a>
</div>
</div>
</div>
</div>
</div>
<!--card 7 end-->
</div>
<div class="carousel-cell">
<!--card 8 -->
<div class="col py-2 " data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="100">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/images/project_image/YTVD.gif" alt="YTV-Downloader"
style="width:300px;height:300px;" loading="lazy">
<h5>YTV-Downloader</h5>
</div>
<div class="flip-card-back">
<p class="py-2" style="opacity: 0.7;"><img src="./assets/images/project_image/ytvdicon.png"
alt='YTV-Downloader icon' style="width: 30px;" loading="lazy"> <b
style="text-decoration: underline;">YTV-Downloader</b></p>
<p>YTV-Downloader is a Desktop application to download the YouTube videos . <br> Developed using
python modules - tkinter and pytube.
<br><br> Source Code available in <a href="https://github.com/arwazkhan189/YTV-Downloader"
target="_blank" style="color:#fff; text-decoration:underline;" title="Click to see!"><i
class="fa fa-github"></i>Github</a>.
</p>
<div class="card-btn">
<a class="btn btn-outline-secondary"
href="https://github.com/arwazkhan189/YTV-Downloader/blob/main/YTV-Downloder.rar?raw=true">Download
the App</a>
</div>
</div>
</div>
</div>
</div>
<!--card 8 end-->
</div>
<div class="carousel-cell">
<!--card 9 -->
<div class="col py-2 " data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="100">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/images/project_image/foodrunner.png" alt="FoodRunner-Android App"
style="width:300px;height:300px;" loading="lazy">
<h5>FoodRunner Android App</h5>
</div>
<div class="flip-card-back">
<p class="py-2" style="opacity: 0.7;"><img
src="./assets/images/project_image/foodrunner_icon_round.png" alt='foodrunner icon'
style="width: 30px;" loading="lazy"> <b style="text-decoration: underline;">FoodRunner-Android
App</b></p>
<p>FoodRunner Android App is a basic Food Ordering app like zomato , swiggy, etc.
This app is developed using android studio and Kotlin.
<br><br> Source Code available in <a href="https://github.com/arwazkhan189/FoodRunner-AndroidApp"
target="_blank" style="color:#fff; text-decoration:underline;" title="Click to see!"><i
class="fa fa-github"></i>Github</a>.
</p>
<div class="card-btn">
<a class="btn btn-outline-secondary"
href="https://github.com/arwazkhan189/FoodRunner-AndroidApp/blob/master/app/release/app-release.apk?raw=true">Download
the App</a>
</div>
</div>
</div>
</div>
</div>
<!--card 9 end-->
</div>
<div class="carousel-cell">
<!--card 10 -->
<div class="col py-2 " data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="100">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/images/project_image/hostelmate.png" alt="HostelMate-Android App"
style="width:300px;height:300px;" loading="lazy">
<h5>HostelMate Android App</h5>
</div>
<div class="flip-card-back">
<p class="py-2" style="opacity: 0.7;"><img src="./assets/images/project_image/hostelmateicon.png"
alt='HostelMate icon' style="width: 30px;" loading="lazy"> <b
style="text-decoration: underline;">HostelMate-Android App</b></p>
<p>HostelMate - A Need For Hosteler (An Android App that helps students to find the best resource
like hostels and tiffin centers etc.)
<br><br> Source Code available in <a href="https://github.com/arwazkhan189/HostelMate"
target="_blank" style="color:#fff; text-decoration:underline;" title="Click to see!"><i
class="fa fa-github"></i>Github</a>.
</p>
<div class="card-btn">
<a class="btn btn-outline-secondary"
onclick='swal({title: "HostelMate apk downloading...",text: "Some features not working at this time. I am working on it.😊",icon: "success"});'
href="https://github.com/arwazkhan189/HostelMate/raw/master/app/release/app-release.apk">Download
the App</a>
</div>
</div>
</div>
</div>
</div>
<!--card 10 end-->
</div>
<div class="carousel-cell">
<!--card 11 -->
<div class="col py-2 " data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="100">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/images/project_image/edroomlogo.png" alt="EdRoom-Android App"
style="width:300px;height:300px;" loading="lazy">
<h5>EdRoom Android App</h5>
</div>
<div class="flip-card-back">
<p class="py-2" style="opacity: 0.7;"><img src="./assets/images/project_image/edroomlogo.png"
alt='EdRoom icon' style="width: 30px;" loading="lazy"> <b
style="text-decoration: underline;">EdRoom-Android
App</b></p>
<p>EdRoom is an educational platform that provides functionalities like Attendance, Doubt Resolve
facility, Notice Board and Resources like Course, Study Materials etc...
<br><br> Source Code available in
<a href="https://github.com/arwazkhan189/EdRoom" target="_blank"
style="color:#fff; text-decoration:underline;" title="Click to see!"><i
class="fa fa-github"></i>Github</a>.
</p>
<div class="card-btn">
<a class="btn btn-outline-secondary" target="_blank"
href="https://arwazkhan189.github.io/EdRoom/">Download
the App</a>
</div>
</div>
</div>
</div>
</div>
<!--card 11 end-->
</div>
<div class="carousel-cell">
<!--card 12 -->
<div class="col py-2 " data-aos="zoom-in-up" data-aos-easing="ease-in-sine" data-aos-delay="100">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/images/project_image/abgec.jpg" alt="ABGEC-Website"
style="width:300px;height:300px;" loading="lazy">
<h5>ABGEC-Website</h5>
</div>
<div class="flip-card-back">
<p class="py-2" style="opacity: 0.7;"><img src="./assets/images/project_image/abgecicon.png"
alt='ABGEC icon' style="width: 30px;" loading="lazy"> <b
style="text-decoration: underline;">ABGEC-Website</b></p>
<p>This website is made for the Alumni’s organization of our college for many purpose like