-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
845 lines (791 loc) · 44.5 KB
/
index.html
File metadata and controls
845 lines (791 loc) · 44.5 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
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- TIÊU ĐỀ MỚI -->
<title>Trần Hữu Đạt - Full-stack Web Developer</title>
<!-- THAY ICON MỚI (NẾU CÓ) -->
<link rel="icon" type="image/png" href="assets/favicon.png" />
<!-- THÊM FONT MỚI TỪ GOOGLE FONTS -->
<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=Sora:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<!-- LINK CSS VÀ FONT AWESOME -->
<link rel="stylesheet" href="css/components/base.css" />
<link rel="stylesheet" href="css/components/header.css" />
<link rel="stylesheet" href="css/components/hero.css" />
<link rel="stylesheet" href="css/components/music-player.css" />
<link rel="stylesheet" href="css/components/sections.css" />
<link rel="stylesheet" href="css/components/about.css" />
<link rel="stylesheet" href="css/components/skills.css" />
<link rel="stylesheet" href="css/components/projects.css" />
<link rel="stylesheet" href="css/components/blog.css" />
<link rel="stylesheet" href="css/components/experience.css" />
<link rel="stylesheet" href="css/components/contact.css" />
<link rel="stylesheet" href="css/components/animations.css" />
<link rel="stylesheet" href="css/components/awards.css" />
<link rel="stylesheet" href="css/components/footer.css" />
<link rel="stylesheet" href="css/components/wakatime.css" />
<link rel="stylesheet" href="css/components/featured-projects.css" />
<link rel="stylesheet" href="css/components/interactive-skills.css" />
<link rel="stylesheet" href="css/components/theme.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<style>
.theme-switcher-dropdown {
position: relative;
display: inline-block;
}
.dropdown-toggle {
background: rgba(255, 255, 255, 0.1);
border: 1px solid var(--border-color);
color: var(--text-primary);
padding: 0.5rem 1rem;
border-radius: 9999px;
cursor: pointer;
font-size: 0.875rem;
font-weight: 600;
transition: background-color 0.3s, border-color 0.3s;
display: flex;
align-items: center;
gap: 0.5rem;
}
.dropdown-toggle:hover {
background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu {
display: none;
position: absolute;
background-color: var(--bg-card);
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
border-radius: 0.5rem;
border: 1px solid var(--border-color);
padding: 0.5rem 0;
right: 0;
bottom: 100%;
margin-bottom: 0.5rem;
}
.dropdown-menu a {
color: var(--text-primary);
padding: 0.75rem 1rem;
text-decoration: none;
display: block;
text-align: left;
transition: background-color 0.2s;
}
.dropdown-menu a:hover {
background-color: rgba(255, 255, 255, 0.05);
}
.dropdown-menu.show {
display: block;
}
</style>
</head>
<body>
<!-- Thanh tiến trình cuộn giữ nguyên -->
<div class="scroll-progress-bar"></div>
<header class="main-header">
<!-- Nhóm 1: Logo -->
<a class="logo" href="index.html"><span>tranhuudat</span>2004</a>
<!-- Nhóm 2: Khối điều hướng -->
<div class="header-navigation"> <!-- THÊM THẺ NÀY -->
<nav class="main-nav">
<a href="#hero">Home</a>
<a href="#about">About</a>
<a href="#skills">Skills</a>
<!-- <a href="#coding-activity">Activity</a> -->
<a href="#projects">Projects</a>
<a href="#experience">Experience</a>
<a href="#blog">Blog</a> <!-- << THÊM DÒNG NÀY VÀO -->
<a href="#contact">Contact</a>
<span class="nav-indicator"></span>
</nav>
<a href="download-resume.html" class="resume-button">Resume</a>
<button id="theme-toggle" class="theme-toggle-btn">
<i class="fas fa-sun"></i>
<i class="fas fa-moon"></i>
</button>
</div> <!-- THÊM THẺ NÀY -->
</header>
<main>
<!-- ====================================================== -->
<!-- Section 1: Hero (THAY ĐỔI LỚN) -->
<!-- ====================================================== -->
<section id="hero" class="hero-section">
<div class="hero-background"></div>
<div class="container hero-container">
<!-- Profile Card (bên trái) -->
<div class="profile-card-container animate-on-scroll">
<div class="profile-card glass-card">
<div class="profile-header">
<div class="avatar-wrapper">
<img src="assets/my_image1.jpg" alt="Avatar" class="avatar" />
<div class="status-indicator online"></div>
</div>
<div class="profile-info">
<h2>Trần Hữu Đạt</h2>
<p class="job-title">Full-stack Web Developer</p>
</div>
</div>
<div class="profile-details">
<p><i class="fas fa-map-marker-alt"></i> Ho Chi Minh City, Vietnam</p>
<p><i class="fas fa-calendar-alt"></i> Joined 2022</p>
<p><i class="fas fa-briefcase"></i> Ton Duc Thang University</p>
</div>
</div>
</div>
<!-- Hero Text Content (ở giữa) -->
<div class="hero-text-content">
<div class="welcome-badge animate-on-scroll">Welcome to my Portfolio</div>
<h1 class="animate-on-scroll">
Building Digital<br>
<span class="gradient-text">Experiences</span>
</h1>
<p style="color: white;" class="animate-on-scroll">A passionate Software Engineering student
specializing in creating
efficient, user-centric web applications.</p>
<div class="hero-buttons animate-on-scroll">
<a href="#projects" class="btn btn-primary">View my projects <i
class="fas fa-arrow-right"></i></a>
<a href="#contact" class="btn btn-secondary">Get in touch</a>
</div>
<div class="social-links animate-on-scroll">
<a style="color: white;" href="https://linkedin.com/in/tranhuudat2004" aria-label="LinkedIn"><i
class="fab fa-linkedin-in"></i></a>
<a style="color: white;" href="https://github.com/TranHuuDat2004" aria-label="GitHub"><i
class="fab fa-github"></i></a>
<a style="color: white;" href="mailto:tranhuudat.cv@gmail.com" aria-label="Email"><i
class="fas fa-envelope"></i></a>
<a style="color: white;" href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
<div class="scroll-down-indicator"></div>
</section>
<div class="music-player-widget">
<img src="assets/song-cover.png" alt="Song Cover" class="song-cover" id="song-cover">
<div class="song-info">
<h4 id="song-title">Jingle Bells</h4>
<p id="song-artist">Christmas Song</p>
</div>
<div class="player-controls">
<i class="fas fa-backward-step" id="prev-btn"></i>
<i class="fas fa-play" id="play-pause-btn"></i>
<i class="fas fa-forward-step" id="next-btn"></i>
</div>
<i class="fas fa-volume-high"></i>
</div>
<!-- ====================================================== -->
<!-- Section 2: About Me (CẬP NHẬT) -->
<!-- ====================================================== -->
<section id="about" class="content-section">
<div class="container">
<div class="section-header animate-on-scroll">
<div class="section-badge">My personal story</div>
<h2 class="section-title">About Me</h2>
<div class="title-underline"></div>
</div>
<div class="about-grid">
<div class="about-image-wrapper animate-on-scroll">
<img src="assets/my_image.jpg" alt="A pensive anime character in a snowy city scene">
<div class="status-tag">
<span class="green-dot"></span> Available for work
</div>
</div>
<div class="about-text-content animate-on-scroll">
<p>I am a dedicated Software Engineering student at Ton Duc Thang University with a deep passion
for building efficient and user-friendly web solutions. My journey into programming started
with a curiosity to understand how things work, and it has grown into a drive to create
meaningful applications.</p>
<p>I enjoy tackling challenging problems and continuously expanding my skill set in the
ever-evolving world of technology. From developing full-stack e-commerce platforms to
creating fun, interactive web apps, my goal is to leverage my technical abilities to build
impactful products.</p>
<div class="info-box-wrapper glass-card">
<div class="info-box">
<div>
<span class="info-label">Name</span>
<p>Trần Hữu Đạt</p>
</div>
<div>
<span class="info-label">Email</span>
<p>tranhuudat.cv@gmail.com</p>
</div>
<div>
<span class="info-label">Location</span>
<p>Ho Chi Minh City, VN</p>
</div>
<div>
<span class="info-label">Availability</span>
<p class="available-status">Open to Internship</p>
</div>
</div>
<a href="download-resume.html" download class="btn-download-resume">Download Resume <i
class="fas fa-download"></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- ====================================================== -->
<!-- Section 3: Skills (CẬP NHẬT) -->
<!-- ====================================================== -->
<section id="skills" class="content-section">
<div class="container">
<div class="section-header animate-on-scroll">
<!-- Thêm lại badge "My Skills" -->
<div class="section-badge">My Skills</div>
<!-- Đổi tiêu đề -->
<h2 class="section-title">Technical Stack</h2>
<div class="title-underline"></div>
</div>
<div class="skills-wrapper">
<div class="skills-grid">
<!-- JavaScript sẽ tự động chèn các thanh kỹ năng vào đây -->
<p class="skills-loading">
<i class="fas fa-spinner fa-spin"></i> Loading technical skills...
</p>
</div>
</div>
</div>
</section>
<!-- ====================================================== -->
<!-- Section 4: Featured Works (NEW ALTERNATING LAYOUT) -->
<!-- ====================================================== -->
<section id="projects" class="content-section">
<div class="container">
<div class="section-header animate-on-scroll">
<div class="section-badge">Some of my recent work</div>
<h2 class="section-title">Featured Projects</h2>
<div class="title-underline"></div>
</div>
<!-- PROJECT 1: Omacha Shop (Layout: Image Left, Details Right) -->
<div class="project-showcase-grid animate-on-scroll">
<div class="showcase-card">
<div class="showcase-header"><span>Omacha Project</span></div>
<div class="showcase-content">
<div class="text-features">
<h1>OMACHA SHOP<br>E-COMMERCE</h1>
<h4 class="feature-title">FEATURES</h4>
<ul>
<li>Full-stack e-commerce platform built with PHP & MySQL.</li>
<li>Robust admin panel for product, order, and user management.</li>
<li>Responsive design ensuring a seamless experience on all devices.</li>
</ul>
</div>
<div class="image-gallery">
<img src="assets/omacha/Home1.jpg" alt="Omacha Homepage" class="showcase-img">
<!-- <img src="assets/omacha/product.jpg" alt="Omacha Homepage" class="showcase-img"> -->
<img src="assets/omacha/product_detail.jpg" alt="Omacha Homepage" class="showcase-img">
</div>
</div>
</div>
<div class="details-column">
<h2>Omacha Shop</h2>
<p class="project-category">Web, E-commerce, Full-stack</p>
<div class="project-tags">
<span>PHP</span><span>MySQL</span><span>JavaScript</span><span>Bootstrap</span>
</div>
<div class="description-box glass-card">
<p>A comprehensive toy e-commerce platform designed for a fun shopping experience and
powerful admin tools.</p>
</div>
<div class="project-links">
<a href="https://github.com/TranHuuDat2004/Omacha_Shop" target="_blank"
aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="https://tranhuudat2004.github.io/Omacha-Shop-Demo/" aria-label="Project Details"><i
class="fas fa-link"></i></a>
</div>
</div>
</div>
<!-- PROJECT 2: BrickShop (Layout: Details Left, Image Right) -->
<div class="project-showcase-grid layout-reversed animate-on-scroll">
<div class="showcase-card">
<div class="showcase-header"><span>BrickShop Project</span></div>
<div class="showcase-content">
<div class="text-features">
<h1>BRICKSHOP<br>E-COMMERCE</h1>
<h4 class="feature-title">FEATURES</h4>
<ul>
<li>Modern e-commerce hub developed with Node.js and Express.js.</li>
<li>Sleek and efficient admin UI built with Tailwind CSS.</li>
<li>Focus on modern JavaScript stack and non-relational databases.</li>
</ul>
</div>
<div class="image-gallery">
<img src="assets/brickshop/homepage.png" alt="BrickShop Homepage" class="showcase-img">
<img src="assets/brickshop/admin_dashboard.png" alt="BrickShop Homepage"
class="showcase-img">
</div>
</div>
</div>
<div class="details-column">
<h2>BrickShop</h2>
<p class="project-category">Web, E-commerce, Node.js</p>
<div class="project-tags"><span>Node.js</span><span>Express.js</span><span>TailwindCSS</span>
</div>
<div class="description-box glass-card">
<p>A modern e-commerce hub for building block fans, developed with Node.js and a Tailwind
CSS admin UI.</p>
</div>
<div class="project-links">
<a href="https://github.com/TranHuuDat2004/BrickShop" target="_blank" aria-label="GitHub"><i
class="fab fa-github"></i></a>
<a href="brickshop.html" aria-label="Project Details"><i class="fas fa-link"></i></a>
</div>
</div>
</div>
<!-- PROJECT 3: Aptis Practice -->
<div class="project-showcase-grid animate-on-scroll">
<div class="showcase-card">
<div class="showcase-header"><span>Aptis Practice Project</span></div>
<div class="showcase-content">
<div class="text-features">
<h1>APTIS PRACTICE<br>TESTING TOOL</h1>
<h4 class="feature-title">FEATURES</h4>
<ul>
<li>Interactive web tool for Aptis exam preparation.</li>
<li>Includes simulated tests and a scoring system.</li>
<li>Unique learning tools based on "key" and "memory story" methods.</li>
</ul>
</div>
<div class="image-gallery">
<img src="assets/home_aptis.png" alt="Aptis Practice UI" class="showcase-img">
<div class="figma-embed-container">
<iframe src="https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Fcommunity%2Ffile%2F1622808499508850540%2Faptis-e-learning-exam-practice-platform-ui-aptis-practice" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
<div class="details-column">
<h2>Aptis Practice</h2>
<p class="project-category">Web, Frontend, Educational Tool</p>
<div class="project-tags">
<span>HTML5</span><span>CSS3</span><span>JavaScript (ES6+)</span><span>Github Pages</span>
</div>
<div class="description-box glass-card">
<p>An interactive web tool built to solve a personal problem after a first attempt at the
Aptis test, featuring mock exams and unique study aids.</p>
</div>
<div class="project-links">
<a href="https://github.com/TranHuuDat2004/aptis-practice" target="_blank"
aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="https://tranhuudat2004.github.io/aptis-practice/" target="_blank"
aria-label="Live Demo"><i class="fas fa-link"></i></a>
<a href="https://www.figma.com/community/file/1622808499508850540/aptis-e-learning-exam-practice-platform-ui-aptis-practice"
target="_blank" aria-label="Figma Design"><i class="fab fa-figma"></i></a>
</div>
</div>
</div>
<!-- PROJECT 4: Unidoc -->
<div class="project-showcase-grid layout-reversed animate-on-scroll">
<div class="showcase-card">
<div class="showcase-header"><span>Unidoc Project</span></div>
<div class="showcase-content">
<div class="text-features">
<h1>UNIDOC<br>DOCUMENT HUB</h1>
<h4 class="feature-title">FEATURES</h4>
<ul>
<li>A centralized document management for university students.</li>
<li>User-friendly interface for finding and storing study materials.</li>
<li>Improves accessibility and resource sharing.</li>
</ul>
</div>
<div class="image-gallery">
<img src="assets/home_unidocs.png" alt="Unidoc Homepage" class="showcase-img">
</div>
</div>
</div>
<div class="details-column">
<h2>Unidoc</h2>
<p class="project-category">Web, Frontend, Educational</p>
<div class="project-tags"><span>React</span><span>Tailwind CSS</span><span>Firebase</span>
</div>
<div class="description-box glass-card">
<p>A comprehensive document hub designed to help university students easily manage, find,
and share their study materials effectively.</p>
</div>
<div class="project-links">
<a href="#" target="_blank" aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="#" aria-label="Live Demo"><i class="fas fa-link"></i></a>
</div>
</div>
</div>
<!-- You can add more featured projects here -->
</div>
<!-- === BỔ SUNG: Nút xem tất cả dự án === -->
<div class="view-all-posts-container animate-on-scroll" style="margin-top: 4rem;">
<a href="project.html" class="btn btn-secondary">
View All Projects <i class="fas fa-arrow-right"></i>
</a>
</div>
</section>
<!-- ====================================================== -->
<!-- Section 5: Awards & Achievements (UPDATED WITH IMAGE) -->
<!-- ====================================================== -->
<section id="awards" class="content-section">
<div class="container">
<div class="section-header animate-on-scroll">
<div class="section-badge">Recognition & Accomplishments</div>
<h2 class="section-title">Awards & Achievements</h2>
<div class="title-underline"></div>
</div>
<!-- Card for Award Details -->
<div class="award-card glass-card animate-on-scroll">
<div class="award-info">
<p class="award-date">April 2023</p>
<h3 class="award-title">Consolation Prize</h3>
<p class="award-competition">'Class Website Design Competition 2023'</p>
<p class="award-issuer">Faculty of Information Technology, Ton Duc Thang University</p>
</div>
<div class="award-description">
<ul>
<li>
Achieved prize in a university-wide competition with over 20 participating teams, as
part of the "Youth Pioneering Digital Transformation" initiative.
</li>
<li>
Developed a class website on WordPress aimed at fostering academic exchange,
contributing significantly to UI/UX design and theme customization.
</li>
<li>
Demonstrated strong teamwork, creativity, and the practical application of web
development skills in a competitive environment.
</li>
</ul>
</div>
</div>
<!-- NEW: Card for the Award Photo -->
<div class="award-photo-card glass-card animate-on-scroll">
<h3 class="photo-title">A Proud Moment</h3>
<div class="photo-wrapper">
<img src="assets/achive.jpg" alt="A memorable moment - Receiving award at TDTU 2023">
</div>
<p class="photo-caption">Receiving the design award at Ton Duc Thang University, 2023.</p>
</div>
<!-- NEW: Extracurricular Certificates Section -->
<h3 class="section-subtitle animate-on-scroll">Extracurricular Certificates</h3>
<div class="certificates-grid">
<div class="certificate-card glass-card animate-on-scroll">
<div class="certificate-image">
<img src="assets/certificate/TranHuuDat_VibeCoding.png" alt="Chứng nhận Vibe Coding">
</div>
<h4 class="certificate-title">Chứng nhận: Vibe Coding</h4>
<a href="javascript:void(0)" class="btn-view-cert btn-pdf-modal" data-cert="assets/certificate/TranHuuDat_VibeCoding.png">
View Certificate <i class="fas fa-certificate"></i>
</a>
</div>
<div class="certificate-card glass-card animate-on-scroll">
<div class="certificate-image">
<img src="assets/certificate/TranHuuDat_XayDungDuAnCaNhan.png"
alt="Chứng nhận Xây Dựng Dự Án Cá Nhân">
</div>
<h4 class="certificate-title">Chứng nhận: Xây Dựng Dự Án Cá Nhân</h4>
<a href="javascript:void(0)" class="btn-view-cert btn-pdf-modal" data-cert="assets/certificate/TranHuuDat_XayDungDuAnCaNhan.png">
View Certificate <i class="fas fa-certificate"></i>
</a>
</div>
<div class="certificate-card glass-card animate-on-scroll">
<div class="certificate-image">
<img src="assets/certificate/TranHuuDat_GitWorkReady.jpg"
alt="Chứng nhận Git Work Ready">
</div>
<h4 class="certificate-title">Chứng nhận: Git Work Ready</h4>
<a href="javascript:void(0)" class="btn-view-cert btn-pdf-modal" data-cert="assets/certificate/TranHuuDat_GitWorkReady.jpg">
View Certificate <i class="fas fa-certificate"></i>
</a>
</div>
</div>
</div>
</section>
<!-- ====================================================== -->
<!-- Section 6: Experience (ĐÃ CẬP NHẬT CHO BẠN) -->
<!-- ====================================================== -->
<section id="experience" class="content-section">
<div class="container">
<div class="section-header animate-on-scroll">
<div class="section-badge">My professional journey</div>
<h2 class="section-title">Experience & Education</h2>
<div class="title-underline"></div>
</div>
<div class="timeline">
<!-- Timeline Item 1: Học vấn -->
<div class="timeline-item animate-on-scroll">
<div class="timeline-dot"></div>
<div class="timeline-content glass-card">
<h3>Bachelor of Software Engineering</h3>
<p class="timeline-meta">Ton Duc Thang University | 2022 - 2026</p>
<p>Building a strong foundation in computer science, algorithms, and web development
principles, while maintaining a GPA of 7.8/10.</p>
</div>
</div>
<!-- Timeline Item 2: Kinh nghiệm làm việc -->
<div class="timeline-item animate-on-scroll">
<div class="timeline-dot"></div>
<div class="timeline-content glass-card">
<h3>Invigilator (Part-time)</h3>
<p class="timeline-meta">Ton Duc Thang University | 2024 - Present</p>
<p>Ensured the integrity of university examinations, developing strong discipline, attention
to detail, and the ability to perform under pressure.</p>
</div>
</div>
<!-- Timeline Item 3: Dự án cá nhân -->
<div class="timeline-item animate-on-scroll">
<div class="timeline-dot"></div>
<div class="timeline-content glass-card">
<h3>Personal Project Development</h3>
<p class="timeline-meta">GitHub | 2022 - Present</p>
<p>Continuously developing full-stack applications and interactive tools to sharpen my
skills and explore new technologies.</p>
</div>
</div>
</div>
</div>
</section>
<!-- ====================================================== -->
<!-- Section 7: Section Blog -->
<!-- ====================================================== -->
<section id="blog" class="content-section">
<div class="container">
<div class="section-header animate-on-scroll">
<div class="section-badge">Sharing my knowledge</div>
<h2 class="section-title">From The Blog (Maintenance)</h2>
<div class="title-underline"></div>
</div>
<!-- Lưới chứa các bài blog nổi bật -->
<div class="blog-grid">
<!-- Bài Blog 1: Mixamo & Unity -->
<a href="blog/post-mixamo-unity.html" class="blog-post-card glass-card animate-on-scroll">
<div class="blog-card-image">
<!-- Bạn có thể tạo 1 ảnh thumbnail cho bài viết này -->
<img src="assets/mixamo.png" alt="A 3D character in Unity editor">
</div>
<div class="blog-card-content">
<div class="blog-card-tags">
<span>Unity</span><span>Game Dev</span>
</div>
<h3>Guide: Using Mixamo Assets in Unity</h3>
<p>A standard workflow to correctly download and implement 3D characters and animations from
Mixamo into your Unity projects.</p>
<span class="blog-card-link">Read More <i class="fas fa-arrow-right"></i></span>
</div>
</a>
<!-- === BÀI VIẾT MỚI: UNITY & GITHUB PAGES === -->
<a href="blog/post-unity-githubpages.html" class="blog-post-card glass-card animate-on-scroll">
<div class="blog-card-image">
<img src="assets/unity-githubpage.png" alt="Unity logo and GitHub logo">
</div>
<div class="blog-card-content">
<div class="blog-card-tags">
<span>Unity</span><span>Game Dev</span><span>GitHub</span>
</div>
<h3>Hướng Dẫn: Deploy Game Unity Lên GitHub Pages</h3>
<p>Quy trình chi tiết để chia sẻ game Unity của bạn lên web miễn phí và cách khắc phục lỗi
không tải được game phổ biến nhất.</p>
<span class="blog-card-link">Read More <i class="fas fa-arrow-right"></i></span>
</div>
</a>
<!-- Bài Blog 3 (Ví dụ) -->
<a href="blog/getting-started-docker.html" class="blog-post-card glass-card animate-on-scroll">
<div class="blog-card-image">
<img src="assets/docker.png" alt="Docker container logos">
</div>
<div class="blog-card-content">
<div class="blog-card-tags">
<span>Docker</span><span>DevOps</span>
</div>
<h3>Getting Started with Docker for Web Devs</h3>
<p>Learn how containerization with Docker can streamline your development workflow, ensuring
consistency across environments.</p>
<span class="blog-card-link">Read More <i class="fas fa-arrow-right"></i></span>
</div>
</a>
</div>
<!-- Nút xem tất cả bài viết -->
<div class="view-all-posts-container animate-on-scroll">
<a href="blog.html" class="btn btn-secondary">View All Posts</a>
</div>
</div>
</section>
<!-- ====================================================== -->
<!-- Section 8: Contact (ĐÃ CẬP NHẬT CHO BẠN) -->
<!-- ====================================================== -->
<section id="contact" class="content-section">
<div class="container">
<div class="section-header animate-on-scroll">
<div class="section-badge">Let's work together</div>
<h2 class="section-title">Get In Touch</h2>
<div class="title-underline"></div>
</div>
<div class="contact-grid">
<div class="contact-info-wrapper glass-card animate-on-scroll">
<h3>Contact Information</h3>
<div class="contact-item">
<i class="fas fa-envelope"></i>
<div>
<span>Email</span>
<a href="mailto:tranhuudat.cv@gmail.com">tranhuudat.cv@gmail.com</a>
</div>
</div>
<div class="contact-item">
<i class="fab fa-linkedin"></i>
<div>
<span>LinkedIn</span>
<a href="https://linkedin.com/in/tranhuudat2004"
target="_blank">linkedin.com/in/tranhuudat2004</a>
</div>
</div>
<div class="contact-item">
<i class="fab fa-github"></i>
<div>
<span>GitHub</span>
<a href="https://github.com/TranHuuDat2004"
target="_blank">github.com/TranHuuDat2004</a>
</div>
</div>
<h3 class="status-title">Current Status</h3>
<div class="contact-status">
<span class="green-dot"></span>
Open for Web Developer Internship opportunities
</div>
</div>
<!-- Form liên hệ - Bạn cần một dịch vụ backend như Formspree để nó hoạt động -->
<form class="contact-form glass-card animate-on-scroll" action="https://formspree.io/f/xpwozknb"
method="POST">
<h3>Send Me a Message</h3>
<div class="form-group">
<input type="text" id="name" name="name" placeholder="Your Name" required>
</div>
<div class="form-group">
<input type="email" id="email" name="email" placeholder="Your Email" required>
</div>
<div class="form-group">
<input type="text" id="subject" name="subject" placeholder="Subject" required>
</div>
<div class="form-group">
<textarea id="message" name="message" rows="5" placeholder="Your Message"
required></textarea>
</div>
<button type="submit" class="btn btn-primary">Send Message <i
class="fas fa-paper-plane"></i></button>
</form>
</div>
</div>
</section>
</main>
</main>
<footer class="main-footer">
<div class="container footer-container">
<div class="footer-column footer-about">
<h3 class="footer-logo"><span>tranhuudat</span>2004</h3>
<p>A passionate Web Developer dedicated to building beautiful and useful applications.</p>
</div>
<div class="footer-column footer-links">
<h4 class="footer-title">Quick Links</h4>
<ul>
<li><a href="#hero">Home</a></li>
<li><a href="assets/resume.pdf" download>Resume</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="footer-column footer-connect">
<h4 class="footer-title">Connect with Me</h4>
<ul>
<li><a href="https://github.com/TranHuuDat2004" target="_blank"><i class="fab fa-github"></i>
GitHub</a></li>
<li><a href="https://linkedin.com/in/tranhuudat2004" target="_blank"><i
class="fab fa-linkedin-in"></i> LinkedIn</a></li>
<li><a href="mailto:tranhuudat.cv@gmail.com"><i class="fas fa-envelope"></i> Email</a></li>
</ul>
</div>
<!-- Cột 4: Themes
<div class="footer-column footer-themes">
<h4 class="footer-title">Themes</h4>
<div class="theme-switcher-dropdown">
<button class="dropdown-toggle">Themes <i class="fas fa-chevron-down"></i></button>
<div class="dropdown-menu">
<a href="index.html">Default</a>
<a href="birthday.html">Birthday</a>
<a href="noel.html">Noel</a>
<a href="halloween.html">Halloween</a>
<a href="tet.html">Tết</a>
</div>
</div>
</div> -->
</div>
<div class="footer-copyright">
<div class="container">
<p>Copyright © <span id="currentYear"></span> Trần Hữu Đạt. All rights reserved.</p>
<p>Last updated: <b> March 30th 2026</b></p>
</div>
</div>
</footer>
<div id="pdfModal" class="pdf-modal-overlay">
<div class="pdf-modal-container">
<div class="pdf-modal-header">
<h3 id="pdfModalTitle">Certificate Viewer</h3>
<button class="pdf-modal-close">×</button>
</div>
<div class="pdf-modal-body">
<div class="zoom-container">
<img id="certImage" src="" alt="Certificate">
</div>
</div>
</div>
</div>
<audio id="audio-source"></audio>
<script src="js/playlist.js"></script>
<script src="js/scripts.js"></script>
<!-- === TẢI CÁC SECTION CHUNG === -->
<script src="js/load-sections.js"></script>
<script>
// Christmas specific scripts
document.addEventListener('DOMContentLoaded', () => {
// Snowfall
const snowContainer = document.querySelector('.snow-container');
if (snowContainer) {
for (let i = 0; i < 150; i++) {
const snowflake = document.createElement('div');
snowflake.classList.add('snowflake');
const size = Math.random() * 4 + 2;
snowflake.style.width = size + 'px';
snowflake.style.height = size + 'px';
snowflake.style.left = Math.random() * 100 + 'vw';
snowflake.style.animationDelay = Math.random() * -10 + 's';
snowflake.style.animationDuration = 5 + Math.random() * 5 + 's';
snowflake.style.opacity = Math.random();
snowContainer.appendChild(snowflake);
}
}
// Override music player for Christmas song
const audio = document.getElementById('audio-source');
const songTitle = document.getElementById('song-title');
const songArtist = document.getElementById('song-artist');
const nextBtn = document.getElementById('next-btn');
const prevBtn = document.getElementById('prev-btn');
if (audio) audio.src = 'assets/music/jingle-bells.mp3'; // Placeholder
if (songTitle) songTitle.textContent = 'Jingle Bells';
if (songArtist) songArtist.textContent = 'Christmas Song';
if (nextBtn) nextBtn.style.display = 'none';
if (prevBtn) prevBtn.style.display = 'none';
const dropdownToggle = document.querySelector('.theme-switcher-dropdown .dropdown-toggle');
const dropdownMenu = document.querySelector('.theme-switcher-dropdown .dropdown-menu');
if (dropdownToggle && dropdownMenu) {
dropdownToggle.addEventListener('click', () => {
dropdownMenu.classList.toggle('show');
});
window.addEventListener('click', (event) => {
if (!event.target.matches('.dropdown-toggle') && !event.target.matches('.dropdown-toggle i')) {
if (dropdownMenu.classList.contains('show')) {
dropdownMenu.classList.remove('show');
}
}
});
}
});
</script>
</body>
</html>