forked from yesiamrajeev/Hacktoberfest2025-Portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1162 lines (1052 loc) · 41.7 KB
/
index.html
File metadata and controls
1162 lines (1052 loc) · 41.7 KB
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">
<title>Rajeev Kumar Behera - Portfolio</title>
<meta name="description" content="Portfolio of Rajeev Kumar Behera - Android Developer, Web Developer, and Chess Player showcasing projects, achievements, and skills">
<meta name="keywords" content="Rajeev Kumar Behera, Android Developer, Web Developer, Portfolio, Projects, BLE, Image Processing">
<meta name="author" content="Rajeev Kumar Behera">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="theme-color" content="#8742f5">
<!-- Progressive Web App -->
<link rel="manifest" href="./manifest.json">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="RKB Portfolio">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="">
<meta property="og:title" content="Rajeev Kumar Behera - Portfolio">
<meta property="og:description" content="Portfolio showcasing Android and Web Development projects">
<meta property="og:image" content="https://firebasestorage.googleapis.com/v0/b/portfolio-2a7b9.appspot.com/o/profile.png?alt=media&token=c0d8808f-3fbb-4010-80e8-2570579a48df">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="">
<meta property="twitter:title" content="Rajeev Kumar Behera - Portfolio">
<meta property="twitter:description" content="Portfolio showcasing Android and Web Development projects">
<meta property="twitter:image" content="https://firebasestorage.googleapis.com/v0/b/portfolio-2a7b9.appspot.com/o/profile.png?alt=media&token=c0d8808f-3fbb-4010-80e8-2570579a48df">
<link
rel="icon"
href="https://firebasestorage.googleapis.com/v0/b/portfolio-2a7b9.appspot.com/o/unnamed%20(4)-photoaidcom-cropped%20(1).png?alt=media&token=f99212d1-dc96-49fc-892a-70d286447547"
type="image/x-icon"
/>
<link
rel="shortcut icon"
href="https://firebasestorage.googleapis.com/v0/b/portfolio-2a7b9.appspot.com/o/unnamed%20(4)-photoaidcom-cropped%20(1).png?alt=media&token=f99212d1-dc96-49fc-892a-70d286447547"
type="image/x-icon"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="./index.css" />
<link rel="stylesheet" href="./enhancements.css" />
<link rel="stylesheet" href="./enhanced-styles.css" />
</head>
<style>
.cursor {
cursor: row-resize;
}
#btn {
position: relative;
background-color: rgba(210, 55, 55, 0.7);
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
backdrop-filter: blur(15px);
transition: all 0.3s ease;
}
#btn::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: inherit;
filter: blur(10px);
z-index: -1;
}
#btn:hover {
background-color: #0056b3;
transform: scale(1.1);
}
#btn:hover::before {
background-color: rgba(0, 86, 179, 0.7);
}
.image-container-wrapper {
text-align: center;
}
.loading-screen {
position: fixed;
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
transition: opacity 0.5s ease-out;
}
.loading-screen.hidden {
opacity: 0;
pointer-events: none;
}
</style>
<body>
<!-- <div id="loading-screen">
<div class="loader"></div>
</div> -->
<div class="loading-screen" id="loading-screen">
<p style="color: rgb(0, 0, 0); font-size: 24px">Loading...</p>
</div>
<script type="module">
window.addEventListener("load", function () {
var loadingScreen = document.getElementById("loading-screen");
loadingScreen.classList.add("hidden");
setTimeout(function () {
loadingScreen.style.display = "none";
}, 500);
});
</script>
<header id="header" role="banner">
<nav class="container" role="navigation" aria-label="Main navigation">
<a href="#home" class="cursor"
>About</a
>
<a href="#proHead" class="cursor"
>Projects</a
>
<a href="#achivements" class="cursor"
>Achievements</a
>
<a href="#tictac" class="cursor"
>Game</a
>
<a href="#contact" class="cursor"
>Contact</a
>
</nav>
</header>
<section id="home" role="main" aria-labelledby="about-heading">
<div class="content-container">
<div class="text-content">
<h1 id="about-heading">
I am <br />
<a href="https://git.io/typing-svg">
<img
src="https://readme-typing-svg.demolab.com?font=Pixelify+Sans&size=40&pause=1000&color=8742F5&background=1E27DC00&random=false&width=340&lines=Rajeev;Android+Developer+;Web+Developer+;Chess+Player+"
alt="Animated text showing: Rajeev, Android Developer, Web Developer, Chess Player"
loading="lazy"
/>
</a>
</h1>
<p>Hey there! Android Studio is using me!</p>
<p>
I specialize in Android app development, Bluetooth Low Energy (BLE), image processing,
and web development. I enjoy building innovative Android applications, exploring IoT
solutions with BLE, and working on image processing algorithms. Along the way, I’ve had
the chance to showcase my skills through achievements like winning the Symposium 2023 at
ITER and the GeeksforGeeks hackathon at IIIT Bhubaneswar.
</p>
<a
href="https://firebasestorage.googleapis.com/v0/b/portfolio-2a7b9.appspot.com/o/certificates%2FRajeev-kumar-Behera-73.pdf?alt=media&token=56854e39-bc74-4786-8ee8-3c1d9c55b363"
download="Rajeev_Resume.pdf"
>
<button id="btn">Download Resume</button>
</a>
</div>
<div class="image-container-wrapper">
<div class="image-container" id="rightSlideImage">
<img
src="https://firebasestorage.googleapis.com/v0/b/portfolio-2a7b9.appspot.com/o/profile.png?alt=media&token=c0d8808f-3fbb-4010-80e8-2570579a48df"
alt=""
id="uploadedImage"
/>
</div>
<div class="image-text">
<p
style="
color: hsl(0, 0%, 100%);
font-size: 25px;
font-weight: bold;
margin-bottom: 10px;
"
>
Rajeev Kumar Behera<b
style="color: rgb(245, 122, 77); font-size: 28px"
>;</b
>
</p>
<p style="color: #8742f5; font-size: 15px; margin: 0">
Software Developer
</p>
</div>
</div>
</div>
</section>
<section id="proHead">
<p class="sheading">
Projects
<span
style="
position: absolute;
bottom: -10px;
left: 0;
width: 10%;
height: 6px;
background-color: #6c1fe8;
"
></span>
</p>
</section>
<section id="projects" class="project">
<div class="project-container">
<div class="project1">
<a
href="https://github.com/yesiamrajeev/sentenix-proto-1"
target="_blank"
>
<img
src="./imgproject/sentinexpro.png"
class="proimg"
alt="Project Image"
/>
</a>
<div class="project-text1">
<p>Sentinex</p>
</div>
</div>
<div class="project2">
<a
href="https://github.com/yesiamrajeev/FaceDetection_Prototype3"
target="_blank"
>
<img
src="./imgproject/facepro.png"
width="15%"
height="15%"
class="proimg"
alt="Project Image"
/>
</a>
<div class="project-text2">
<p>Face Recognition</p>
</div>
</div>
<!-- <div class="project3">
<a href="https://github.com/example/project2" target="_blank">
<img src="./imgproject/Screenshot 2023-11-29 000733.png" width="15%" height="15%" class="proimg" alt="Project Image">
</a>
<div class="project-text3">
<p>Project3</p>
</div>
</div>
<div class="project4">
<a href="https://github.com/example/project3" target="_blank">
<img src="./imgproject/Screenshot 2023-11-29 000733.png" width="15%" height="15%" class="proimg" alt="Project Image">
</a>
<div class="project-text4">
<p>Project4</p>
</div>
</div> -->
</div>
</section>
<section class="project">
<div class="project-container">
<div class="project3">
<a
href="https://github.com/hacktoberfest-codex/YATRA360"
target="_blank"
>
<img
src="./imgproject/yatra360.png"
width="15%"
height="15%"
class="proimg"
alt="Project Image"
/>
</a>
<div class="project-text3">
<p>Yatra 360</p>
</div>
</div>
<div class="project4">
<a href="https://github.com/yesiamrajeev/BLE-Scanner" target="_blank">
<img
src="./imgproject/scanner2.png"
width="15%"
height="15%"
class="proimg"
alt="Project Image"
/>
</a>
<div class="project-text4">
<p>BLE Scanner</p>
</div>
</div>
</div>
</section>
<section id="achivements" class="hero">
<p class="Aheading">
Achievements
<span
style="
position: absolute;
bottom: -10px;
left: 0;
width: 15%;
height: 6px;
background-color: #6c1fe8;
"
></span>
</p>
<div class="achivements-container">
<div class="a1">
<div class="achievement-card">
<img
src="https://firebasestorage.googleapis.com/v0/b/portfolio-2a7b9.appspot.com/o/symposium1.png?alt=media&token=e22aaa8c-aa1b-42a3-9d29-a7963ab20de9"
style="object-fit: cover"
alt="Project Image"
/>
<div class="text">
<h2>
Symposium 2023 Winner<b
style="color: rgb(245, 122, 77); font-size: 28px"
>;</b
>
</h2>
<p>
We are thankful that our amazing project Yatra 360 won Symposium
2023 at ITER! Our innovative implementation of CBIR and QBE for
indoor navigation systems, complete with advanced 3D image
mapping, has captured the attention of scholars and received top
honors in a stiff competition. <br />
<br />
The 6-hour event demonstrated our commitment, culminating in an
impressive performance that earned us appreciation from the
esteemed faculty, Additional Dean of ITER We are delighted to be
recognized for our hard work and honored to have stood tall in
the top 3 teams in our division!
</p>
</div>
</div>
</div>
<div class="a2">
<div class="achievement-card">
<div class="text">
<h2>
D<sup>3</sup> Fest Hackathon Winner 2023<b
style="color: rgb(245, 122, 77); font-size: 28px"
>;</b
>
</h2>
<p>
"Patrologix" my team, won The Geek O Thon, a 24-hour intense
hackathon by GeeksforGeeks and IIIT Bhubanswar at D3fest 2023!
During our trip, a winning prototype was produced within 24
hours to earn a spot in the final round. The grand finale
allowed us to refine our project presentation skills, and
present our new ideas to esteemed judges. <br />
<br />
Sincere thanks to our teammates Sohan Mohanty, Dharmesh Raj and
Yajy Goswami (aka DevOps God) for playing an important role in our victory. Our
project that empowers communities for security and connectivity.
</p>
</div>
<img
src="https://firebasestorage.googleapis.com/v0/b/portfolio-2a7b9.appspot.com/o/D3fest.jpeg?alt=media&token=7271560b-0049-4a11-b737-2b22ee084fd9"
style="object-fit: cover"
alt="Project Image"
/>
</div>
</div>
<div class="a3">
<div class="achievement-card">
<img
src="https://firebasestorage.googleapis.com/v0/b/portfolio-2a7b9.appspot.com/o/DSC_1434.png?alt=media&token=caf720e5-1577-4a9c-a633-b26d6a8d9369"
style="object-fit: cover"
alt="Project Image"
/>
<div class="text">
<h2>
iFlashers<b style="color: rgb(245, 122, 77); font-size: 28px"
>;</b
>
</h2>
<p>
In this dynamic visualization, iFlashers unveils its
sophisticated indoor navigation service, bypassing the
limitations of traditional GPS and the internet, using Bluetooth
beacons for real-time location tracking When needed yi Executive
Chairman of Startup Odisha Omkar Rai interacts with iFlashers.
As India's former DG of Software Technology Parks and a
technologist, Omkar Rai expresses appreciation, urging the team
to "keep working". <br />
<br />Image Software Products features the passion and
credentials of Omkar Rai, a leading national advocate for
iFlashers. This is a major milestone, where a prominent industry
leader has embraced their vision.
</p>
</div>
</div>
</div>
<div class="a4">
<div class="achievement-card">
<div class="text">
<h2>
InnovateOdisha Hackathon<b
style="color: rgb(245, 122, 77); font-size: 28px"
>;</b
>
</h2>
<p>
Our team participated in the InnovateOdisha Hackathon, organized
by NIT BBSR and Karkhana. It was an incredible experience where
we spent 24 hours non-stop coding and developing our project. We
worked on an indoor navigation app using BLE technology and
received valuable feedback and suggestions for improvement. The
event was a fantastic opportunity to innovate, collaborate, and
showcase our skills.
</p>
</div>
<img
src="https://firebasestorage.googleapis.com/v0/b/portfolio-2a7b9.appspot.com/o/innovateodisha%20(1).jpg?alt=media&token=f19d8274-ae91-41cc-91b7-2aa3c5d93219"
style="object-fit: cover"
alt="Project Image"
/>
</div>
</div>
<div class="a3">
<div class="achievement-card">
<img
src="https://firebasestorage.googleapis.com/v0/b/portfolio-2a7b9.appspot.com/o/WhatsApp%20Image%202024-04-27%20at%2022.43.57_bb70b429.jpg?alt=media&token=d5bbec97-d744-48a2-be95-befacea4b977"
style="object-fit: cover"
alt="Project Image"
/>
<div class="text">
<h2>
SOA Proxima 2024<b
style="color: rgb(245, 122, 77); font-size: 28px"
>;</b
>
</h2>
<p>
Team Patrologix is proud to introduce Sentinex, an innovative
project that was born out of resilience and unity, with the goal
of enhancing community safety. It all started with a triumphant
win at the hackathon hosted by IIIT Bhubaneswar. Since then,
Sentinex has continued to evolve, thanks to platforms like
Vimarsh & Nirman, which have played a crucial role in refining
its impact.
<br />
The support and guidance of Prof. Anukampa Behera, along with
the recognition received at SOA Proxima, have further validated
Sentinex's potential to revolutionize community security. It has
garnered unanimous praise for its ability to make a real
difference in society.
<br />
This journey has been characterized by unwavering perseverance
and well-deserved recognition, which truly exemplify
Patrologix's unwavering commitment to innovation and making a
positive impact on society.
</p>
</div>
</div>
</div>
<!-- <div class="a1">
<div class="a-text1">
<p>We are thankful that our amazing project Yatra 360 won Symposium 2023 at ITER! Our innovative implementation of CBIR and QBE
for indoor navigation systems, complete with advanced 3D image mapping, has captured the attention of scholars and received top
honors in a stiff competition. <br> <br> The 6-hour event demonstrated our commitment, culminating in an impressive performance that
earned us appreciation from the esteemed faculty, Additional Dean of ITER We are delighted to be recognized for our hard work
and honored to have stood tall in the top 3 teams in our division!</p>
</div>
<img src="https://firebasestorage.googleapis.com/v0/b/portfolio-2a7b9.appspot.com/o/symposium1.png?alt=media&token=e22aaa8c-aa1b-42a3-9d29-a7963ab20de9" style="object-fit: cover;" class="proimg2" alt="Project Image">
</div>
<div class="a2">
<img src="https://firebasestorage.googleapis.com/v0/b/portfolio-2a7b9.appspot.com/o/d3.jpg?alt=media&token=d0531982-a19e-40ae-9528-fd4311846f92" width="15%" height="15%" class="proimg3" alt="Project Image">
<div class="a-text2" style="padding-top: 1px;">
<p>"Patrologix" my team, won The Geek O Thon, a 24-hour intense hackathon by GeeksforGeeks and IIIT Bhubanswar at D3fest 2023!
During our trip, a winning prototype was produced within 24 hours to earn a spot in the final round. The grand finale allowed us to
refine our project presentation skills, and present our new ideas to esteemed judges. <br> <br>
Sincere thanks to our teammates Sohan Mohanty, Dharmesh Raj and Yajy Goswami for playing an important role in our victory. Our project that empowers communities for
security and connectivity.</p>
</div>
</div>
<div class="a3">
<div class="a-text3">
<p>In this dynamic visualization, iFlashers unveils its sophisticated indoor navigation service, bypassing the limitations
of traditional GPS and the internet, using Bluetooth beacons for real-time location tracking When needed yi Executive Chairman of Startup
Odisha Omkar Rai interacts with iFlashers. As India's former DG of Software Technology Parks and a technologist, Omkar Rai expresses
appreciation, urging the team to "keep working". <br> <br>Image Software Products features the passion and credentials of Omkar Rai, a leading
national advocate for iFlashers. This is a major milestone, where a prominent industry leader has embraced their vision.</p>
</div>
<img src="https://firebasestorage.googleapis.com/v0/b/portfolio-2a7b9.appspot.com/o/DSC_1434.png?alt=media&token=caf720e5-1577-4a9c-a633-b26d6a8d9369" width="15%" height="15%" class="proimg2" alt="Project Image">
</div>
<div class="a4">
<img src="https://firebasestorage.googleapis.com/v0/b/portfolio-2a7b9.appspot.com/o/innovateodisha%20(1).jpg?alt=media&token=f19d8274-ae91-41cc-91b7-2aa3c5d93219" width="15%" height="15%" class="proimg3" alt="Project Image">
<div class="a-text4">
<p>Description4</p>
</div>
</div> -->
</div>
</section>
<section id="skills">
<div class="card animate-on-scroll">
<img
src="https://www.python.org/static/community_logos/python-logo-generic.svg"
alt="Python Logo"
class="logo"
/>
<h3>Python</h3>
</div>
<div class="card animate-on-scroll">
<img
src="imgproject\AndroidLogo.svg" alt="Android Logo" class="logo"
/>
<h3>Android</h3>
</div>
<div class="card animate-on-scroll">
<img
src="https://firebase.google.com/images/brand-guidelines/logo-vertical.png"
alt="Firebase Logo"
class="logo"
/>
<h3>Firebase</h3>
</div>
<div class="card animate-on-scroll">
<img
src="https://about.gitlab.com/images/press/logo/png/gitlab-icon-rgb.png"
alt="GitLab Logo"
class="logo"
/>
<h3>GitLab</h3>
</div>
<div class="card animate-on-scroll">
<img
src="imgproject\VSCodeLogo.jpeg" alt="Visual Studio Code Logo"
class="logo"
/>
<h3>Visual Studio Code</h3>
</div>
<div class="card animate-on-scroll">
<img
src="imgproject\eclipse_logo.png"
alt="Eclipse Logo"
class="logo"
/>
<h3>Eclipse</h3>
</div>
<div class="card animate-on-scroll">
<img
src="https://cloud.google.com/images/social-icon-google-cloud-1200-630.png"
alt="GCP Logo"
class="logo"
/>
<h3>GCP</h3>
</div>
<div class="card animate-on-scroll">
<img
src="imgproject\FigmaLogo.jpeg" alt="Figma Logo"
class="logo"
/>
<h3>Figma</h3>
</div>
<div class="card animate-on-scroll">
<img
src="imgproject\AndroidSTudio.jpg"
alt="Android Studio Logo"
class="logo"
/>
<h3>Android Studio</h3>
</div>
<div class="card animate-on-scroll">
<img
src="https://cdn.worldvectorlogo.com/logos/nodejs-icon.svg"
alt="Node.js Logo"
class="logo"
/>
<h3>Node.js</h3>
</div>
<div class="card animate-on-scroll">
<img
src="https://cdn.worldvectorlogo.com/logos/java-4.svg"
alt="Java Logo"
class="logo"
/>
<h3>Java</h3>
</div>
<div class="card animate-on-scroll">
<img
src="imgproject\FlaskLogo.jpeg"
alt="Flask Logo"
class="logo"
/>
<h3>Flask</h3>
</div>
<div class="card animate-on-scroll">
<img
src="https://cdn.worldvectorlogo.com/logos/react-2.svg"
alt="React Logo"
class="logo"
/>
<h3>React</h3>
</div>
<div class="card animate-on-scroll">
<img src="imgproject\Kotlin Logo.png" alt="Kotlin Logo" class="logo" />
<h3>Kotlin</h3>
</div>
<div class="card animate-on-scroll">
<img
src="https://cdn.worldvectorlogo.com/logos/github-icon.svg"
alt="GitHub Logo"
class="logo"
/>
<h3>GitHub</h3>
</div>
<div class="card animate-on-scroll">
<img
src="https://cdn.worldvectorlogo.com/logos/c.svg"
alt="C Logo"
class="logo"
/>
<h3>C</h3>
</div>
<div class="card animate-on-scroll">
<img
src="https://cdn.worldvectorlogo.com/logos/c--4.svg"
alt="C++ Logo"
class="logo"
/>
<h3>C++</h3>
</div>
<div class="card animate-on-scroll">
<img
src="imgproject\mysql_logo.png"
alt="MySQL Logo"
class="logo"
/>
<h3>MySQL</h3>
</div>
<div class="card animate-on-scroll">
<img
src="https://cdn.worldvectorlogo.com/logos/ubuntu-2.svg"
alt="Ubuntu Logo"
class="logo"
/>
<h3>Ubuntu</h3>
</div>
<div class="card animate-on-scroll">
<img
src="https://cdn.worldvectorlogo.com/logos/bootstrap-4.svg"
alt="Bootstrap Logo"
class="logo"
/>
<h3>Bootstrap</h3>
</div>
<div class="card animate-on-scroll">
<img
src="https://cdn.worldvectorlogo.com/logos/javascript-1.svg"
alt="JavaScript Logo"
class="logo"
/>
<h3>JavaScript</h3>
</div>
<div class="card animate-on-scroll">
<img
src="https://cdn.worldvectorlogo.com/logos/git-icon.svg"
alt="Git Logo"
class="logo"
/>
<h3>Git</h3>
</div>
<div class="card animate-on-scroll">
<img
src="https://cdn.worldvectorlogo.com/logos/html5-2.svg"
alt="HTML Logo"
class="logo"
/>
<h3>HTML</h3>
</div>
<div class="card animate-on-scroll">
<img
src="https://cdn.worldvectorlogo.com/logos/css-3.svg"
alt="CSS Logo"
class="logo"
/>
<h3>CSS</h3>
</div>
</section>
<section>
<div class="tictac-content" id="tictac">
<h1>
Beat me at this<b style="color: rgb(245, 122, 77); font-size: 28px"
>;</b
>
</h1>
<button onclick="startGame()">Start Game</button>
<div class="board" id="board"></div>
<p id="turn-info"></p>
<script src="./index.js"></script>
</div>
</section>
<footer>
<div class="visitor-counter-container">
<div class="visitor-counter">
<div class="counter-header">
<div class="counter-icon"></div>
</div>
<div class="counter-stats">
<div class="stat-item" style="text-align: center;">
<img
src="https://hits.sh/github.com/yesiamrajeev/portfolio.svg?style=flat&label=Total%20Visits&extraCount=0&color=f57a4d&labelColor=5c0a0a"
alt="Visitor Counter"
style="height: 30px; margin-top: 5px;">
</div>
</div>
</div>
</div>
</div>
<section id="contact">
<div class="contact-container">
<div class="contact-header">
<p class="sheading">
Contact Me<b class="semicolon">;</b>
<span
style="
position: absolute;
bottom: -10px;
left: 0;
width: 15%;
height: 6px;
background-color: #6c1fe8;
"
></span>
</p>
<p class="contact-subtitle">
Ready to start your next project? Let's build something amazing
together!
</p>
</div>
<div class="contact-content">
<div class="contact-info">
<div class="info-card">
<div class="info-icon">
<i class="fa fa-envelope"></i>
</div>
<h3>Email Me</h3>
<p>rajeev.220077@gmail.com</p>
</div>
<div class="info-card">
<div class="info-icon">
<i class="fa fa-code"></i>
</div>
<h3>Specialization</h3>
<p>Android & Web Development</p>
</div>
<div class="info-card">
<div class="info-icon">
<i class="fa fa-clock-o"></i>
</div>
<h3>Response Time</h3>
<p>Within 24 hours</p>
</div>
</div>
<div class="contact-form-wrapper">
<div id="contactForm1">
<form action="" id="contactForm">
<div class="alert">
<i class="fa fa-check-circle"></i>
<span>Your message has been sent successfully!</span>
</div>
<div class="success-alert">
<i class="fa fa-check-circle"></i>
<span>Message sent successfully!</span>
</div>
<div class="form-group">
<div class="inputBox">
<input
type="text"
id="name"
name="name"
placeholder=" "
required
minlength="2"
data-validate="name"
aria-label="Full Name"
autocomplete="name" />
<label for="name">Full Name</label>
<span class="input-border"></span>
</div>
</div>
<div class="form-group">
<div class="inputBox">
<input
type="email"
id="emailid"
name="email"
placeholder=" "
required
data-validate="email"
aria-label="Email Address"
autocomplete="email"
/>
<label for="emailid">Email Address</label>
<span class="input-border"></span>
</div>
</div>
<div class="form-group">
<div class="inputBox">
<textarea
id="msgContent"
name="message"
rows="6"
placeholder=" "
required
minlength="10"
data-validate="message"
aria-label="Your Message"
></textarea>
<label for="msgContent">Your Message</label>
<span class="input-border"></span>
</div>
</div>
<div class="form-group">
<button
type="submit"
class="submit-btn"
aria-label="Send Message"
data-ripple="true">
<span class="btn-text">Send Message</span>
<i class="fa fa-paper-plane btn-icon"></i>
<span class="btn-ripple"></span>
</button>
<p class="form-privacy-note">Your information is secure and will never be shared.</p>
</div>
</form>
</div>
</div>
</div>
<div class="social-section">
<h3 class="social-title">Follow Me On</h3>
<div class="social-links">
<a
href="https://www.linkedin.com/in/rajeev-kumar-behera-36403428b/"
class="social-link linkedin"
title="LinkedIn"
>
<i class="fa fa-linkedin"></i>
<span class="social-text">LinkedIn</span>
</a>
<a
href="https://github.com/yesiamrajeev"
class="social-link github"
title="GitHub"
>
<i class="fa fa-github"></i>
<span class="social-text">GitHub</span>
</a>
<a
href="mailto:rajeev.220077@gmail.com"
class="social-link email"
title="Email"
>
<i class="fa fa-envelope"></i>
<span class="social-text">Email</span>
</a>
<a
href="https://www.instagram.com/yes._.i._.am/"
class="social-link instagram"
title="Instagram"
>
<i class="fa fa-instagram"></i>
<span class="social-text">Instagram</span>
</a>
</div>
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/7.14.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.14.1/firebase-database.js"></script>
<script defer>
const firebaseConfig = {
apiKey: "AIzaSyASYIx-1VTxdKXHYBnZA2LLLQFgnrYUya0",
authDomain: "portfolio-2a7b9.firebaseapp.com",
databaseURL: "https://portfolio-2a7b9-default-rtdb.firebaseio.com",
projectId: "portfolio-2a7b9",
storageBucket: "portfolio-2a7b9.appspot.com",
messagingSenderId: "598365410181",
appId: "1:598365410181:web:972b00285c63054b53aaec",
measurementId: "G-L9JJF5KW1C"
};
if (!firebase.apps.length) {
firebase.initializeApp(firebaseConfig);
}
var contactFormDB = firebase.database().ref("contactForm");
document.addEventListener("DOMContentLoaded", function () {
document
.getElementById("contactForm")
.addEventListener("submit", submitForm);
});
function submitForm(e) {
e.preventDefault();
var name = getElementVal("name");
var emailid = getElementVal("emailid");
var msgContent = getElementVal("msgContent");
// Enhanced validation with better error handling
try {
// Validate name
if (!name) {
showFieldError("name", "Please enter your name");
return;
}
// Validate email
if (!emailid) {
showFieldError("emailid", "Please enter your email");
return;
}
// Check if email is valid
const emailPattern = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
if (!emailPattern.test(emailid)) {
showFieldError("emailid", "Please enter a valid email address");
return;
}
// Validate message
if (!msgContent) {
showFieldError("msgContent", "Please enter your message");