forked from vansh-goel/My-Name
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1088 lines (1003 loc) · 45.7 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>
<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>I was Here</title>
<link rel="apple-touch-icon" sizes="180x180" href="./favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./favicon/favicon-16x16.png" />
<link rel="manifest" href="./favicon/site.webmanifest" />
<!-- BootStrap -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous" />
<!-- CSS Stylesheet -->
<link href="./css/styles.css" rel="stylesheet" type="text/css" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstàtic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Sacramento&display=swap" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
<link href="http://fonts.cdnfonts.com/css/zapfino-extra-lt" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Macondo&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;700&family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a href="index.html" class="hero-anchor"><img src="assets/images/logo.png" alt="a circular voilet color logo" class="hero-img"></a>
<form>
<input type="text" placeholder="Search for your name..." id="name-input" />
<button id="search-btn" class="search-button" onclick="searchcard()">
<img src="./assets/images/search.svg" alt="search">
</button>
</form>
</header>
<!-- Example -->
<div class="Your-Name">
<h1 id="Your-Name">Name was here</h1>
<p class="Your-Name-Para">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quia odit
voluptates veritatis et! Voluptatum reprehenderit illo sit cumque et
ipsam laboriosam rem perspiciatis magnam, a, dolores expedita eveniet
quos rerum.
</p>
<a href="http://twitter.com/your-link" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
</div>
<!-- Vansh-Goel -->
<div class="Vansh-Goel">
<h1 id="Vansh-Goel">Vansh was here</h1>
<p class="Vansh-Goel-Para">
Hello everyone this is Vansh, I am a student who is learning web
development these days, I also know a bit about bash script and I love
photography, apart from that I like reading and learning new things.
Indie Rock is my jam.
</p>
<a href="http://twitter.com/_VanshGoel_" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
</div>
<!-- Maheen-Shaikh -->
<div class="Maheen-Shaikh">
<h1 id="Maheen-Shaikh">Maheen was here</h1>
<p class="Maheen-Shaikh-Para">
Hello everyone! this is Maheen, I am an engineering student. I am learning JavaScript, Web Development and Git.
I like to learn new things and read books.
</p>
<a href="https://github.com/MaheenShaikh7" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="github" /></a>
</div>
<!-- Harshvardhan-Sharma -->
<div class="Harshvardhan-Sharma">
<h1 id="Harshvardhan-Sharma">Harsh was here</h1>
<p class="Harshvardhan-Sharma-Para">
Hello everyone this is Harsh, I am a 1st yr CSE student who is learning
web development and DSA.I love watching anime and reading books.I
recently started reading novels too.
</p>
<div class="socials">
<a href="http://twitter.com/vardhan0604" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/vardhan0604" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<!-- Aditi-Bendre -->
<div class="Aditi-Bendre">
<h1 id="Aditi-Bendre">Aditi was here</h1>
<p class="Aditi-Bendre-Para">
Hi everyone this is Aditi Bendre. I am a 2nd year student of BCA
studying in Manipal University. I have a lot of interest in web
development. I have some knowledge in HTML, CSS and a little in java.
</p>
<a href="https://github.com/AditiBendre" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
<!-- Chirag-Khatri -->
<div class="Chirag-Khatri">
<h1 id="Chirag-Khatri">Chirag was here</h1>
<p class="Chirag-Khatri-Para">
Hi everyone this is Chirag Khatri. I am a High School Passout. I have a
lot of interest in Frontend development. I have some knowledge in HTML,
CSS and a little in java.
</p>
<a href="https://github.com/chiragkhatri19" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
<!-- Lea-Guedj -->
<div class="Lea-Guedj">
<h1 id="Lea-Guedj">Lea was here</h1>
<p class="Lea-Guedj-Para">
Hello everyone, this is Lea. I am a journalist learning how to code. I
love reading novels and cooking but what I love most is walking near the
sea.
</p>
<a href="https://twitter.com/Ieaguedj" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/leaggg" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
<!-- Om-Sarraf -->
<div class="Om-Sarraf">
<h1 id="Om-Sarraf">Om was here</h1>
<p class="Om-Sarraf-Para">
Hi everyone this is Om Sarraf. I am currently in my freshman year
pursuing B-Tech CSE. I am learning Frontend development as of now.
</p>
<div class="socials">
<a href="http://twitter.com/itsOmSarraf_" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/itsOmSarraf" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<!-- Ayush Kanduri -->
<div class="AyushK">
<h1 id="AyushK"><span id="AyushK_span">Ayush Kanduri</span> was here 🚀</h1>
<p class="AyushK-Para">
Hi 👋 I'm <span id="AyushK_span2">Ayush Kanduri</span> A Full-Stack (MERN) Web Developer. I'm a Tech Enthusiast and currently exploring the world of Open Source. I tweet about my Web Development Journey along with the Open Source Contributions. If you see this, then let's Connect. 🌟
</p>
<div class="socials">
<a href="https://twitter.com/Ayush_Codes" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/Ayush-Kanduri" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
<a href="https://www.linkedin.com/in/ayushkanduri" target="_blank"><img class="linkd"
src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png" alt=""></a>
</div>
</div>
<!-- Markus Eicher -->
<section class="Markus-Eicher">
<h1 id="Markus-Eicher">Markus was here</h1>
<p class="Markus-Eicher-Para">
Hi folks, my name is Markus. I'm currently learning to code and building
projects in public. I like contributing to opensource and I'm a hockey
fan and occasionally oil painter. Have a great time and be well!
</p>
<a href="https://twitter.com/MarkusEicher70" target="_blank"><img class="twt" id="mke-twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="The Twitter logo is a black bird" /></a>
<a href="https://github.com/MarkusEicher" target="_blank"><img class="github" id="mke-github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png"
alt="GitHub logo shows a white cat silhouette on black background" /></a>
</section>
<!-- Jayne Elliott -->
<div class="Jayne-Elliott">
<h1 id="Jayne-Elliott">Jayne was here</h1>
<p class="Jayne-Elliott-Para">
Hi, my name is Jayne and I am just starting out in the world of coding.
I also enjoy Formula One and cats.
</p>
<a href="https://github.com/JayneElliott404" target="_blank"><img class="github" id="mke-github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png"
alt="GitHub logo shows a white cat silhouette on black background" /></a>
</div>
<!-- Rachit Ranka -->
<div class="Rachit">
<h1>Rachit was here</h1>
<p class="Rachit-Para">
Hey👋, this is Rachit. I am a 1st year engineering student. Currently, I
am learning about Bootstrap. I love to explore new tech.
</p>
<a href="http://twitter.com/rachit_45" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/rachit-ranka" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
<!-- Aman Mishra -->
<div class="Aman">
<h1 id="Aman">Aman was here</h1>
<p class="Aman-Para">
Hi, I'm Aman Mishra. Currently, I'm learning Web development and I loves
to play to Chess in freetime.
</p>
<div class="socials">
<a href="https://twitter.com/Aman_Mishra_1" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/thisisamanmishra" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<!-- Ishika Ishani -->
<div class="Ishika-Ishani">
<h1 id="Ishika-Ishani">Ishika was here</h1>
<p class="Ishika-Ishani-Para">
Ishika here; I am a student currently learning web programming while
pursuing a Bachelor of Data Science at IIT Madras. Music, poetry,
reading, and travelling are some of my interests. .
</p>
<div class="socials">
<a href="https://twitter.com/siya_1255" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/ishani-1255" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<!-- Dhruvi Thakkar -->
<div class="Dhruvi">
<h1 id="Dhruvi">Dhruvi was here</h1>
<p class="Dhruvi">
Hello everyone, this is Dhruvi. I am currently working on my frontend
skills .
</p>
<a href="https://twitter.com/dhruvicodes" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/dhruvi210" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
<!-- Ishika Garg -->
<div class="Ishika-Garg">
<h1 id="Ishika-Garg">Ishika was here</h1>
<p class="Ishika-Garg-Para">
Hey there! I am first year college student pursuing engineering.
Currently learning Web Development and Linux. My fav pastimes are
reading and watching sci-fi movies. Big fan of Indie music.
</p>
<a href="http://twitter.com/ishi_g03" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
</div>
<!-- Angel Bansal -->
<div class="Angel-Bansal">
<h1 id="Angel-Bansal">Angel was here</h1>
<p class="Angel-Bansal-Para">
Hi everyone my name is Angel Bansal. I am a computer science
undergraduate. I am currently learning react and i love to explore new
tech stacks.
</p>
<div class="socials">
<a href="https://twitter.com/ctrl_zedd" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/abn15" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<!-- Divas -->
<div class="Divas">
<h1 id="Divas">Divas was here</h1>
<p class="Divas-Para">
Hi, my name is Divas. I am a computer science student. I am a tech
enthusiast and currently learning machine learning.
</p>
<div class="socials">
<a href="https://twitter.com/divas_v" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/divasgt" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<div class="Jitesh">
<h1 id="Jitesh"> <span id="jitesh_span">Jitesh</span> was here</h1>
<p class="Jitesh-para">
Hey! I am a third year engineering student. A Fluter enthusiast interested in Frontend Development and learning
Data Structures and Algorithms. Playing Chess, reading, gaming are some of my favorite things to do.
</p>
<div class="socials">
<a href="https://twitter.com/Jitesh_117" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/Jitesh117" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<!-- Mridul Panda -->
<div class="mridul2820">
<h1 id="mridul2820">Mridul was here</h1>
<p class="mridul2820-description">
Hi, I'm Mridul Panda. I'm a front-end developer working on React JS,
Next JS and React Native. I love to explore new tech stuffs everyday and
I'm a Cricket fan.
</p>
<div class="socials">
<a href="https://twitter.com/i_mridul" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/Mridul2820" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<!-- Pooja Shinde -->
<div class="poojaShinde">
<h1 id="poojaShinde">Pooja was here</h1>
<p class="poojaShinde-Para">
Hi, my name is Pooja. I am new to open source.
I currently working on my frontend skills.
</p>
<div class="socials">
<a href="https://twitter.com/poojashindeee" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/PoojaShinde07" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<!-- Shivam Pathak -->
<div class="Shivam-Pathak">
<h1 id="Shivam-Pathak">Keep Calm</h1>
<p class="Shivam-Pathak-Para">Hi, I am starting open-source and feeling very excited to contribute. </p>
<a href="https://www.linkedin.com/in/shivampathak-" target="_blank"><img class="linkd"
src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png" alt=""></a>
<a href="https://twitter.com/Shivam11597284" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt=""></a>
<a href="https://github.com/ShivamPathak99" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt=""></a>
</div>
<!-- Srikar M-->
<div class="SrikarM">
<h1 id="SrikarM">Srikar M</h1>
<p class="Srikar">Hey Srikar here, I am an aspiring FullStack developer. I am a writer and love watching anime. I
look forward to connect with everyone here!</p>
<a href="https://twitter.com/Srikarismad" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt=""></a>
<a href="https://github.com/Srikarmk" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt=""></a>
<a href="https://www.linkedin.com/in/m-srikar/" target="_blank"><img class="linkedin"
src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png" alt=""></a>
</div>
<!-- Tania Banerjee-->
<div class="taniab">
<h1 id="taniaban2712">Tania was here</h1>
<p class="tania">Hello! I am a freshman majoring at Computer Science Engineering. I'm enthusiastic about Web development, Web3, music and badminton.</p>
<div class="socials">
<a href="https://twitter.com/taniaban2712" target="_blank">
<img class="twt" src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="twitter"/>
</a>
<a href="https://github.com/taniaban2712" target="_blank">
<img class="github" src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="github"/>
</a>
</div>
</div>
<!-- Ayush Srivastava -->
<div class="AyushSrivastava">
<h1 id="Ayush-Srivastava">Ayush Srivastava was here</h1>
<p class="Ayush-paragraph">
Hello everyone , I am Ayush Srivastava 3rd year CSE-AI student who is learning
web development and DSA.I love watching cricket and coding.
</p>
<div class="socials">
<a href="http://twitter.com/ayush_11122" target="_blank">
<img
class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png"
alt=""
>
</a>
<a href="https://github.com/klaus0512" target="_blank">
<img
class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png"
alt=""
>
</a>
<a href="https://www.linkedin.com/in/ayush-srivastava-198502219" target="_blank">
<img
class="linkd"
src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png"
alt=""
>
</a>
</div>
</div>
<!-- Harsh-Kapoor -->
<div class="Harsh-Kapoor">
<h1 id="Harsh-Kapoor"><span id="harsh_span">Harsh Kapoor</span> was here</h1>
<p class="Harsh-Kapoor-Para">
Hey everyone this is Harsh Kapoor and I am freshman in Btech CSE, also I am a cybersecurity enthusiast
and want to know more about it.
</p>
<div class="socials">
<a href="https://twitter.com/Harsh_Kapoor03" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/Harsh-Kapoorr" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<!-- hey this is aryan sharma -->
<div class="Aryan-Sharma">
<h1 id="Aryan-Sharma"><span id="Aryan-Sharma_span">Aryan Sharma</span> was here</h1>
<p class="Aryan-Sharma-Para">
Hey everyone, this is Aryan Sharma and I am currently doing Btech in CSE, also I am a tech enthusiast
and want to explore it.
</p>
<div class="socials">
<a href="https://twitter.com/i_AryanSharma17" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/ARYAN-CODES-STAR" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<!-- Shivam Gupta -->
<div class="rawngex01">
<h1 id="rawngex01">Shivam was here</h1>
<p class="rawngex01-description">
Hi, I'm Shivam Gutpa. I'm a front-end developer working on React JS. A Computer Science student who is passionate about Cybersecurity, started with Web Development in this domain.
I am eager to master new skills in Web Development and Cybersecurity.
</p>
<div class="socials">
<a href="https://twitter.com/rawngex01" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/rawnge" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<!-- Agnese -->
<div class="Agnese">
<h1 id="Agnese">Agnese was here</h1>
<p class="AgneseB2">
Good morning y'all, this is my first year studying Computer Science at Padua University in Italy.
I enjoy learning new things and coming up with ideas everyday.
Best greetings from my cat Mollica and me! (。^•ㅅ•^。)
</p>
<div class="socials">
<a href="https://github.com/AgneseB2/" target="_blank"><img class="github" src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<!-- Harsh Kukreja -->
<div class="HarshKukreja">
<h1 id="HarshKukreja">Harsh Kukreja was here</h1>
<p class="harsh25k">
Hey, I am in third year studying Computer Science at BVCOE, New Delhi, India.
I am learning web development and DSA.
</p>
<div class="socials">
<a href="https://www.linkedin.com/in/harsh25kukreja/" target="_blank"><img class="linkd" src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png" alt=""></a>
<a href="https://github.com/harsh-25k" target="_blank"><img class="github" src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<!-- Ayush Soni -->
<div class="AyushSoni">
<h1 id="Ayush-Soni">Ayush Soni was here</h1>
<p>Hey people👋</p>
<p class="Ayush-paragraph">
This is Ayush Soni, a junior-year computer science undergraduate and working as a Software Engineer at Economize. I am a Full Stack Developer, an Microsoft Learn Student Ambassador and a Open Source Enthusiast.
</p>
<div class="socials">
<a href="https://www.linkedin.com/in/ayushsoni1010" target="_blank">
<img
class="linkd"
src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png"
alt="Linkedin"
>
</a>
<a href="https://github.com/ayushsoni1010" target="_blank">
<img
class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png"
alt="GitHub"
>
</a>
<a href="http://twitter.com/ayushsoni1010" target="_blank">
<img
class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png"
alt="Twitter"
>
</a>
</div>
</div>
<!-- Yash Raj -->
<div class="Yashraj">
<h1 id="Yash-raj">Yash was here</h1>
<p class="Yash-Raj-Para">
Hello everyone 👋, this is Yash Raj. will be in my Freshman year in couple of weeks! currently
exploring Tech , Till now i know Java, Html & a few of Python.
</p>
<div class="socials">
<a href="https://twitter.com/Yashrajstwt" target="_blank">
<img class="twt" src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="twitter"/>
</a>
<a href="https://github.com/yash-raj10" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" />
</a>
</div>
</div>
<!-- Ujjwal-Gupta -->
<div class="Ujjwal-Gupta">
<h1 id="Ujjwal-Gupta">Ujjwal was here</h1>
<p class="Ujjwal-Gupta-Para">
Hello everyone this is Ujjwal, I am a student who is learning web
development these days, I also know a bit about bash script and I love
photography, apart from that I like reading and learning new things.
</p>
<a href="https://twitter.com/_ujjwal_gupta_" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
</div>
<!-- Jyotika -->
<div class="Jyotika">
<h1 id="Jyotika">Jyotika was here</h1>
<p class="Jyotika-Para">
Hello everyone, this is Jyotika. I'm a first year student exploring different tech fields.
I am currently learning web development and I enjoy contributing to open source. Best wishes everyone
and happy hacking.
</p>
<a href="https://github.com/jyotika6221" target="_blank"> <img class="github" src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
<!-- prashant raj -->
<div class="raj">
<h1 id="raj-heading">Prashant Raj was here</h1>
<p class="raj-maurya">
Hello everyone , I have just completed Diploma in CSE.I am following the path of FullStack web developer. <br> I love to code .
</p>
<div class="socials">
<a href="http://twitter.com/rajmaurya_dev" target="_blank">
<img
class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png"
alt=""
>
</a>
<a href="https://github.com/gitrajmaurya" target="_blank">
<img
class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png"
alt=""
>
</a>
<a href="https://www.linkedin.com/in/prashant-raj-maurya" target="_blank">
<img
class="linkd"
src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png"
alt=""
>
</a>
</div>
</div>
<!-- Rishabh Dhawad Start -->
<div class="Rishabh">
<h1 id="rishabh">Rishabh Dhawad was here</h1>
<p class="Rishabh">
Hlo everyone 👋, this is Rishabh Dhawad. I am currently a 3rd Year student! , I know Java ,Python ,C ,Cpp ,Javascript, R. I am also a Open Source Enthusiast.
</p>
<div class="socials">
<a href="https://twitter.com/RishabhDhawad" target="_blank">
<img class="twt" src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="twitter"/>
</a>
<a href="https://github.com/RishabhDhawad" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" />
</a>
</div>
</div>
<!-- Rishabh Dhawad End -->
<!-- Surarapu Vagdevi -->
<div class="Surarapu Vagdevi">
<h1 id="Surarapu Vagdevi">Hello..👋 Vagdevi was here</h1>
<p class="Vagdevi">
This is Vagdevi,I am starting open-source and feeling very excited to contribute.
</p>
<div class="socials">
<a href="https://www.linkedin.com/in/vagdevi-s-211311229" target="_blank">
<img
class="linkd"
src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png"
alt="Linkedin"
>
</a>
<a href="https://github.com/Vagdevi007" target="_blank">
<img
class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png"
alt="GitHub"
>
</a>
</div>
</div>
<!-- Surarapu Vagdevi End -->
<!-- Saran Sinha -->
<div class="saran">
<h1 id="saran-here">Hello.....Saran here !</h1>
<p class="Ayush-paragraph">
Hello everyone, I am Saran Sinha, a student. Currently I am learning web dev and DSA. Hoping for networking with you all. Good Luck Everyone!!
</p>
<div class="socials">
<a href="https://twitter.com/tweetsarann" target="_blank">
<img
class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png"
alt=""
>
</a>
<a href="https://github.com/saran1522" target="_blank">
<img
class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png"
alt=""
>
</a>
<a href="https://www.linkedin.com/in/saran-sinha-4456671ba/" target="_blank">
<img
class="linkd"
src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png"
alt=""
>
</a>
</div>
</div>
<!-- Piyush Yadav -->
<div class="piyush">
<h1 id="piyush-here">Hello.....Piyush was here !</h1>
<p class="Piyush-paragraph">
Hello everyone, I am Piyush Yadav, a student. Currently I am learning web dev and DSA. Hoping for networking with you all. Good Luck Everyone!!
</p>
<div class="socials">
<a href="https://twitter.com/Piyushy00994495" target="_blank">
<img
class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png"
alt=""
>
</a>
<a href="https://github.com/lanslord11" target="_blank">
<img
class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png"
alt=""
>
</a>
<a href="https://www.linkedin.com/in/piyush-yadav-078338204/" target="_blank">
<img
class="linkd"
src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png"
alt=""
>
</a>
</div>
</div>
<div class="SujalSamai">
<h1 id="Sujal-Samai">Sujal Samai was here</h1>
<p>Hello Everyone!!👋</p>
<p class="Sujal-paragraph">
I am Sujal Samai, a pre-final year computer science undergraduate. I am a Frontend Web Developer, and an Open Source Enthusiast. Currently I'm learning ReactJS and trying to network and learn from as many people as I can.
</p>
<div class="socials">
<a href="https://www.linkedin.com/in/sujal-samai" target="_blank">
<img
class="linkd"
src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png"
alt="Linkedin"
>
</a>
<a href="https://github.com/sujasamai" target="_blank">
<img
class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png"
alt="GitHub"
>
</a>
<a href="http://twitter.com/SujalSamai" target="_blank">
<img
class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png"
alt="Twitter"
>
</a>
</div>
</div>
<!-- Gilang-Kharisma -->
<div class="Gilang-Kharisma">
<h1 id="Gilang-Kharisma">Gilang was here</h1>
<p class="Gilang-Kharisma-Para">
Assalamualaikum warahmatullahi wabaokratuh
introduce me, I'm Gilang from Indonesia, I like Linux and I'm learning web programming
</p>
<a href="http://twitter.com/lalumuhammadgk1" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
</div>
<!-- Akhilesh-Waghmare -->
<div class="Akhilesh-Waghmare">
<h1 id="Akhilesh-Waghmare">Harsh was here</h1>
<p class="Akhilesh-Waghmare-Para">
Hello everyone this is Akhilesh, I am a BCA student who is learning
web development and DSA. I love reading books and watching movies. Exploring the world of open-source now.
</p>
<div class="socials">
<a href="https://twitter.com/the_akhilesh_w" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://twitter.com/the_akhilesh_w" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<!-- Alit Indrawan -->
<div class="alit">
<h1 id="alit-here">Alit was here !</h1>
<p class="Ayush-paragraph">
Hello everyone, I am Alit Indrawan, Currently I am working as Software Engineer and a Laravel Enthusiast. Good Luck Everyone!!
</p>
<div class="socials">
<a href="https://github.com/Alitindrawan24" target="_blank">
<img class="github" src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="">
</a>
<a href="https://www.linkedin.com/in/alitindrawan24/" target="_blank">
<img class="linkd" src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png" alt="">
</a>
</div>
</div>
<!-- Robin Singh -->
<div class="Robin-Singh">
<h1 id="Robin-Singh">Robin was here</h1>
<p class="Robin-Singh-Para">
Hi, my name is Robin. I am a 2nd year student pursuing Bachelor's degree in IT. I am new to open source.
I am currently working on my frontend skills. I love to meet and interact with people.
</p>
<div class="socials">
<a href="https://twitter.com/robxnsingh" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/robxnsingh" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<!-- Atharva Mogade -->
<div class="atharvamogade-conainter">
<h1 id="atharvamogade-h1">Atharva Mogade</h1>
<p class="atharvamogade-p">
Hello everyone this is Atharva Mogade, a Fronend Web Developer. I am also interested in learning UIUX Designing and my hobbies Playing guitar, photography and gaming.
</p>
<a href="http://twitter.com/atharvamogade" target="_blank"><img class="twt" src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
</div>
<!-- Antony Prince -->
<div class="AntonyPrince">
<h1 id="Antony-Prince">Antony Prince was here</h1>
<p class="Antony-paragraph">
I am Antony Prince, a blockchain enthusiast and data engineer starting my journey in the world of open source.
</p>
<div class="socials">
<a href="https://www.linkedin.com/in/antoprince001" target="_blank">
<img class="linkd" src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png" alt="Linkedin">
</a>
<a href="https://github.com/antoprince001" target="_blank">
<img class="github" src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png"alt="GitHub">
</a>
</div>
</div>
<!-- Jiganesh Patil -->
<div class="Jiganesh-Patil">
<h1 id="Jiganesh-Patil">Jiganesh Patil was here !</h1>
<p class="Jiganesh-Patil-Para">
Hello Everyone, This is Jiganesh Patil. I am a Mechanical Graduate and currently working as a Developer.</br>
I love working with topics related to DataStructure and Algorithms. Let's Connect and Code !!
</p>
<div class="socials">
<a href="https://twitter.com/PatilJiganesh" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/Jiganesh" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
<a href="https://www.linkedin.com/in/jiganesh/" target="_blank"><img class="linkd"
src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png" alt=""></a>
</div>
</div>
<!-- Priyank Patil -->
<div class="Priyank-Patil">
<h1 id="Priyank-Patil">Priyank Patil was here !</h1>
<p class="Priyank-Patil-Para">
Hi, Myself Priyank Patil I am huge opensource enthusiast.Interested in everything related to web
</p>
<div class="socials">
<a href="https://twitter.com/de_priyank" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/priyank003" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
<a href="https://www.linkedin.com/in/priyank-p-83b000122/" target="_blank"><img class="linkd"
src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png" alt=""></a>
</div>
</div>
<!-- Agrim Sharma -->
<div class="Agrim-Sharma">
<h1 id="Agrim-Sharma">Agrim Was Here</h1>
<p class="Agrim-Sharma-Para">A developer from heart, who is trying to make a difference in the world of programming. </p>
<a href="https://github.com/agrim-sharma174" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt=""></a>
</div>
<!-- Amandeep Singh Start -->
<div class="Amandeeps">
<h1 id="Amandeep">Amandeep Was Here!</h1>
<p class="Amandeep-Para">A passionate CS student who loves to develop be it Android Applications or Websites</p>
<a href="https://github.com/Amandeep404" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt=""></a>
</div>
<!-- Amrutanshu Jena -->
<div class="Amrutanhu-jena">
<h1 id="Amrutanhu-jena">Amrutanshu Is Here</h1>
<p class="Amrutanhu-jena-about"> A programmer | open-source enthusiast | Software Engineer </p>
<section class="about">
<button class="btn">
<a href="https://github.com/ajamru" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt=""></a>
</button>
<button class="btn">
<a href="https://twitter.com/AmrutanshuJena" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
</button>
</section>
</div>
<!-- Divya Aggarwal -->
<div class="Divya-Aggarwal">
<h1 id="Divya-Aggarwal">Divya was here</h1>
<p class="Divya-Aggarwal-Para">
Hi, my name is Divya and I am a college student.
I am intrested in coding and designing.
</p>
<a href="https://github.com/divya520357" target="_blank"><img class="github" id="mke-github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png"
alt="GitHub logo shows a white cat silhouette on black background" /></a>
</div>
<!-- Harshita Gupta -->
<div class="HarshitaGupta">
<h1 id="HarshitaGupta">Harshita Gupta was here</h1>
<p class="harshita2432">
Hey, I am in third year studying Computer Science at BVCOE, New Delhi, India.
I am learning web development and DSA.
</p>
<div class="socials">
<a href="https://www.linkedin.com/in/harshita-gupta-335525208/" target="_blank"><img class="linkd" src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png" alt=""></a>
<a href="https://github.com/Harshitagupta324" target="_blank"><img class="github" src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
</div>
</div>
<!-- Pooja Sharma-->
<div class="Pooja-Sharma">
<h1 id="Pooja-Sharma">Pooja was here</h1>
<p class="Pooja-Sharma-Para">
Hello everyone, I am Pooja Sharma. I am a student and I am learning web development.
</p>
<div class="socials">
<a href="https://twitter.com/Poojasharma097" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/poojasharma097" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
<a href="https://www.linkedin.com/in/pooja-sharma-a80458222/" target="_blank"><img class="linkd"
src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png" alt=""></a>
</div>
</div>
<!-- Prajwal Somalkar -->
<div class="Prajwal">
<h1 id="Prajwal">Prajwal Somalkar was here !</h1>
<p class="Prajwal">
Hello Everyone, This is Prajwal Somalkar. I am a IT Under Graduate student.</br>
I love working with React ⚛️.
</p>
<div class="socials">
<a href="https://twitter.com/Prajwal__02" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/Prajwal0225" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
<a href="https://www.linkedin.com/in/prajwal-somalkar-7a72b1202/" target="_blank"><img class="linkd"
src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png" alt=""></a>
</div>
</div>
<!-- Saloni Dwivedi Start -->
<div class="Saloni">
<h1 id="saloni">Saloni Dwivedi was also here!</h1>
<p class="Saloni">
Hi 👋, I'm Saloni Dwivedi. I am currently a 3rd Year student! , I know Python ,C ,Cpp and Javascript. I love UI/UX designing and also write some cute pieces.
</p>
<div class="socials">
<a href="https://twitter.com/Layzmaxx" target="_blank">
<img class="twt" src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="twitter"/>
</a>
<a href="https://github.com/Saloni098" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" />
</a>
</div>
</div>
<!-- Saloni Dwivedi End -->
<!-- Kavan Gondalia -->
<div class="kavandiv">
<h1 id="kavanName">Kavan Gondalia was here</h1>
<p class="kavanp">
Ohayo Minasan, I am a passionate developer and always ready to learn new things.
Ping me anytime if you need help.
</p>
<div class="socials">
<a href="https://twitter.com/kavania2002" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/kavania2002" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
<a href="https://www.linkedin.com/in/kavania2002" target="_blank"><img class="linkd"
src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png" alt=""></a>
</div>
</div>
<!--Veeresh Tadkal Start-->
<div class="Veeresh">
<h1 class="VeereshHeading">Veeresh was here ⚒</h1>
<p class="VeereshParagraph">Iam a tech enthusiast and currently exploring the world of Open Source ☺</p>
</div>
<!--Veeresh Tadkal End-->
<!-- SachXD -->
<div class="SachXD">
<h1 id="SachXD">Ananth was here!</h1>
<p class="SachXD">
Hey all, My name is Ananth.Im currently a freshman at SCTCE doing my Bachelors in Electronics
and Communication Engineering.Rust Programmer by the end of the day!
</p>
<div class="socials">
<a href="https://twitter.com/aanxand" target="_blank"><img class="twt"
src="https://cdn-icons-png.flaticon.com/512/3128/3128212.png" alt="" /></a>
<a href="https://github.com/sachxd" target="_blank"><img class="github"
src="https://cdn-icons-png.flaticon.com/512/2111/2111432.png" alt="" /></a>
<a href="https://www.linkedin.com/in/ananth-prathap/" target="_blank"><img class="linkd"
src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png" alt=""></a>
</div>