-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
493 lines (462 loc) · 18.9 KB
/
index.html
File metadata and controls
493 lines (462 loc) · 18.9 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
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio - Trần Vân Phi</title>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<!-- Fontawesome (icon) -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<link rel="stylesheet" href="css/base.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<nav class="navbar">
<div class="navbar__container">
<div class="navbar__logo">
<div class="logo-square">P</div>
</div>
<ul class="navbar__menu">
<li><a href="#about" class="navbar__link">About</a></li>
<li><a href="#skills" class="navbar__link">Skills</a></li>
<li><a href="#certificates" class="navbar__link">Certificates</a></li>
<li><a href="#projects" class="navbar__link">Projects</a></li>
<li><a href="#gallery" class="navbar__link">Gallery</a></li>
<li><a href="#interests" class="navbar__link">Interests</a></li>
<li><a href="#contact" class="navbar__link">Contact</a></li>
</ul>
</div>
</nav>
<main class="main">
<!-- About Section -->
<section id="about" class="section hero">
<div class="container">
<div class="hero__content">
<div class="hero__left">
<p class="hero__subtitle">HI. I AM</p>
<h1 class="hero__title">TRAN VAN PHI</h1>
<p class="hero__description">
Based in Ho Chi Minh City, Vietnam
<br /><br />
Passionate about Java backend development.
<br />
A creative problem solver who loves learning new technologies
and tackling challenges.
</p>
</div>
<div class="hero__right">
<img src="images/main.png" alt="avatar" class="hero__img" />
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="section skills">
<div class="container">
<h2 class="section__title">SKILLS</h2>
<div class="section-decorator section-decorator--top"></div>
<div class="skills__wrapper">
<p class="skills__intro">
I'm passionate about building beautiful and functional web
experiences. Here are the key skills I've developed through
hands-on projects and continuous learning.
</p>
<div class="skills__list">
<div class="skills__item">
<span class="skills__number">/1/</span>
<div class="skills__content">
<h3 class="skills__item-title">HTML & CSS</h3>
<p class="skills__item-description">
Semantic markup, responsive design, CSS Grid & Flexbox,
animations and transitions
</p>
</div>
</div>
<div class="skills__item">
<span class="skills__number">/2/</span>
<div class="skills__content">
<h3 class="skills__item-title">JavaScript</h3>
<p class="skills__item-description">
ES6+, DOM manipulation, async/await, event handling, and
modern JavaScript patterns
</p>
</div>
</div>
<div class="skills__item">
<span class="skills__number">/3/</span>
<div class="skills__content">
<h3 class="skills__item-title">React</h3>
<p class="skills__item-description">
Hooks, state management, component composition, performance
optimization, and React Router
</p>
</div>
</div>
<div class="skills__item">
<span class="skills__number">/4/</span>
<div class="skills__content">
<h3 class="skills__item-title">Spring Boot</h3>
<p class="skills__item-description">
Spring Core fundamentals, building RESTful CRUD APIs, data
validation with annotations, comprehensive exception
handling and custom error responses
</p>
</div>
</div>
<div class="skills__item">
<span class="skills__number">/5/</span>
<div class="skills__content">
<h3 class="skills__item-title">MySQL</h3>
<p class="skills__item-description">
Database design, complex queries, indexing, relationships
(1-to-1, 1-to-many, many-to-many), and optimization
</p>
</div>
</div>
<div class="skills__item">
<span class="skills__number">/6/</span>
<div class="skills__content">
<h3 class="skills__item-title">Git & GitHub</h3>
<p class="skills__item-description">
Version control, branching strategies, pull requests,
collaboration, and repository management
</p>
</div>
</div>
</div>
</div>
<div class="section-decorator section-decorator--bottom"></div>
</div>
</section>
<!-- Certificates Section -->
<section id="certificates" class="section certificates">
<div class="container">
<h2 class="section__title">CERTIFICATES & AWARDS</h2>
<div class="section-decorator section-decorator--top"></div>
<div class="certificates__wrapper">
<p class="certificates__intro">
Recognition of my achievements and continuous professional
development through various certifications and awards.
</p>
<div class="certificates__grid">
<div class="certificates__card">
<div class="certificates__image">
<img
src="images/cer_mos.jpg"
alt="Microsoft Office Specialist Certificate"
/>
</div>
<h3 class="certificates__card-title">
Microsoft Office Specialist (MOS)
</h3>
<p class="certificates__card-description">
Certified proficiency in Microsoft Office applications
</p>
</div>
<div class="certificates__card">
<div class="certificates__image">
<img
src="images/cer_aws.jpg"
alt="AWS Certified Solutions Architect"
/>
</div>
<h3 class="certificates__card-title">
AWS Certified Solutions Architect
</h3>
<p class="certificates__card-description">
Professional-level AWS cloud architecture certification
</p>
</div>
</div>
</div>
<div class="section-decorator section-decorator--bottom"></div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="section projects">
<div class="container">
<h2 class="section__title">PROJECTS</h2>
<div class="projects__container">
<div class="project-card project-card--featured">
<div class="project-card__number">01</div>
<div class="project-card__content">
<h3 class="project-card__title">E-Commerce Platform</h3>
<p class="project-card__description">
Full-stack web application with React & Spring Boot.
Integrated payment system, order management, and admin
dashboard.
</p>
<div class="project-card__tags">
<span class="tag">React</span>
<span class="tag">Spring Boot</span>
<span class="tag">MySQL</span>
<span class="tag">REST API</span>
</div>
<a
href="https://github.com/vanphi1207"
target="_blank"
class="project-card__github"
>
<i class="fab fa-github"></i> View on GitHub
</a>
</div>
<div class="project-card__visual">
<div class="project-visual-box"></div>
</div>
</div>
<div class="project-card">
<div class="project-card__number">02</div>
<div class="project-card__content">
<h3 class="project-card__title">Portfolio Website</h3>
<p class="project-card__description">
Responsive personal website with a modern design, smooth
animations, and optimized UX.
</p>
<div class="project-card__tags">
<span class="tag">HTML/CSS</span>
<span class="tag">JavaScript</span>
<span class="tag">Figma</span>
</div>
<a
href="https://github.com/vanphi1207"
target="_blank"
class="project-card__github"
>
<i class="fab fa-github"></i> View on GitHub
</a>
</div>
<div class="project-card__visual">
<div class="project-visual-box"></div>
</div>
</div>
<div class="project-card">
<div class="project-card__number">03</div>
<div class="project-card__content">
<h3 class="project-card__title">Task Management App</h3>
<p class="project-card__description">
Task management application with drag-and-drop functionality,
filtering, search, and real-time updates.
</p>
<div class="project-card__tags">
<span class="tag">React</span>
<span class="tag">Node.js</span>
<span class="tag">MongoDB</span>
</div>
<a
href="https://github.com/vanphi1207"
target="_blank"
class="project-card__github"
>
<i class="fab fa-github"></i> View on GitHub
</a>
</div>
<div class="project-card__visual">
<div class="project-visual-box"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Gallery Section -->
<section id="gallery" class="section gallery">
<div class="container">
<div class="gallery__wrapper">
<div class="gallery__left">
<h2 class="gallery__title">LENS</h2>
<p class="gallery__description">
Say cheese! These photos may be two-dimensional, but the
emotions behind them sure aren't! The Gallery is like a time
capsule of my life, filled with memories that span the spectrum
of emotions.
</p>
</div>
<div class="gallery__right">
<div class="gallery__grid">
<div class="gallery__column gallery__column--left">
<div class="gallery__item gallery__item--large">
<img src="images/img1.jpg" alt="img1" />
</div>
</div>
<div class="gallery__column gallery__column--right">
<div class="gallery__item gallery__item--small">
<img src="images/img2.jpg" alt="img2" />
</div>
<div class="gallery__item gallery__item--small">
<img src="images/img3.jpg" alt="img3" />
</div>
<div class="gallery__item gallery__item--small">
<img src="images/img4.jpg" alt="img4" />
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Interests Section -->
<section id="interests" class="section interests">
<div class="container">
<h2 class="section__title">INTERESTS</h2>
<div class="section-decorator section-decorator--top"></div>
<div class="interests__wrapper">
<p class="interests__intro">
Beyond coding, I'm passionate about exploring diverse interests
that fuel my creativity and keep me inspired. Here's what I love
doing in my free time.
</p>
<div class="interests__container">
<!-- Spotify Playlist Embed -->
<div class="interests__spotify">
<h3 class="interests__spotify-title">NOW PLAYING</h3>
<iframe
data-testid="embed-iframe"
style="border-radius: 12px"
src="https://open.spotify.com/embed/playlist/1c9q6YfPMqj97VrNJRfND9?utm_source=generator"
width="100%"
height="500"
frameborder="0"
allowfullscreen=""
allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"
loading="lazy"
></iframe>
</div>
<div class="interests__grid">
<div class="interests__card">
<div class="interests__image">
<img src="images/photo.jpg" alt="Photography" />
</div>
<h3 class="interests__title">Photography</h3>
<p class="interests__description">
Capturing moments and exploring visual storytelling through
the lens.
</p>
</div>
<div class="interests__card">
<div class="interests__image">
<img src="images/game.jpg" alt="Gaming" />
</div>
<h3 class="interests__title">Gaming</h3>
<p class="interests__description">
Exploring immersive worlds and strategic gameplay
experiences.
</p>
</div>
<div class="interests__card">
<div class="interests__image">
<img src="images/music.jpg" alt="Music" />
</div>
<h3 class="interests__title">Music</h3>
<p class="interests__description">
Enjoying diverse genres and discovering new artists and
sounds.
</p>
</div>
<div class="interests__card">
<div class="interests__image">
<img src="images/travel.jpg" alt="Travel" />
</div>
<h3 class="interests__title">Travel</h3>
<p class="interests__description">
Exploring new cultures, cuisines, and breathtaking
destinations.
</p>
</div>
</div>
</div>
</div>
<div class="section-decorator section-decorator--bottom"></div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="section contact">
<div class="container">
<h2 class="section__title">CONTACT</h2>
<div class="section-decorator section-decorator--top"></div>
<div class="contact__wrapper">
<p class="contact__intro">
I'm always interested in hearing about new projects and
opportunities. Whether you have a question or just want to say
hello, feel free to reach out!
</p>
<div class="contact__content">
<div class="contact__info">
<h3 class="contact__subtitle">Contact Information</h3>
<p class="contact__email">
<i class="fas fa-envelope"></i>
<a href="mailto:trnphi127@example.com">trnphi127@gmail.com</a>
</p>
<p class="contact__phone">
<i class="fas fa-phone"></i>
<a href="tel:+84123456789">+84 366 161 426</a>
</p>
<p class="contact__location">
<i class="fas fa-map-marker-alt"></i>
Ho Chi Minh City, Vietnam
</p>
</div>
<div class="contact__social">
<h3 class="contact__subtitle">Follow Me</h3>
<div class="social__links">
<a
href="https://www.facebook.com/ihqqqq"
target="_blank"
class="social__link"
title="Facebook"
>
<i class="fab fa-facebook-f"></i>
</a>
<a
href="https://www.instagram.com/_ihqqqq/"
target="_blank"
class="social__link"
title="Instagram"
>
<i class="fab fa-instagram"></i>
</a>
<a
href="https://www.tiktok.com/@_iiihq2"
target="_blank"
class="social__link"
title="TikTok"
>
<i class="fab fa-tiktok"></i>
</a>
<a
href="https://github.com/vanphi1207"
target="_blank"
class="social__link"
title="GitHub"
>
<i class="fab fa-github"></i>
</a>
<a
href="https://www.linkedin.com/in/ihqqqqq/"
target="_blank"
class="social__link"
title="LinkedIn"
>
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
</div>
</div>
<div class="section-decorator section-decorator--bottom"></div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>© 2025 Phi. All rights reserved.</p>
</div>
</footer>
</body>
</html>