-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1113 lines (1026 loc) · 60.6 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 name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<link rel="stylesheet" href="style.css">
<body>
<script src="script.js" defer></script>
<script src=" https://smtpjs.com/v3/smtp.js" defer></script>
<script>
function sendEmain(e){
// e.preventDefault();
Email.send({
Host : "smtp.elasticemail.com",
Username : "krishanavasudevy@gmail.com",
Password : "94C32EA7FB900116F3E049477CEC3D804317",
To : 'gamesraja24@gmail.com',
From : "krishanavasudevy@gmail.com",
Subject : "This is the subject",
Body : "And this is the body"
}).then(
message => alert(message)
)
}
</script>
<header class=" text-white body-font bg-color ">
<div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center">
<a class="flex title-font font-medium items-center text-white mb-4 md:mb-0">
<img src="./images/Untitled design (1).png" alt="" width="50px" style="border-radius: 12px;">
<span class="ml-3 text-3xl">Himanshu Narware</span>
</a>
<nav class="md:ml-auto flex flex-wrap items-center text-base justify-center" id="sidemenu">
<a class="mr-5 hover:text-gray-500 text-xl hover:underline duration-1000" href="#home">Home</a>
<a class="mr-5 hover:text-gray-500 text-xl hover:underline duration-1000" href="#about">About</a>
<a class="mr-5 hover:text-gray-500 duration-1000 text-xl hover:underline" href="#experience">Experience</a>
<a class="mr-5 duration-1000 hover:text-gray-500 text-xl hover:underline" href="#project">Projects</a>
<a class="mr-5 duration-1000 hover:text-gray-500 text-xl hover:underline" href="#blogs">Blogs</a>
<a class="mr-5 duration-1000 hover:text-gray-500 text-xl hover:underline" href="#contact">Contact</a>
</nav>
</div>
</header>
<!-- Home section -->
<header>
<div class="home" id="home">
<h3 class="text-white mt-16 text-4xl font-medium">BTech Student</h3>
<span class=" text-white mt-5 text-5xl font-semibold "> I am
<span id="autoType" style="color: rgb(72, 20, 121);font-size: larger; font-style:normal;"></span>
</span>
<p class=" text-white mt-4 text-6xl font-semibold " > I am <span style="color: rgb(72, 20, 121);font-size: larger; font-style:normal;"> Himanshu Narware</span></p>
<h3 class="text-white mt-5 text-3xl font-medium">GDSC Lead'23||Blockchain|| Robotics || Space Tech
</h3>
<h3 class="text-white mt-3 text-3xl font-medium"> MERN STACK || JAVA || Open Source ||Frontend ||Backend</h3>
</div>
</header>
<!-- home second part -->
<section class="text-gray-400 body-font">
<div class="container mx-auto flex px-5 py-24 md:flex-row flex-col items-center">
<div class="lg:max-w-lg lg:w-full md:w-1/2 w-5/6 mb-10 md:mb-0">
<!-- <img class="object-cover object-center rounded" alt="hero" src="https://dummyimage.com/720x600"> -->
<img class="object-cover -mt-40 rounded-full object-center rounded main-image" alt="hero" src="./images/Untitled design (1).jpg">
</div>
<div id="about"
class="lg:flex-grow md:w-1/2 lg:pl-24 md:pl-16 flex flex-col md:items-start md:text-left items-center text-center">
<h1 class="title-font sm:text-6xl text-5xl mb-4 font-medium text-white">About Me
</h1>
<p class="mb-8 leading-relaxed" style="text-align: justify;">I am a final-year B.Tech student at Radharaman Institute of Technology and
science.
Along with my academic pursuits, I am a front-end developer with a keen interest in open-source
software and technology in general.
<br><br> I enjoy keeping up with the latest trends and am constantly seeking ways
to expand my knowledge and skills. My passion for technology is matched by my strong drive to succeed in my
chosen field, and I am always looking for opportunities to develop and apply my skills.
<br><br>
I am an enthusiastic team player who enjoys collaborating with others to solve problems and achieve common
goals.With my strong work ethic and dedication to excellence, I am confident that I will make a positive
impact in any role or project I take on.
</p>
<div class=" education-wrapper justify-center">
<button
class=" education-btn inline-flex text-white bg-indigo-500 border-0 py-2 px-6 focus:outline-none hover:bg-indigo-600 rounded text-lg" id="edu-btn">Education</button>
<div class="education-section">
<h2>College: Radharaman Institute Of Technology and Science</h2>
<h3>CGPA: 8.2</h3>
<H3>Year: 4th</H3>
<h3>2024(expected)</h3>
</div>
</div>
</div>
</div>
</section>
<!-- experiece section -->
<section id="experience" class="text-gray-600 body-font">
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-wrap w-full mb-20 flex-col items-center text-center">
<div class="sm:text-3xl text-2xl font-medium title-font mb-2 text-white">Experiece's</div>
<p class="lg:w-1/2 w-full leading-relaxed text-gray-300">
Internships. || Open-Source. || Hackthones. </p>
</div>
<div class="flex flex-wrap -m-4">
<div class=" xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="./images/Expericence/New-Google-Logo-497x500.webp" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">GDSC'23</h2>
<p class="leading-relaxed text-base text-gray-400">
Google Student Developer Club Lead 2023
</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " >
<ul>
<li>Developed essential skills in event planning, marketing, leadership, communication, and mentorship through
activeparticipation in the GDSC program.
</li>
<li> Strengthened team building and leadership abilities by spearheading engaging workshops and projects.</li>
<li> Established a thriving community of over 620+ students, fostering collaboration, and learning.</li>
</ul>
</div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class="xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="./images/Expericence/1_ol4DsFzVUSQbU_ylofx3yg.webp" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">KWoc'23</h2>
<p class="leading-relaxed text-base text-gray-400">Kharagpur Winter of Code 2023.</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>Selected as Mentor: Successfully chosen as a mentor for Kharagpur Winter of Code.</li>
<li>Appointed as a mentor under the banner of DevLabs, showcasing recognition and trust from an esteemed organization in the tech industry.</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class="xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="./images/Expericence/swoc.png" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">Swoc'23</h2>
<p class="leading-relaxed text-base text-gray-400">Campus Ambassador.</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>Campus Ambassador: Appointed as a Campus Ambassador for Social Winter of Code.</li>
<li>Organized Bootcamps: Successfully coordinated and conducted informative bootcamps, enlightening participants about open source principles, fostering a collaborative coding culture.</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class="xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="./images/Expericence/admin.png" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">Swoc'23</h2>
<p class="leading-relaxed text-base text-gray-400">Mentor.</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>Mentor Selection: Recognized and selected as a mentor for Social Winter of Code, demonstrating expertise and commitment to guiding participants in meaningful open source projects.</li>
<li>Commitment to Open Source: Acknowledged for a strong commitment to the principles of open source development, playing a key role in nurturing the next generation of contributors and fostering a collaborative coding community.</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class="xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="./images/Expericence/mentor.png" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">SWoc'23</h2>
<p class="leading-relaxed text-base text-gray-400">Project Admin.</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>Project Admin Selection: Successfully appointed as a Project Admin for Social Winter of Code, showcasing leadership skills and a commitment to overseeing and coordinating project-related activities.</li>
<li>Mentor Coordination: Played a key role in coordinating and collaborating with mentors to ensure a smooth and productive mentoring process for participants, contributing to the overall success of the Social Winter of Code program.</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class="xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="./images/Expericence/24pullrequests.webp" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">24 Request</h2>
<p class="leading-relaxed text-base text-gray-400">24 Request.</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>Contributor Recognition: Acknowledged as a contributor to Mozilla Firefox by successfully working on 24 pull requests, demonstrating a consistent and impactful commitment to the improvement of the browser's user interface.</li>
<li>Continuous Contribution: Demonstrated a sustained dedication to open source development by consistently engaging with Mozilla Firefox projects, contributing code, and actively participating in the collaborative improvement of one of the world's leading web browsers.</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class="hidden flex-wrap" id="hide">
<div class=" xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="./images/Expericence/OpenCode23.png" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">OpenCode'23</h2>
<p class="leading-relaxed text-base text-gray-400">OpenCode'23.</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>Contributor Selection: Successfully selected as a contributor for Opencode23, highlighting expertise and commitment to actively participate in open source projects.
</li>
<li>Project Involvement: Actively engaged in contributing to Opencode23 projects, demonstrating a hands-on approach to problem-solving and collaborating with the open-source community.</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class=" xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="./images/Expericence/FdV0t-nUcAA5jK-.jfif" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">Slop 3.0</h2>
<p class="leading-relaxed text-base text-gray-400">Slop 3.0.</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>Mentored and guided over 30 active contributors within a thriving open-source community.
</li>
<li>● Successfully managed a GitHub repository with 55+ forks 50+ Pull requests 30+ stars, demonstrating the project's impact.</li>
<li> ● Actively participated in Hacktoberfest, encouraging open-source contributions and community growth</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class=" xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="./images/Expericence/Hacktomber.png" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">Hacktoberfest'23</h2>
<p class="leading-relaxed text-base text-gray-400">Hacktoberfest Maintanner.</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>Maintainer Role: Serving as a maintainer for Hacktoberfest, overseeing and managing the open-source contributions, showcasing leadership and organizational skills in handling the influx of pull requests.</li>
<li>Extensive Contributions: Accepted and reviewed over 50 pull requests from contributors during Hacktoberfest, reflecting a commitment to fostering a collaborative environment and encouraging active participation.</li>
<li>Issue Management: Raised and managed 65+ relevant and impactful issues, providing contributors with clear guidance and opportunities for meaningful engagement in the open-source community.</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class=" xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="./images/Expericence/Hacktoberfest_2023_Trees.webp" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">Hacktoberfest'23</h2>
<p class="leading-relaxed text-base text-gray-400">Contributor.</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>Contributor Recognition: Successfully selected as a contributor at Hacktoberfest23, demonstrating active participation and meaningful contributions to open-source projects during the event.</li>
<li>Completion Achievement: Accomplished the goals set during Hacktoberfest23, contributing to the success of the event and showcasing dedication to the open-source community.</li>
<li>Environmental Impact: Honored with a name tree plantation in Tanzania as a recognition for contributions, symbolizing a positive impact not only in the digital realm but also in environmental conservation efforts.</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class=" xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="./images/Expericence/hacksquade.png" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">Hacksquade</h2>
<p class="leading-relaxed text-base text-gray-400">Contributor.</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>Contributor Selection: Successfully chosen as a contributor at Hacksquad, showcasing expertise and commitment to contribute actively to open-source initiatives.</li>
<li>Team Building: Established and led a team within Hacksquad, demonstrating leadership skills in coordinating efforts and fostering collaboration among team members.</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class=" xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="./images/Expericence/letsGrowMore.png" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">letsGrowMore</h2>
<p class="leading-relaxed text-base text-gray-400">Web Developer.</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>Internship Experience: Completed a comprehensive internship at LetGrowMore as a web developer, gaining hands-on experience in various aspects of web development.</li>
<li>Internship Experience: Completed a comprehensive internship at LetGrowMore as a web developer, gaining hands-on experience in various aspects of web development.</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class=" xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="./images/Expericence/internshala.png" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">Internshala</h2>
<p class="leading-relaxed text-base text-gray-400">Insternshala Student Program.</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>Internshala Student Partner Selection: Successfully selected as an Internshala Student Partner, demonstrating leadership qualities, communication skills, and a commitment to promoting opportunities for fellow students.</li>
<li>Contribution to Student Growth: Played a vital role in contributing to the professional growth and development of peers by facilitating awareness about internships, workshops, and other educational resources provided by Internshala.</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class=" xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="./images/Expericence/Gssoc.png" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">Gssoc'23</h2>
<p class="leading-relaxed text-base text-gray-400">Girls Script Summer Of Code'23.</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>Selected as Contributor:Created over 100 high-quality pull requests, showcasing strong coding and collaboration skills within diverse projects.
</li>
<li> ● Generated and managed more than 330 issues, fostering proactive communication and problem-solving within
theopen-source community</li>
<li> ● Forked and contributed to 70+ repositories, displaying an eagerness to learn, adapt, and work across a wide range
of codebases</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class=" xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="./images/Expericence/devTown.png" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">devTown</h2>
<p class="leading-relaxed text-base text-gray-400">Campus Ambassador.</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>Campus Ambassador Selection: Successfully chosen as a Campus Ambassador at DevTown, showcasing leadership skills, communication abilities, and a strong connection with the student community.</li>
<li>Building Community Connections: Established and nurtured connections with students, creating a vibrant community within the campus, and contributing to the growth and visibility of DevTown.</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class=" xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="./images/Expericence/fossasia.webp" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">FOSSASIA</h2>
<p class="leading-relaxed text-base text-gray-400">FOSSASIA.</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>Contributor Recognition: Successfully selected as a contributor for FOSSASIA, showcasing skills and dedication to contributing actively to open-source projects within the FOSSASIA community.</li>
<li>Open Source Contributions: Actively engaged in contributing code, documentation, or other valuable assets to FOSSASIA projects, demonstrating a commitment to the principles of open source development.</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class=" xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="via.placeholder.com/50X50" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">InternShip Name</h2>
<p class="leading-relaxed text-base text-gray-400">Internships Description</p><div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>data</li>
<li>data</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
<div class=" xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-200 p-6 rounded-lg">
<div
class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 mb-4">
<img src="via.placeholder.com/50X50" alt="" srcset="">
</div>
<h2 class="text-lg text-gray-100 font-medium title-font mb-2">Internships Name</h2>
<p class="leading-relaxed text-base text-gray-400">InternShip Description.</p>
<div id="boxUl">
<div class="Wrapper-sib child-1-hide " ><ul>
<li>data</li>
<li>data</li>
</ul></div>
<button class="child-2 border morebtn" id="child-2">More..</button>
</div>
</div>
</div>
</div>
</div>
<button
class=" flex mx-auto mt-16 text-white bg-indigo-500 border-0 py-2 px-8 focus:outline-none hover:bg-indigo-600 rounded text-lg relative active-btn" id="hidebtn">More</button>
</div>
</section>
<!-- skill section -->
<section id="skill" class="text-gray-600 body-font">
<div class="container px-5 py-24 mx-auto">
<div class="text-center mb-20">
<h1 class="sm:text-3xl text-2xl font-medium text-center title-font text-gray-100 mb-4 ">--Skills.--</h1>
</div>
<div class="flex flex-wrap -m-4">
<div class="p-4 lg:w-1/4 sm:w-1/2 w-full">
<h2 class="font-medium title-font tracking-widest text-gray-400 mb-4 text-sm text-center sm:text-left">
Languages</h2>
<nav class="flex flex-col sm:items-start sm:text-left text-center items-center -mb-1 space-y-2.5">
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span><t class="borderPurpule skill_text">Java</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span><t class="skill_text">
C++
</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>
<t class="skill_text">
C
</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span><t class="borderGreen skill_text "> Javascipt</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>
<t class="skill_text">
Python
</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>
<t class="skill_text">
Typescript
</t>
</a>
</nav>
</div>
<div class="p-4 lg:w-1/4 sm:w-1/2 w-full">
<h2 class="font-medium title-font tracking-widest text-gray-400 mb-4 text-sm text-center sm:text-left">
Frameworks and Libraries</h2>
<nav class="flex flex-col sm:items-start sm:text-left text-center items-center -mb-1 space-y-2.5">
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span><t class="borderBlue skill_text">React.js</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span><t class="borderGreen skill_text">Node.js</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>
<t class="skill_text">
Express.js
</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span> <t class="borderPurpule skill_text"> MongoDB</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>
<t class="skill_text">
Bootstrap
</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>
<t class="skill_text">
Tailwind Css
</t>
</a>
</nav>
</div>
<div class="p-4 lg:w-1/4 sm:w-1/2 w-full">
<h2 class="font-medium title-font tracking-widest text-gray-400 mb-4 text-sm text-center sm:text-left">Tools
</h2>
<nav class="flex flex-col sm:items-start sm:text-left text-center items-center -mb-1 space-y-2.5">
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span> <t class="borderPurpule skill_text">GITHUB || GIT</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>
<t class="skill_text">
Figma
</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span><t class="borderBlue skill_text ">INSOMNIA</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>
<t class="skill_text">
PHOTOSHOP
</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>
<t class="skill_text">
MS OFFICE
</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>
<t class="skill_text">
Video Editing
</t>
</a>
</nav>
</div>
<div class="p-4 lg:w-1/4 sm:w-1/2 w-full">
<h2 class="font-medium title-font tracking-widest text-gray-400 mb-4 text-sm text-center sm:text-left">Others
</h2>
<nav class="flex flex-col sm:items-start sm:text-left text-center items-center -mb-1 space-y-2.5">
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>
<t class="skill_text">
HTML5
</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>
<t class="skill_text">
CSS3
</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span><t class="borderPink skill_text"> Scss</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>
<t class="skill_text">
NEXT.JS
</t>
</a>
<a>
<span
class="bg-indigo-100 text-indigo-500 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"
class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>
<t class="skill_text">
ANT DESIGN
</t>
</a>
</nav>
</div>
</div>
</div>
</section>
<!-- project section -->
<section id="project" class="text-gray-600 body-font">
<h1 class="text-white text-5xl" style="text-align: center;">Project's</h1>
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-wrap -m-4">
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a class="block relative h-48 rounded overflow-hidden">
<img alt="Open-Source" class="object-cover object-center w-full h-full block devlabs-d"
src="./images/Project/devlabs.png" width="420px " height="260px">
</a>
<div class="mt-4">
<h3 class="text-gray-500 text-xs tracking-widest title-font mb-1">React.js, Javascript, MongoDB, Express.js, Node.js</h3>
<h2 class="text-gray-300 title-font text-lg font-medium">The DevLabs</h2>
<div class="button-flex flex justify-between">
<button class="p-1 hover:text-purple-800"> <a href="https://github.com/HimanshuNarware/Devlabs" target="_blank">GitHubt-Link</a></button>
<button class="p-1 hover:text-purple-800"><a href="www.devlabsstore.tech/" target="_blank">Project-Link</a></button>
</div>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a class="block relative h-48 rounded overflow-hidden">
<img alt="ecommerce" class="object-cover object-center w-full h-full block"
src="./images/Project/amazon-clone.png" width="420px " height="260px">
</a>
<div class="mt-4">
<h3 class="text-gray-500 text-xs tracking-widest title-font mb-1">Javascipt, HTML5, CSS3</h3>
<h2 class="text-gray-300 title-font text-lg font-medium">Amazon-clone</h2>
<div class="button-flex flex justify-between">
<button class="p-1 hover:text-purple-800"><a href="https://github.com/HimanshuNarware/Amazon-clone" target="_blank">GitHubt-Link</a></button>
<button class="p-1 hover:text-purple-800"><a href="amazon-clone-rose-five.vercel.app/" target="_blank">Project-Link</a></button>
</div>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a class="block relative h-48 rounded overflow-hidden">
<img alt="ecommerce" class="object-cover object-center w-full h-full block"
src="./images/Project/DeDanadan_News.png" width="420px " height="260px">
</a>
<div class="mt-4">
<h3 class="text-gray-500 text-xs tracking-widest title-font mb-1">React.js, Javascript, API, ANT DESIGN</h3>
<h2 class="text-gray-300 title-font text-lg font-medium">DeDanadan_News</h2>
<div class="button-flex flex justify-between">
<button class="p-1 hover:text-purple-800"><a href="https://github.com/HimanshuNarware/DeDanaDan_News_App" target="_blank">GitHubt-Link</a></button>
<button class="p-1 hover:text-purple-800"><a href="#" target="_blank">Project-Link</a></button>
</div>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a class="block relative h-48 rounded overflow-hidden">
<img alt="ecommerce" class="object-cover object-center w-full h-full block"
src="./images/Project/Porfolio.png" width="420px " height="260px">
</a>
<div class="mt-4">
<h3 class="text-gray-500 text-xs tracking-widest title-font mb-1">Javascipt, HTML5, CSS3</h3>
<h2 class="text-gray-300 title-font text-lg font-medium">Porfolio</h2>
<div class="button-flex flex justify-between">
<button class="p-1 hover:text-purple-800"><a href="https://github.com/HimanshuNarware/Portfolio" target="_blank">GitHubt-Link</a></button>
<button class="p-1 hover:text-purple-800"><a href="https://himanshu-narware-portfolio.netlify.app/" target="_blank">Project-Link</a></button>
</div>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a class="block relative h-48 rounded overflow-hidden">
<img alt="ecommerce" class="object-cover object-center w-full h-full block"
src="./images/Project/Cz.png" width="420px " height="260px">
</a>
<div class="mt-4">
<h3 class="text-gray-500 text-xs tracking-widest title-font mb-1">React.js, Javascript, MongoDB, Express.js, Node.js</h3>
<h2 class="text-gray-300 title-font text-lg font-medium">The CareerZuction</h2>
<div class="button-flex flex justify-between">
<button class="p-1 hover:text-purple-800"><a href="https://github.com/HimanshuNarware/CareerZunction_Intern" target="_blank">GitHubt-Link</a></button>
<button class="p-1 hover:text-purple-800"><a href="https://career-zunction-intern.vercel.app/" target="_blank">Project-Link</a></button>
</div>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a class="block relative h-48 rounded overflow-hidden">
<img alt="ecommerce" class="object-cover object-center w-full h-full block"
src="./images/Project/Project_hunt.png" width="420px " height="260px">
</a>
<div class="mt-4">
<h3 class="text-gray-500 text-xs tracking-widest title-font mb-1">Javascript, Sass, </h3>
<h2 class="text-gray-300 title-font text-lg font-medium">The Project_hunt</h2>
<div class="button-flex flex justify-between">
<button class="p-1 hover:text-purple-800"><a href="https://github.com/HimanshuNarware/Amazon-clone" target="_blank">GitHubt-Link</a></button>
<button class="p-1 hover:text-purple-800"><a href="amazon-clone-rose-five.vercel.app/" target="_blank">Project-Link</a></button>
</div>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a class="block relative h-48 rounded overflow-hidden">
<img alt="ecommerce" class="object-cover object-center w-full h-full block"
src="./images/Project/social media.webp" width="420px " height="260px">
</a>
<div class="mt-4">
<h3 class="text-gray-500 text-xs tracking-widest title-font mb-1">React.js, Javascript, MongoDB, Express.js, Node.js</h3>
<h2 class="text-gray-300 title-font text-lg font-medium">Comming soon..</h2>
<div class="button-flex flex justify-between">
<button class="p-1 hover:text-purple-800"><a href="#" target="_blank">GitHubt-Link</a></button>
<button class="p-1 hover:text-purple-800"><a href="#" target="_blank">Project-Link</a></button>
</div>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a class="block relative h-48 rounded overflow-hidden">
<img alt="ecommerce" class="object-cover object-center w-full h-full block"
src="./images/Project/Product.webp" width="420px " height="260px">
</a>
<div class="mt-4">
<h3 class="text-gray-500 text-xs tracking-widest title-font mb-1">React.js, Javascript, MongoDB, Express.js, Node.js</h3>
<h2 class="text-gray-300 title-font text-lg font-medium">Comming soon..</h2>
<div class="button-flex flex justify-between">
<button class="p-1 hover:text-purple-800"><a href="#" target="_blank">GitHubt-Link</a></button>
<button class="p-1 hover:text-purple-800"><a href="#" target="_blank">Project-Link</a></button>
</div>
</div>
</div>
</div>
</div>
<button class="flex mx-auto mt-16 text-white bg-indigo-500 border-0 py-2 px-8 focus:outline-none hover:bg-indigo-600 rounded text-lg">
<a href="https://github.com/HimanshuNarware" target="_blank">More Project </a>
</button>
</section>
<!-- blog section -->
<section id="blogs"class="text-gray-600 body-font">
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-col">
<div class="h-1 bg-gray-200 rounded overflow-hidden">
<div class="w-24 h-full bg-indigo-500"></div>
</div>
<div class="flex flex-wrap sm:flex-row flex-col py-6 mb-12">
<h1 class="sm:w-2/5 text-gray-100 font-medium title-font text-2xl mb-2 sm:mb-0 ">BLOGS</h1>
</div>
</div>
<div class="flex flex-wrap sm:-m-4 -mx-4 -mb-10 -mt-4">
<div class="p-4 md:w-1/3 sm:mb-0 mb-6">
<div class="rounded-lg h-64 overflow-hidden">
<img alt="content" class="object-cover object-center h-full w-full" src="./images/blogs/nft.webp" width="1202px" height="503px">
</div>
<h2 class="text-xl font-medium title-font text-gray-400 mt-5">Blockchains And DeFi Techonology ?</h2>
<p class="text-base leading-relaxed mt-2">The blockchain is a decentralized, distributed ledger that is used to store and transfer data and assets in a secure and transparent manner. Web3 refers to the next generation of the internet.</p>
<a class="text-indigo-500 inline-flex items-center mt-3" href="https://resourcegallery.live/blog/Blockchain-And-DeFi-Technology/" target="_blank">
Learn More
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-4 h-4 ml-2" viewBox="0 0 24 24">
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
<div class="p-4 md:w-1/3 sm:mb-0 mb-6">
<div class="rounded-lg h-64 overflow-hidden">
<img alt="content" class="object-cover object-center h-full w-full" src="./images/blogs/ai.webp" width="1202px" height="503px">
</div>
<h2 class="text-xl font-medium title-font text-gray-400 mt-5">Will AI replace humans ?</h2>
<p class="text-base leading-relaxed mt-2">Artificial Intelligence is the latest technology buzz topic thanks to the boom of ChatGPT.</p>
<a class="text-indigo-500 inline-flex items-center mt-3" href="https://resourcegallery.live/blog/will-AI-replace-Humans/" target="_blank">Learn More
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-4 h-4 ml-2" viewBox="0 0 24 24">
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
<div class="p-4 md:w-1/3 sm:mb-0 mb-6">
<div class="rounded-lg h-64 overflow-hidden">
<img alt="content" class="object-cover object-center h-full w-full" src="./images/blogs/sphehon.png" width="1202px" height="503px">
</div>
<h2 class="text-xl font-medium title-font text-gray-400 mt-5">Launch your dApp/app using Spheron CLI</h2>
<p class="text-base leading-relaxed mt-2">The Spheron Protocol provides a complete decentralized answer that simplifies modern web hosting. </p>
<a class="text-indigo-500 inline-flex items-center mt-3" href="https://himanshunarware.hashnode.dev/launch-your-dappapp-using-spheron-cli" target="_blank">Learn More
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-4 h-4 ml-2" viewBox="0 0 24 24">
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
</div>
</section>
<!-- contact section -->
<section class="text-gray-600 body-font relative">
<div class="absolute inset-0 bg-gray-900">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d30774406.220847726!2d60.9820199368804!3d19.685299334437016!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30635ff06b92b791%3A0xd78c4fa1854213a6!2sIndia!5e0!3m2!1sen!2sin!4v1704349629189!5m2!1sen!2sin" width="100%" height="100%" frameborder="0" marginheight="0" marginwidth="0" title="map" scrolling="no" style="filter: grayscale(1) contrast(1.2) opacity(0.4);"></iframe>
</div>
<div class="container px-5 py-24 mx-auto flex">
<div class="lg:w-1/3 md:w-1/2 bg-gray-900 rounded-lg p-8 flex flex-col md:ml-auto w-full mt-10 md:mt-0 relative z-10 shadow-md">
<h2 class="text-gray-900 text-lg mb-1 font-medium title-font">Feedback</h2>
<p class="leading-relaxed mb-5 text-gray-300 text-center">Contact Me</p>
<div class="relative mb-4">
<label for="email" class="leading-7 text-sm text-gray-200">Email</label>
<input type="email" id="email" name="email" class="w-full bg-gray-300 rounded border border-gray-300 focus:border-indigo-500 focus:ring-2 focus:ring-indigo-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out">
</div>
<div class="relative mb-4">
<label for="message" class="leading-7 text-sm text-gray-200">Message</label>
<textarea id="message" name="message" class="w-full bg-gray-300 rounded border border-gray-300 focus:border-indigo-500 focus:ring-2 focus:ring-indigo-200 h-32 text-base outline-none text-gray-700 py-1 px-3 resize-none leading-6 transition-colors duration-200 ease-in-out"></textarea>
</div>
<button class="text-white bg-indigo-500 border-0 py-2 px-6 focus:outline-none hover:bg-indigo-600 rounded text-lg" onclick="sendEmail(); reset(); return false;">Submit</button>
<p class="text-xs text-gray-500 mt-3"> </p>
</div>
</div>
</section>