-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
824 lines (805 loc) · 31.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/png" href="img/icons8-web-100.png" />
<meta charset="utf-8" />
<meta name="author" content="Hai Nguyen" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hai's Portfolio</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="animation.css" />
<link rel="stylesheet" href="introduction.css" />
<script
src="https://kit.fontawesome.com/b46a93180b.js"
crossorigin="anonymous"
></script>
<script defer src="app.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<!-- Mobile Menu -->
<div id="mobile-menu" class="mobile-menu">
<div class="close-button-container">
<div class="empty"></div>
<img class="mobile-logo" src="img/icons8-web-100.png" />
<button class="close-button" onclick="closeMobileMenu()">X</button>
</div>
<div class="separator-line"></div>
<ul>
<li><a href="#section2">About Me</a></li>
<li><a href="#section3">Education</a></li>
<li><a href="#section4">Projects</a></li>
<li><a href="#section5">Skills</a></li>
<li><a href="#section6">Contact</a></li>
</ul>
<div class="separator-line"></div>
<div class="mobile-footer">
<p>Created by @HaiNg-2023 ©</p>
</div>
</div>
</header>
<div class="container-body" id="blur">
<section class="first-intro" id="section1">
<nav class="navbar">
<input
type="checkbox"
name="check"
id="check"
onclick="toggleMobileMenu()"
/>
<label for="check" class="checkbtn"
> 
<span class="fa-solid fa-bars"></span>
</label>
<label class="logo" id="portfolioLabel">MyPortfolio</label>
<ul>
<li><a href="#section2">About Me</a></li>
<li>
<a href="#section3" style="transition: 0.5s">Education</a>
</li>
<li><a href="#section4" style="transition: 0.5s">Projects</a></li>
<li><a href="#section5" style="transition: 0.5s">Skills</a></li>
<li>
<a href="#section6" style="transition: 0.5s">Contact Me </a>
</li>
</ul>
</nav>
<div class="first-intro_container">
<div class="grid-container">
<div class="intro-image">
<img
class="intro-img"
src="img/25469811_developer_male.jpg"
alt="Your Image Description"
style="mix-blend-mode: multiply"
/>
</div>
<div>
<div class="intro-text">
<h3>Welcome to my personal website</h3>
<h2>
<span class="hello-text">H</span
><span class="hello-text">e</span
><span class="hello-text">l</span
><span class="hello-text">l</span
><span class="hello-text">o</span
><span class="hello-text">,</span> I am
<span class="hello-text">H</span
><span class="hello-text">a</span
><span class="hello-text">i</span>
</h2>
<h4>
Software Engineer - Computer Science Major | UCI 24' ☀️ 🐜📚
</h4>
<p>
I'm a dedicated Software Engineer with a passion for turning
innovative ideas into reality. This website is a reflection of
my work and interests.
</p>
<a href="#section2" style="transition: 0.5s"
><div class="scroll-down-button">
<div class="scroll-down-text">Explore more</div>
<div class="scroll-down-icon"></div></div
></a>
</div>
</div>
</div>
</div>
</section>
<section class="about-me" id="section2">
<div class="hidden">
<h1 style="padding-left: 40px; font-size: 3rem">
01. A little bit about myself
</h1>
<div class="about-content">
<div class="about-text">
<h2>
Hi again, my name is
<span class="about-h2-name">Hai Nguyen</span>
</h2>
<p style="margin-top: 20px">
I am currently a third-year Computer Science major at the
University of California, Irvine. I'm passionate about
technology and the endless possibilities it offers.
</p>
<p>
I believe in the power of innovation and collaboration to drive
change. When I'm not coding, you'll find me traveling
<i class="fa-solid fa-plane"></i> and playing video games
<i class="fa-solid fa-computer"></i>, which provide a creative
balance to my technical pursuits.
</p>
<p>
Explore my portfolio to see some of my projects and get to know
me better. Feel free to explore my portfolio to see some of my
projects and get to know me better. Whether you're a fellow
enthusiast or a potential collaborator, I'm eager to connect and
share ideas.
</p>
<div class="about-me-button">
<div class="chat-button">
<a href="#section6"
>Chat with me <i class="fa-regular fa-comment"></i
></a>
</div>
<div class="resume-button">
<a
href="https://drive.google.com/file/d/1t7YEJ1jK_-D43a1pBbJM2oMWEsa4OUZ-/view?usp=sharing"
target="_blank"
>My Resume <i class="fa-regular fa-file"></i
></a>
</div>
</div>
</div>
<div class="image-container">
<img
class="about-img"
src="img/me and my sis.jpg"
alt="Me and my sister"
/>
</div>
</div>
</div>
</section>
<section class="education" id="section3">
<h1 style="color: #6ea6f3; font-size: 3rem">My education journey</h1>
<div class="education-section">
<ul>
<li class="hidden-left" style="--accent-color: #41516c">
<div class="date">August 2019</div>
<div class="title">Orange Coast College, Costa Mesa, CA</div>
<div class="descr">
My journey began at a small community college, where I find
coding is interesting.
</div>
</li>
<li class="hidden-right" style="--accent-color: #ffa500">
<div class="date">2021</div>
<div class="title">OCC Honors Program</div>
<div class="descr">
I joined the Honors Program, where I had the privilege of
engaging in challenging coursework, collaborating with fellow
high-achieving students, and delving deeper into my academic
pursuits.
</div>
</li>
<li class="hidden-left" style="--accent-color: #e24a68">
<div class="date">May 2022</div>
<div class="title">Associate of Science in Computer Science</div>
<div class="descr">
Having earned my Associate of Science in Computer Science, I am
now equipped with a strong foundation in the field and decide to
transfer to another university to pursue my Bachelor's degree in
the same field.
</div>
</li>
<li class="hidden-right" style="--accent-color: #1b5f8c">
<div class="date">July 2022</div>
<div class="title">Software Engineer Intern at FPT Software</div>
<div class="descr">
After 2 years of pandemic lockdown, I decided to visit my family
and secured an internship at FPT Software one of the biggest
tech company in Vietnam.
</div>
</li>
<li class="hidden-left" style="--accent-color: #4cadad">
<div class="date">2022 - Present</div>
<div class="title">Bachelor of Science in Computer Science</div>
<div class="descr">
After dozens of applications, I have taken the leap to transfer
to the University of California, Irvine with the Honors Program.
</div>
</li>
<li class="hidden-right" style="--accent-color: #fbca3e">
<div class="date">April 2023</div>
<div class="title">1st place in MISSA ITC Pomona</div>
<div class="descr">
I achieved first place in a web app design competition with my
roommate-finding web application
</div>
</li>
<li class="hidden-left" style="--accent-color: #add8e6">
<div class="date">Nov 2023 - Present</div>
<div class="title">Student Assistant @UCI Graduate Division</div>
<div class="descr">
Part-time role as a Student Data Analyst Assistant at UCI
Graduate Division. Used advanced SQL and ETL techniques to
extract, manipulate, and analyze graduate student records in the
MS SQL database.
</div>
</li>
</ul>
</div>
</section>
<section class="my-work" id="section4">
<h1
style="
font-size: 3rem;
font-family: Tahoma, Geneva, Verdana, sans-serif;
color: #0099fa;
text-align: center;
padding-top: 50px;
margin: 0px;
"
>
My Recent Projects..
</h1>
<div class="projects">
<div class="project fade">
<div class="project-details">
<h2>NoiseApp</h2>
<p>
Developed a mobile application dedicated to collecting real-time
surrounding noise data, resulting in a 70% reduction in time and
equipment costs for the UCI Public Health Department's noise
research. Utilizing Flutter, the application captured and
processed real-time data streams, implementing the FFT method to
calculate dBA levels from PCM values. Real-time noise data was
transformed and formatted into optimized CSV files for efficient
on-device storage, minimizing processing overhead. This approach
facilitated seamless upload to AWS S3 cloud storage.
</p>
<ul class="programming-languages">
<h3 style="margin-right: 5px; color: #0099fa">
Technology used:
</h3>
<li>
<img
src="https://devicon-website.vercel.app/api/flutter/original.svg"
/>
</li>
<li>
<img
src="https://devicon-website.vercel.app/api/amazonwebservices/original.svg"
/>
</li>
<li>
<img
src="https://icon.icepanel.io/AWS/svg/Front-End-Web-Mobile/Amplify.svg"
/>
</li>
<li>
<img
src="https://devicon-website.vercel.app/api/dart/original.svg"
/>
</li>
<li>
<img
src="https://devicon-website.vercel.app/api/react/original.svg"
/>
</li>
</ul>
<div class="project-buttons">
<a
href="https://github.com/hthere21/NoiseAppProject"
class="button"
target="_blank"
>Code <i class="fa-solid fa-code"></i
></a>
<a
href="https://www.youtube.com/watch?v=05otTguPt1k"
class="button"
target="_blank"
>Demo <i class="fa-solid fa-video"></i
></a>
</div>
</div>
<div class="project-image">
<img
src="img/Screenshot 2024-01-03 at 11.11.00 PM.png"
alt="Noise App Project"
/>
</div>
</div>
<div
class="divider hidden-left"
style="
width: 98%;
height: 1px;
background-color: #000;
margin: 50px auto;
opacity: 0.8;
transition: 1.2s;
"
></div>
<div class="project fade">
<div class="project-image">
<img
src="img/Screenshot 2023-09-18 at 5.38.03 PM.png"
alt="Project 1"
/>
</div>
<div class="project-details">
<h2>ITC RoomateFinder</h2>
<p>
A web app, built with Angular, assists college students in
finding rental housing. Express.js handles requests, MongoDB
manages data, and Socket.io adds real-time chat. This app
streamlines the housing search, offering a modern solution for
students.
</p>
<ul class="programming-languages">
<h3 style="margin-right: 5px; color: #0099fa">
Technology used:
</h3>
<li>
<img
src="https://devicon-website.vercel.app/api/angularjs/original.svg"
/>
</li>
<li>
<img
src="https://devicon-website.vercel.app/api/express/original.svg"
/>
</li>
<li>
<img
src="https://devicon-website.vercel.app/api/bootstrap/original.svg"
/>
</li>
<li>
<img
src="https://devicon-website.vercel.app/api/mongodb/original.svg"
/>
</li>
</ul>
<div
class="project-buttons"
style="display: flex; justify-content: right"
>
<a
href="https://github.com/hthere21/ITC-23"
class="button"
target="_blank"
>Code <i class="fa-solid fa-code"></i
></a>
<a
href="https://docs.google.com/presentation/d/1HVDswA78s8Ola_1XhF0ZFHWx-1TorueZ091eMcOyPUk/edit?usp=sharing"
class="button"
target="_blank"
>Demo <i class="fa-solid fa-video"></i
></a>
</div>
</div>
</div>
<div
class="divider hidden-right"
style="
width: 98%;
height: 1px;
background-color: #000;
margin: 50px auto;
opacity: 0.8;
transition: 1.2s;
"
></div>
<div class="project fade">
<div class="project-details">
<h2>Fablix Movies</h2>
<p>
Developed a Netflix-inspired web application, leveraging AWS EC2
hosting for secure access. Users can browse movie information
from a MySQL database while benefiting from Google Recaptcha
security and HTTPS encryption. The frontend communicates with a
Tomcat server via Servlets, utilizing jQuery for dynamic content
display
</p>
<ul class="programming-languages">
<h3 style="margin-right: 5px; color: #0099fa">
Technology used:
</h3>
<li>
<img
src="https://devicon-website.vercel.app/api/html5/original.svg"
/>
</li>
<li>
<img
src="https://devicon-website.vercel.app/api/sass/original.svg"
/>
</li>
<li>
<img
src="https://devicon-website.vercel.app/api/javascript/original.svg"
/>
</li>
<li>
<img
src="https://devicon-website.vercel.app/api/mysql/original.svg"
/>
</li>
<li>
<img
src="https://devicon-website.vercel.app/api/tomcat/original.svg"
/>
</li>
<li>
<img
src="https://devicon-website.vercel.app/api/java/original.svg"
/>
</li>
</ul>
<div class="project-buttons">
<a
href="https://youtube.com/playlist?list=PLf07ZzwQou1Wxwo2WaJo8E3epoLKsv4FH&si=RDrkCDFRNo-Y0NKD"
class="button"
target="_blank"
>Demo <i class="fa-solid fa-video"></i
></a>
</div>
</div>
<div class="project-image">
<img
src="img/Screenshot 2023-09-18 at 5.48.34 PM.png"
alt="Fablix Movie Project"
/>
</div>
</div>
<div
class="divider hidden-left"
style="
width: 98%;
height: 1px;
background-color: #000;
margin: 50px auto;
opacity: 0.8;
transition: 1.2s;
"
></div>
<div class="project fade">
<div class="project-image">
<img
src="img/Screenshot 2023-09-18 at 5.39.22 PM.png"
alt="Alternative-Interaction WebApp"
/>
</div>
<div class="project-details">
<h2>Alternative WebApp-Interaction</h2>
<p>
Developed a responsive website enabling users to interact and
rate random photos using hand gestures. The project utilizes the
Handtrack.js library to recognize various hand gestures via the
laptop camera. Additionally, it incorporates a REST API request
to Unsplash for fetching random photos and photographer
information.
</p>
<ul class="programming-languages">
<h3 style="margin-right: 5px; color: #0099fa">
Technology used:
</h3>
<li>
<img
src="https://devicon-website.vercel.app/api/angularjs/original.svg"
/>
</li>
<li>
<img
src="https://devicon-website.vercel.app/api/typescript/original.svg"
/>
</li>
<li>
<img
src="https://uxwing.com/wp-content/themes/uxwing/download/web-app-development/rest-api-icon.png"
/>
</li>
</ul>
<div
class="project-buttons"
style="display: flex; justify-content: right"
>
<a
href="https://github.com/hthere21/AlternativeWebApp"
class="button"
target="_blank"
>Code <i class="fa-solid fa-code"></i
></a>
<a
href="https://youtu.be/5fVAZfXnORM"
class="button"
target="_blank"
>Demo <i class="fa-solid fa-video"></i
></a>
</div>
</div>
</div>
</div>
<div class="center-container">
<button class="center-button">
<a
href="https://github.com/hthere21"
target="_blank"
style="color: beige"
><i class="fa fa-github"></i> Explore more</a
>
</button>
</div>
</section>
<section class="skill" id="section5">
<div class="inner-skill">
<h1 style="text-align: center; color: #6ea6f3; font-size: 3rem">
Crafting workshop <i class="fa-solid fa-screwdriver-wrench"></i>
</h1>
<div class="technical-skill">
<img
class="technical-skill-image"
src="img/PXL_20230921_202829223.jpg"
/>
<div
class="building-computer"
style="
background-color: white;
padding: 10px;
border-radius: 20px;
"
>
<p>
One of my favorite hobbies is building personalized computers. I
remember well the first time I turned on a computer I had
assembled from various pieces; it was like building my own Iron
Man suit. This exhilarating journey has not only deepened my
understanding of how the computer works but has also spark my
enthusiast toward discovering new technology. It's a delightful
experience that infuses my life with both the rush of creating
and the joy of technological exploration. 😊 💻 🚀
</p>
</div>
</div>
<h1
style="
text-align: center;
color: #6ea6f3;
font-size: 3rem;
margin-bottom: 20px;
"
>
<i class="fa-solid fa-terminal"></i> My Technical Skills
</h1>
<div class="skill-section">
<div class="programming-language-card hidden">
<div class="skill-title">
<i class="fa-solid fa-laptop" style="margin-bottom: 5px"></i>
<h2>Front End</h2>
</div>
<div class="programming-language-list">
<div class="programming-language-item">HTML</div>
<div class="programming-language-item">CSS</div>
<div class="programming-language-item">JavaScript</div>
<div class="programming-language-item">TypeScript</div>
<div class="programming-language-item">JQuery</div>
<div class="programming-language-item">Bootstrap</div>
<div class="programming-language-item">Angular</div>
<div class="programming-language-item">React.js</div>
<div class="programming-language-item">Ionic</div>
<div class="programming-language-item">Flutter</div>
</div>
</div>
<div class="programming-language-card hidden">
<div class="skill-title">
<i class="fa-solid fa-server" style="margin-bottom: 5px"></i>
<h2>Back End</h2>
</div>
<div class="programming-language-list">
<div class="programming-language-item">Spring</div>
<div class="programming-language-item">Node.js</div>
<div class="programming-language-item">Express.js</div>
<div class="programming-language-item">Restful APIs</div>
<div class="programming-language-item">MySQL</div>
<div class="programming-language-item">MongoDB</div>
<div class="programming-language-item">Cassandra</div>
<div class="programming-language-item">GraphQL</div>
<div class="programming-language-item">Python Flask</div>
<div class="programming-language-item">Apache Tomcat</div>
</div>
</div>
<div class="programming-language-card hidden">
<div class="skill-title">
<i
class="fa-solid fa-network-wired"
style="margin-bottom: 5px"
></i>
<h2>Others</h2>
</div>
<div class="programming-language-list">
<div class="programming-language-item">C++</div>
<div class="programming-language-item">Java</div>
<div class="programming-language-item">Figma</div>
<div class="programming-language-item">R & Matlab</div>
<div class="programming-language-item">Git/Github</div>
<div class="programming-language-item">Amazon EC2</div>
<div class="programming-language-item">Google Cloud</div>
<div class="programming-language-item">x86 Assembly</div>
<div class="programming-language-item">
Bash & Shell Scripting
</div>
<div class="programming-language-item">
MS Visual Studio/IntelliJ
</div>
</div>
</div>
</div>
</div>
</section>
<section class="contact-section" id="section6">
<div class="contact-text">
<h1 style="color: #6ea6f3">
<i class="fa-solid fa-earth-americas"></i> Let's connect:
</h1>
<div
class="divider"
style="background-color: #6ea6f3; width: 100%; height: 3px"
></div>
<div class="container fade">
<form class="contact-form" name="contact-form">
<div class="input-wrap">
<label for="fname">First Name</label
><i class="icon fa-solid fa-user"></i>
<input
type="text"
class="contact-input"
id="fname"
name="firstname"
auto-complete="off"
required
/>
</div>
<div class="input-wrap">
<label for="lname">Last Name</label
><i class="icon fa-solid fa-image-portrait"></i>
<input
type="text"
class="contact-input"
id="lname"
auto-complete="off"
name="lastname"
required
/>
</div>
<div class="input-wrap w-100">
<label for="email">Email</label
><i class="icon fa-solid fa-envelope"></i>
<input
type="email"
class="contact-input"
id="email"
name="email"
auto-complete="off"
required
/>
</div>
<div></div>
<div class="input-wrap w-100">
<textarea
class="contact-input"
name="message"
auto-complete="off"
required
></textarea>
<label for="subject">Message</label
><i class="icon fa-solid fa-message"></i>
</div>
<div class="empty-box"></div>
<div
class="send-button-section"
style="display: flex; justify-content: flex-end"
>
<button type="submit" class="send-button">Send message</button>
</div>
</form>
</div>
</div>
<div class="contact-social-icons">
<a
href="https://www.linkedin.com/in/hai-nguyen-03b0761bb/"
target="_blank"
><i class="fab fa-linkedin"></i
></a>
<a href="https://www.instagram.com/h.nguyen215/" target="_blank"
><i class="fab fa-instagram"></i
></a>
<a
href="https://www.youtube.com/channel/UCqvVjMHFH501HfVhKtcasYQ"
target="_blank"
><i class="fa-brands fa-youtube"></i
></a>
<a href="https://github.com/hthere21" target="_blank"
><i class="fa-brands fa-github"></i
></a>
</div>
</section>
<div class="footer">
<ul class="menu" style="margin-top: 20px">
<li class="menu__item">
<a class="menu__link" href="#section1">Home</a>
</li>
<li class="menu__item">
<a class="menu__link" href="#section2">About</a>
</li>
<li class="menu__item">
<a class="menu__link" href="#section3">Education</a>
</li>
<li class="menu__item">
<a class="menu__link" href="#section4">Projects</a>
</li>
</ul>
<div class="divider"></div>
<p>Created by @HaiNg-2023 ©</p>
</div>
</div>
<div id="popup" class="modal">
<div class="modal-content">
<h2 style="color: rgb(26, 169, 26)">
Message sent successfully
<i
style="color: rgb(26, 169, 26)"
class="fa-solid fa-circle-check"
></i>
</h2>
<p>
Thank you for visiting my website. I have received your message and I
will contact back to you soon.
</p>
<button onclick="toggle()" class="close-button">Close</button>
</div>
</div>
<div id="popup1" class="modal">
<div class="modal-content">
<div style="display: flex; justify-content: flex-end">
<button onclick="toggle_error()">
<i class="fa-solid fa-circle-xmark" style="color: red" p></i>
</button>
</div>
<h2 style="color: red">
Message was not able to send
<i
class="fa-solid fa-exclamation-triangle"
style="color: #ff5733; margin-left: 2px"
></i>
</h2>
<p>
I appreciate your visit to my website. Currently, my website is
experiencing technical difficulties that may affect your experience.
Please accept my apologies, and kindly revisit later.
</p>
</div>
</div>
<!-- Scroll Spy Indicator -->
<div id="scroll-spy">
<div class="dot active" data-section="section1"></div>
<div class="dot" data-section="section2"></div>
<div class="dot" data-section="section3"></div>
<div class="dot" data-section="section4"></div>
<div class="dot" data-section="section5"></div>
<div class="dot" data-section="section6"></div>
</div>
<!-- Scroll to the top -->
<button id="scroll-to-top-button" onclick="scrollToTop()">
<i class="fa-solid fa-up-long"></i>
</button>
</body>
</html>