-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
921 lines (889 loc) · 37.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/assets/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/assets/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/assets/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="/assets/favicon/site.webmanifest" />
<link
rel="mask-icon"
href="/assets/favicon/safari-pinned-tab.svg"
color="#5bbad5"
/>
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Reddy | Portfolio</title>
</head>
<body class="light-theme">
<div class="experience">
<canvas class="experience-canvas"></canvas>
</div>
<!-- Pre Loader Stuff -->
<!-- .preloader>.preloader-wrapper>.loading -->
<div class="preloader">
<div class="preloader-wrapper">
<div class="loading">
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
</div>
</div>
</div>
<div class="page" asscroll-container>
<div class="toggle-bar">
<div class="sun-wrapper">
<svg xmlns="http://www.w3.org/2000/svg" height="24" width="24">
<path
fill="currentColor"
d="M11 5V1h2v4Zm6.65 2.75-1.375-1.375 2.8-2.875 1.4 1.425ZM19 13v-2h4v2Zm-8 10v-4h2v4ZM6.35 7.7 3.5 4.925l1.425-1.4L7.75 6.35Zm12.7 12.8-2.775-2.875 1.35-1.35 2.85 2.75ZM1 13v-2h4v2Zm3.925 7.5-1.4-1.425 2.8-2.8.725.675.725.7ZM12 18q-2.5 0-4.25-1.75T6 12q0-2.5 1.75-4.25T12 6q2.5 0 4.25 1.75T18 12q0 2.5-1.75 4.25T12 18Zm0-2q1.65 0 2.825-1.175Q16 13.65 16 12q0-1.65-1.175-2.825Q13.65 8 12 8q-1.65 0-2.825 1.175Q8 10.35 8 12q0 1.65 1.175 2.825Q10.35 16 12 16Zm0-4Z"
/>
</svg>
</div>
<button class="toggle-button">
<div class="toggle-circle"></div>
</button>
<div class="moon-wrapper">
<svg xmlns="http://www.w3.org/2000/svg" height="24" width="24">
<path
fill="currentColor"
d="M12 21q-3.75 0-6.375-2.625T3 12q0-3.75 2.625-6.375T12 3q.35 0 .688.025.337.025.662.075-1.025.725-1.637 1.887Q11.1 6.15 11.1 7.5q0 2.25 1.575 3.825Q14.25 12.9 16.5 12.9q1.375 0 2.525-.613 1.15-.612 1.875-1.637.05.325.075.662Q21 11.65 21 12q0 3.75-2.625 6.375T12 21Zm0-2q2.2 0 3.95-1.212 1.75-1.213 2.55-3.163-.5.125-1 .2-.5.075-1 .075-3.075 0-5.238-2.162Q9.1 10.575 9.1 7.5q0-.5.075-1t.2-1q-1.95.8-3.162 2.55Q5 9.8 5 12q0 2.9 2.05 4.95Q9.1 19 12 19Zm-.25-6.75Z"
/>
</svg>
</div>
</div>
<div class="page-wrapper" asscroll>
<section class="hero">
<div class="hero-wrapper">
<!----- Intro Stuff ----->
<div class="intro-text">Welcome to Reddy's portfolio!</div>
<div class="arrow-svg-wrapper">
<svg xmlns="http://www.w3.org/2000/svg" height="24" width="24">
<path
fill="currentColor"
d="M12 14.95q-.2 0-.375-.063-.175-.062-.325-.212L6.675 10.05q-.275-.275-.262-.688.012-.412.287-.687.275-.275.7-.275.425 0 .7.275l3.9 3.9 3.925-3.925q.275-.275.688-.263.412.013.687.288.275.275.275.7 0 .425-.275.7l-4.6 4.6q-.15.15-.325.212-.175.063-.375.063Z"
/>
</svg>
</div>
<div class="hero-main">
<h1 class="hero-main-title">Harshavardhan Reddy</h1>
<p class="hero-main-description">
Software Developer | Computer Science Student
</p>
</div>
<div class="hero-second">
<p class="hero-second-subheading first-sub">R e d d y ' s</p>
<p class="hero-second-subheading second-sub">P o r t f o l i o</p>
</div>
<!-- <div class="hero-second">
<p class="hero-second-subheading first-sub">Bonjour!</p>
<p class="hero-second-subheading second-sub">Guten Tag!</p>
</div> -->
</div>
</section>
<div class="first-move section-margin"></div>
<section class="first-section section left">
<!-- <div class="progress-wrapper progress-bar-wrapper-left">
<div class="progress-bar"></div>
</div> -->
<div class="section-intro-wrapper">
<h1 class="section-title">
<span class="section-title-text">About Me</span>
<div class="section-title-decoration styleOne"></div>
<div class="section-title-decoration styleTwo"></div>
<div class="section-title-decoration styleThree"></div>
</h1>
<span class="section-number">01</span>
</div>
<div class="section-detail-wrapper">
<div class="about-intro">
<h3>
Reddy is a student passionate about Technology and an undergrad
from the National Institute of Technology, Rourkela, India, in
the field of Computer Science Engineering. He enjoys developing
Technology and applications which are accessible worldwide.
<div class="break">
He has a demonstrated history of working in non-profit
organizations. Being passionate about open-source software
made him grow a keen interest in the development and
problem-solving since his Freshman year. Currently, his pivot
is to develop industry-standard and performant code.
</div>
</h3>
<a href="mailto:[email protected]"
><i class="fa-solid fa-paper-plane"></i
>
</div>
<div class="about-tabs">
<button type="button" class="tab-item active" data-target="#what">
<i class="fa-solid fa-user practicum-icon"></i>
Myself
</button>
<button type="button" class="tab-item" data-target="#education">
<i class="fa-solid fa-building-columns practicum-icon"></i>
Education
</button>
<button
type="button"
class="tab-item"
data-target="#achievements"
>
<i class="fa-solid fa-trophy practicum-icon"></i> Achievements
</button>
</div>
<!------- What I do Section ------->
<div class="tab-content active" id="what">
<div class="timeline-item">
<h3>Development</h3>
<p>
Reddy is captivated by web and app development. Moreover, he
is riveted by blockchain technology and how we could ply web
3.0 by creating a decentralized ecosystem. He genuinely enjoys
trying and checking out new technologies and developing
practical applications.
</p>
</div>
<div class="timeline-item">
<h3>Community Management</h3>
<p>
Reddy was always fond of people; he has been part of various
NGOs, Organizations, and Communities since high school. A few
of them being the Offical Student Media body of his
University, TEDx, Auth0, AngelHacks, and Toastmasters
International. He has led and conducted various workshops
besides hosting multiple events.
</p>
</div>
<!-- <div class="timeline-item">
<h3>Blogging</h3>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit.
Optio veniam ex accusamus fugiat praesentium omnis blanditiis
natus nulla voluptates architecto, nisi nobis amet ducimus.
Quisquam pariatur vitae inventore molestiae architecto.
</p>
</div> -->
<div class="timeline-item">
<h3>Cars</h3>
<p>
Reddy's love for cars began at a very young age. He fell for
the cold starts, and it hurts him whenever the skid plate
scratches from bumps. He loves to race and most certainly win
them. He fasziniert F1 cars and loves to challenge his friends
in go-karts. His dream cars are GTR R35 and a Buggati Chiron.
</p>
</div>
</div>
<!------- Education Section ------->
<div class="tab-content" id="education">
<div class="timeline">
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
2020 - 2024</span
>
<h3>National Institute of Technology, Rourkela</h3>
<p>
Pre-Final year undergrad pursuing a Bachelor of Technology,
majoring in Computer Science Engineering and minoring in
Electronics and Communication Engineering.
</p>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
2012 - 2019</span
>
<h3>International Indian School, Al - Jubail</h3>
<p>
Qualified Scholastic Aptitude Test - Subject, with a perfect
score of 2400 / 2400 administered by the College Board for
my further studies.
</p>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
2007 - 2011</span
>
<h3>International Indian School, Al - Jubail</h3>
</div>
</div>
</div>
<!------- Achievements Section ------->
<div class="tab-content" id="achievements">
<div class="timeline">
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
March 2022</span
>
<h3>Postman Student Expert</h3>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
Oct 2021</span
>
<h3>
30 Days Google Cloud Program - <span>All Tracks</span>
</h3>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
Oct 2021</span
>
<h3>Mind It Challenge - <span>Finalist</span></h3>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
Sept 2021</span
>
<h3>Learn to Earn Cloud Challenge</h3>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
July 2021</span
>
<h3>Flipkart Grid 3.0 - <span>2nd Round Runner Ups</span></h3>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
April 2021</span
>
<h3>Winner at Table Topic contest by Toastmasters</h3>
</div>
</div>
</div>
<a href="./Resume.pdf" target="_blank" class="resume button">
R E S U M E
<!-- <link
rel="icon"
type="image/png"
sizes="32x32"
href="/assets/favicon/favicon-32x32.png"
/> -->
</a>
</div>
</section>
<div class="second-move section-margin"></div>
<section class="second-section section right">
<!-- <div class="progress-wrapper progress-bar-wrapper-right">
<div class="progress-bar"></div>
</div> -->
<div class="section-intro-wrapper">
<h1 class="section-title">
<span class="section-title-text">Practicum</span>
<div class="section-title-decoration styleOne"></div>
<div class="section-title-decoration styleTwo"></div>
<div class="section-title-decoration styleThree"></div>
</h1>
<span class="section-number">02</span>
</div>
<div class="section-detail-wrapper">
<h1 class="section-subtitle">Mein Personal Journey</h1>
<div class="tab-titles">
<button
type="button"
class="tab-item active"
data-target="#experience"
>
<i class="fa-solid fa-briefcase practicum-icon"></i>
Experience
</button>
<button type="button" class="tab-item" data-target="#community">
<i class="fa-solid fa-people-group practicum-icon"></i>
Community
</button>
<button
type="button"
class="tab-item"
data-target="#extracurricular"
>
<i class="fa-solid fa-clipboard practicum-icon"></i>
Extracurricular
</button>
</div>
<!------- Experience Section ------->
<div class="tab-content active" id="experience">
<div class="timeline">
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
Sept 2022 - Present</span
>
<h3>Web Developer - <span>The Sparks Foundation</span></h3>
<!-- <p>
The sparks foundation is working to bring parity in
education, ensuring children have an equal opportunity at
success, irrespective of their financial background.
</p> -->
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
Aug 2021 - Present</span
>
<h3>Technical Team - <span>TedXNITRourkela</span></h3>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
April 2021 - Present</span
>
<h3>Technical Team - <span>Monday Morning</span></h3>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
March 2022 - Oct 2022</span
>
<h3>Technical Team Lead - <span>HackOdisha</span></h3>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
July 2022 - Sept 2022</span
>
<h3>Web Developer - <span>Uplers</span></h3>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
Aug 2022 - Sept 2022</span
>
<h3>Business Development Intern - <span>ScarBluu</span></h3>
</div>
</div>
</div>
<!------- Community Section ------->
<div class="tab-content" id="community">
<div class="timeline">
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
Aug 2021 - Present</span
>
<h3>Ambassador - <span>Auth0</span></h3>
<!-- <p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit.
Optio veniam ex accusamus fugiat praesentium omnis
blanditiis natus nulla voluptates architecto, nisi nobis
amet ducimus. Quisquam pariatur vitae inventore molestiae
architecto.
</p> -->
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
Jan 2021 - Present</span
>
<h3>Influencer - <span>Google Crowdsource</span></h3>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
March 2022 - Present</span
>
<h3>Technical Team - <span>Developers Circle</span></h3>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
Jan 2022 - Present</span
>
<h3>Student Educate - <span>AWS</span></h3>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
Oct 2021 - Present</span
>
<h3>Campus Ambassador - <span>AngelHack</span></h3>
</div>
</div>
</div>
<!------- Extracurricular Section ------->
<div class="tab-content" id="extracurricular">
<div class="timeline">
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
April 2022 - Present</span
>
<h3>Technical Team Manager - <span>Webwiz</span></h3>
<!-- <p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit.
Optio veniam ex accusamus fugiat praesentium omnis
blanditiis natus nulla voluptates architecto, nisi nobis
amet ducimus. Quisquam pariatur vitae inventore molestiae
architecto.
</p> -->
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
Jan 2021 - Present</span
>
<h3>Vice President - <span>Toastmasters Int</span></h3>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
March 2022 - April 2022</span
>
<h3>Event Coordinator - <span>INNOVISION’21</span></h3>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
Feb 2022 - March 2022</span
>
<h3>Campus Ambassador - <span> HackOwasp 4.0 MLH</span></h3>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
Dec 2020 - Present</span
>
<h3>Management Team Lead - <span>Hourglass</span></h3>
</div>
<div class="timeline-item">
<span class="date"
><i
class="fa-solid fa-calendar-days practicum-calender"
></i>
Dec 2020 - March 2021</span
>
<h3>
Student Volunteer - <span>National Service Scheme</span>
</h3>
</div>
</div>
</div>
</div>
</section>
<div class="third-move section-margin"></div>
<section class="third-section section left">
<!-- <div class="progress-wrapper progress-bar-wrapper-left">
<div class="progress-bar"></div>
</div> -->
<div class="section-intro-wrapper">
<h1 class="section-title">
<span class="section-title-text">Projects</span>
<div class="section-title-decoration styleOne"></div>
<div class="section-title-decoration styleTwo"></div>
<div class="section-title-decoration styleThree"></div>
</h1>
<span class="section-number">03</span>
</div>
<div class="cards">
<div class="container">
<div class="card">
<div class="left">
<h3>News</h3>
<div class="imgBx">
<img src="./assets/Monday Morning.png" />
</div>
<div class="contentBx">
<h2>Monday Morning</h2>
<div class="content">
<span
>Student media body of NIT ROURKELA. Incorporated
Content Management System, Authentication & push
notifications for secure & seamless UX using Next.js,
Apollo-Client, Cloudflare, Google Analytics.
</span>
</div>
<div class="links">
<a
href="https://github.com/Monday-Morning"
target="_blank"
>Github</a
>
<a
href="https://mondaymorning.nitrkl.ac.in/"
target="_blank"
>Live site</a
>
</div>
</div>
</div>
</div>
<div class="card">
<div class="right">
<h3>Talks</h3>
<div class="imgBx">
<img src="./assets/TEDx.png" />
</div>
<div class="contentBx">
<h2>Ted X</h2>
<div class="content">
<span
>The official website of TEDxNITRourkela. Including an
in built Ticketing system Merchandise store using
Instamojo. It garnered over 20000+ views during the
event owing to exceptional performance & SEO
</span>
</div>
<div class="links">
<a
href="https://github.com/tedxnitrourkela/website-v2"
target="_blank"
>Github</a
>
<a href="https://tedxnitrourkela.com/" target="_blank"
>Live site</a
>
</div>
</div>
</div>
</div>
<div class="card">
<div class="left">
<h3>Words</h3>
<div class="imgBx">
<img src="./assets/Tex Sum.png" />
</div>
<div class="contentBx">
<h2>Tex Sum</h2>
<div class="content">
<span
>Dynamic Website using Machine Learning GPT-3 to
Summarize Text with an accuracy of 75%. Including an
dedicated URL section to summarize websites React,
Flask, Heruko, URL APIs, LibreTranslate API
</span>
</div>
<div class="links">
<a
href="https://github.com/itsgreddy/TexSum"
target="_blank"
>Github</a
>
<!-- <a href="#">Live site</a> -->
</div>
</div>
</div>
</div>
<div class="card">
<div class="right">
<h3>Gaurd</h3>
<div class="imgBx">
<img src="./assets/Convo Care.png" />
</div>
<div class="contentBx">
<h2>Convo Care</h2>
<div class="content">
<span
>PWA using LSTM Sentimental analysis model with 70%
accuracy. Semi-monitored privacy-controlled portal for
mental health analysis. Predicts anxiety or depression &
connects with appropriate counseling services.
</span>
</div>
<div class="links">
<a
href="https://github.com/itsgreddy/ConvoCare"
target="_blank"
>Github</a
>
<!-- <a href="#">Live site</a> -->
</div>
</div>
</div>
</div>
<div class="card">
<div class="left">
<h3>Save</h3>
<div class="imgBx">
<img src="./assets/Decode Apocalypse.png" />
</div>
<div class="contentBx">
<h2>Decode Apocalypse</h2>
<div class="content">
<span
>A Cyclone predicting website, built in integration of
Tinkercad software. Incorporated MAPS and helpline
services with TMP36 degree sensors.
</span>
</div>
<div class="links">
<a
href="https://github.com/itsgreddy/Decode-Apocalypse"
target="_blank"
>Github</a
>
<!-- <a href="#">Live site</a> -->
</div>
</div>
</div>
</div>
<div class="card">
<div class="right">
<h3>Cloud</h3>
<div class="imgBx">
<img src="./assets/Block Drop.png" />
</div>
<div class="contentBx">
<h2>Block Drop</h2>
<div class="content">
<span
>Decentralized Image backup application. Storing Image
collection as NFTs on Polygon chain Technologies Using:
Solidity, IPFS, DJango, JavaScript, HTML/CSS, Polygon,
Filecoin
</span>
</div>
<div class="links">
<!-- <a href="">Coming Soon</a> -->
<a>Coming Soon</a>
<!-- <a href="#">Github</a>
<a href="#">Live site</a> -->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="forth-move section-margin"></div>
<section class="forth-section section right">
<!-- <div class="progress-wrapper progress-bar-wrapper-right">
<div class="progress-bar"></div>
</div> -->
<div class="section-intro-wrapper">
<h1 class="section-title">
<span class="section-title-text">Blogs</span>
<div class="section-title-decoration styleOne"></div>
<div class="section-title-decoration styleTwo"></div>
<div class="section-title-decoration styleThree"></div>
</h1>
<span class="section-number">04</span>
</div>
<div class="section-detail-wrapper">
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<lottie-player
src="./assets/comingsoon.json"
background="transparent"
speed="1"
style="width: 500; height: 500"
loop
autoplay
></lottie-player>
<h1>Coming Soon. Stay tuned!</h1>
</div>
</section>
<div class="fifth-move section-margin"></div>
<section class="fifth-section section left">
<!-- <div class="progress-wrapper progress-bar-wrapper-left">
<div class="progress-bar"></div>
</div> -->
<div class="section-intro-wrapper">
<h1 class="section-title">
<span class="section-title-text">Contact Me</span>
<div class="section-title-decoration styleOne"></div>
<div class="section-title-decoration styleTwo"></div>
<div class="section-title-decoration styleThree"></div>
</h1>
<span class="section-number">05</span>
</div>
<div class="section-detail-wrapper">
<div class="contact">
<div class="contact-left">
<div class="social-icons" id="contact">
<a href="https://github.com/itsgreddy" target="_blank"
><i class="fa-brands fa-github"></i
></a>
<a
href="https://www.linkedin.com/in/harshavardhan-reddy18/"
target="_blank"
><i class="fa-brands fa-linkedin"></i
></a>
<a href="https://www.instagram.com/itsgreddy/" target="_blank"
><i class="fa-brands fa-instagram"></i
></a>
<a href="https://twitter.com/Itsgreddy" target="_blank"
><i class="fa-brands fa-square-twitter"></i
></a>
<a
href="https://www.facebook.com/harshavardhanreddy.gajarla"
target="_blank"
><i class="fa-brands fa-facebook"></i
></a>
</div>
<span id="connect"
>Drop me a line for work inquiries!<i
class="fa-solid fa-pen-nib"
></i
></span>
<form name="submit-to-google-sheet">
<input
type="text"
name="Name"
placeholder="Your Name"
required
/>
<input
type="email"
name="Email"
placeholder="Your Mail"
required
/>
<textarea
name="Message"
placeholder="Your Message"
required
></textarea>
<button type="submit" class="button">S E N D</button>
</form>
<span id="sent"></span>
</div>
</div>
</div>
</section>
<div class="sixth-move section-margin"></div>
<section class="sixth-section section right">
<!-- <div class="progress-wrapper progress-bar-wrapper-right">
<div class="progress-bar"></div>
</div> -->
<div class="section-intro-wrapper">
<h1 class="section-title">
<span class="section-title-text">Hasta La Vista</span>
<div class="section-title-decoration styleOne"></div>
<div class="section-title-decoration styleTwo"></div>
<div class="section-title-decoration styleThree"></div>
</h1>
<span class="section-number">06</span>
</div>
<div class="section-detail-wrapper">
<div class="goodbye">
<div class="byemsg">
Thank you for watching until the end.
<i class="fa-solid fa-face-laugh-beam"></i>
<div>
It would mean a lot If this site left an impression on you.
</div>
</div>
<div class="copywrite">© 2022 Itsgreddy</div>
</div>
</div>
</section>
<!-- <section class="sixth-section section right brown-background">
<section class="sixth-section section right">
<div class="progress-wrapper progress-bar-wrapper-right">
<div class="progress-bar cream-background"></div>
</div>
<div class="section-intro-wrapper cream-text cream-border">
<h1 class="section-title cream-text cream-border">
<span class="section-title-text cream-text">Hasta La Vista</span>
<div class="section-title-decoration styleOne cream-border"></div>
<div class="section-title-decoration styleTwo cream-border"></div>
<div
class="section-title-decoration styleThree cream-background cream-border"
></div>
</h1>
<span class="section-number cream-text">06</span>
</div> -->
</div>
</div>
<script type="module" src="/main.js"></script>
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]"></script> -->
<script>
const scriptURL =
"https://script.google.com/macros/s/AKfycby7kx8K1a4xpdSbRXOhJzkmHIGjwXtfN-68vwUtwGZmEfUiCvu1pwbYJTAhhvb_Cydp/exec";
const form = document.forms["submit-to-google-sheet"];
const sent = document.getElementById("sent");
form.addEventListener("submit", (e) => {
e.preventDefault();
fetch(scriptURL, { method: "POST", body: new FormData(form) })
// .then((response) => console.log("Success!", response))
.then((response) => {
sent.innerHTML = "Message sent successfully!"; // This message will be shown after clicking send
setTimeout(function () {
sent.innerHTML = "";
}, 3000); // After 3000 ms or 3s the message will be removed
form.reset(); // This is to reset the form input field
})
.catch((error) => console.error("Error!", error.message));
});
</script>
</body>
</html>