-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
539 lines (510 loc) · 20.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="index, follow" />
<!-- Update favicon href attribute with image of yourself -->
<link
rel="shortcut icon"
href="assets/images/portfolio.png"
type="image/png"
/>
<!-- Preloading fonts for better performance -->
<link
rel="preload"
href="assets/fonts/Mona-Sans.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
<!-- Name -->
<title>Thu Nguyen's Portfolio</title>
</head>
<body>
<script>
const theme = localStorage.getItem("theme") || "dark";
document.body.classList.add(theme);
</script>
<header class="header">
<div class="menu-btn-container">
<div class="container">
<button type="button" class="menu-btn">menu</button>
</div>
</div>
<nav class="nav hidden">
<ol class="nav-items">
<li class="nav-item"><a href="#">Home</a></li>
<li class="nav-item"><a href="#work">My Work</a></li>
<li class="nav-item"><a href="#blog">My Experience</a></li>
<li class="nav-item"><a href="#skills">My Skills</a></li>
<li class="nav-item">
<a href="#contact" data-focused="last-focused">Contact</a>
</li>
</ol>
</nav>
<div class="container">
<div class="header-textbox">
<!-- Replace with your name and job title -->
<h1 class="h1">
<span>Hi, I'm Thu Nguyen</span>
<span>Current Software Development Student</span>
</h1>
<!-- Add a small introductory paragraph about yourself -->
<p class="header-text">
A student striving for success, have experience in both technology and marketing industries.
</p>
<div class="header-btns">
<a href="#contact" class="btn btn-cta">Hire me</a>
<a href="#work" class="btn btn-secondary">See my work</a>
</div>
</div>
</div>
</header>
<main>
<section class="work">
<div class="container">
<h2 class="h2" id="work">Selected Work</h2>
<div class="work-boxes">
<div class="work-box">
<div class="work-textbox">
<!-- Project title -->
<h3 class="h3">Fashion Ecommerce Website</h3>
<!-- Description -->
<p class="work-text">
The website is developed with both admin and client sides.
</p>
<!-- Add technologies -->
<ol class="work-technologies">
<li>C# ASP.NET MVC</li>
<li>SQL Server</li>
<li>JavaScript (Ajax, jQuery)</li>
<li>CSS</li>
<li>HTML</li>
</ol>
<div class="work-links">
<!-- Add url of project in href attribute -->
<a href="https://fashion20240606085625.azurewebsites.net/" target="_blank" rel="noopener" class="link"
>Explore this project</a
>
<!-- Add link to project source code -->
<a
href="https://github.com/thuduongn/fashion-ecommerce"
target="_blank"
rel="noopener"
title="Source code"
>
<img
src="assets/images/social-links/github.svg"
alt="GitHub"
loading="lazy"
/>
</a>
</div>
</div>
<!-- Update img src and alt attribute -->
<picture class="work-img">
<img
loading="lazy"
src="assets/images/work/fashion-ecommerce.png"
alt="music player"
/>
</picture>
</div>
<div class="work-box">
<div class="work-textbox">
<!-- Project title -->
<h3 class="h3">Music Player</h3>
<!-- Description -->
<p class="work-text">
The website is designed to provide an user friendly interface for playing music tracks.
</p>
<!-- Add technologies -->
<ol class="work-technologies">
<li>JavaScript</li>
<li>HTML</li>
<li>CSS</li>
</ol>
<div class="work-links">
<!-- Add url of project in href attribute -->
<a href="https://thuduongn.github.io/music-player" target="_blank" rel="noopener" class="link"
>Explore this project</a
>
<!-- Add link to project source code -->
<a
href="https://github.com/thuduongn/music-player"
target="_blank"
rel="noopener"
title="Source code"
>
<img
src="assets/images/social-links/github.svg"
alt="GitHub"
loading="lazy"
/>
</a>
</div>
</div>
<!-- Update img src and alt attribute -->
<picture class="work-img">
<img
loading="lazy"
src="assets/images/work/music-player.png"
alt="music player"
/>
</picture>
</div>
<div class="work-box">
<div class="work-textbox">
<!-- Add your project title here -->
<h3 class="h3">Dog Booking Website</h3>
<!-- Add small description of your project -->
<p class="work-text">
Website for booking dog care.
</p>
<ol class="work-technologies">
<li>JavaScript</li>
<li>CSS</li>
<li>HTML</li>
</ol>
<div class="work-links">
<!-- Add url of project in href attribute -->
<a href="https://thuduongn.github.io/doggy-booking-website/" target="_blank" rel="noopener" class="link"
>Explore this project</a>
<!-- Add link to project source code in href attribute -->
<a
href="https://github.com/thuduongn/doggy-booking-website"
target="_blank"
rel="noopener"
title="Source code"
>
<img
src="assets/images/social-links/github.svg"
alt="GitHub"
loading="lazy"
/>
</a>
</div>
</div>
<!-- Update img src and alt attribute -->
<picture class="work-img">
<img
loading="lazy"
src="assets/images/work/dog-booking.png"
alt="dog booking"
/>
</picture>
</div>
</div>
</div>
</section>
<!-- Experience -->
<section class="article">
<div class="container">
<h2 class="h2" id="blog">My Experience</h2>
<div class="article-boxes">
<article class="article-box featured-article">
<!-- <div class="article-textbox">
<div>
<h3 class="h3">
Software Development Intern
</h3>
<p class="article-text">
VietTotal | Feb. 2024 to Apr. 2024
</p>
<p class="experience-text">
Developed basic website based on HTML, CSS, JavaScript.
Worked with customers to understand demands for software features and design.
</p>
</div>
<div class="experience-info">
<a href="https://www.linkedin.com/in/thuduongn/" class="link" target="_blank" rel="noopener">Continue reading</a>
<span class="reaction-count">
<img src="./assets/images/heart-outline.svg" alt="heart" />
100
</span>
</div>
</div> -->
<div class="article-textbox">
<div>
<h3 class="h4">
Computer Tutor
</h3>
<p class="article-text">
Women's Centre of Calgary | Jan. 2024 - now
</p>
<p class="article-text">
- Provided individualized computer skills training for 3 women weekly.
</p>
<p class="article-text">
- Explained complex technical concepts in simple terms to non-technical individuals from diverse backgrounds.
</p>
</div>
<div class="article-info">
<a href="https://www.linkedin.com/in/thuduongn/" class="link" target="_blank" rel="noopener"
>Continue reading</a
>
<span class="reaction-count">
<img
src="./assets/images/heart-outline.svg"
alt="heart"
loading="lazy"
/>
100
</span>
</div>
</div>
<picture class="experience-illustration">
<img
src="assets/images/featured-blog.webp"
alt="Computer Tutor"
loading="lazy"
/>
</picture>
</article>
<article class="article-box featured-article">
<div class="article-textbox">
<div>
<h3 class="h4">Marketing Intern</h3>
<p class="article-text">
Apollo Edu | Jun. 2023 - Sep. 2023
</p>
<p class="article-text">
- Generated ideas and collaborated with the IT department to measure website content quality.
</p>
<p class="article-text">
- Analyzed data on content performance, optimized the content strategy, including UI/UX.
</p>
</div>
<div class="article-info">
<a href="https://www.linkedin.com/in/thuduongn/" class="link" target="_blank" rel="noopener"
>Continue reading</a
>
<span class="reaction-count">
<img
src="./assets/images/heart-outline.svg"
alt="heart"
loading="lazy"
/>
100
</span>
</div>
</div>
<picture class="experience-illustration">
<img
src="assets/images/featured-blog.webp"
alt="Marketing"
loading="lazy"
/>
</picture>
</article>
<!-- <article class="article-box">
<div class="article-textbox">
<div>
<h3 class="h4">
Computer Tutor Volunteer
</h3>
<p class="article-text">
Women's Centre of Calgary | Jan. 2024 - Apr. 2024
</p>
<p class="article-text">
Provided individualized computer skills training for women.
Led a team of 5 people in organizing events.
</p>
</div>
<div class="article-info">
<a href="https://www.linkedin.com/in/thuduongn/" class="link" target="_blank" rel="noopener"
>Continue reading</a
>
<span class="reaction-count">
<img
src="./assets/images/heart-outline.svg"
alt="heart"
loading="lazy"
/>
100
</span>
</div>
</div>
</article> -->
<!-- <article class="article-box">
<div class="article-textbox">
<div>
<h3 class="h4">Personal Styling Volunteer</h3>
<p class="article-text">
Making Changes Association | Jan. 2024 - Apr. 2024
</p>
<p class="article-text">
Consulted women on fashionable items, tailored to individual preferences.
Effectively communicated to explain options and ensure a positive experience.
</p>
</div>
<div class="article-info">
<a href="" class="link" target="_blank" rel="noopener"
>Continue reading</a
>
<span class="reaction-count">
<img
loading="lazy"
src="./assets/images/heart-outline.svg"
alt="heart"
/>
350
</span>
</div>
</div>
</article> -->
</div>
</div>
</section>
<!-- Update skills-img src, alt and title attributes -->
<section class="skills">
<div class="container">
<h2 class="h2" id="skills">My Toolkit</h2>
<div class="skills-imgs">
<img src="assets/images/skills/c.png" alt="C#" class="skills-img" loading="lazy" title="C#">
<img src="assets/images/skills/mvc.avif" alt="ASP.NET MVC" class="skills-img" loading="lazy" title="ASP.NET MVC">
<img src="assets/images/skills/sqlserver.png" alt="SQL Server" class="skills-img" loading="lazy" title="SQL Server">
<img src="assets/images/skills/python.webp" alt="Python" class="skills-img" loading="lazy" title="Python">
<img src="assets/images/skills/js.webp" alt="JavaScript" class="skills-img" loading="lazy" title="JavaScript">
<img src="assets/images/skills/sql.png" alt="SQL" class="skills-img" loading="lazy" title="SQL">
<img src="https://www.w3.org/html/logo/downloads/HTML5_Logo_512.png" alt="HTML" class="skills-img" loading="lazy" title="HTML">
<img src="assets/images/skills/html.webp" alt="CSS" class="skills-img" loading="lazy" title="CSS">
<img src="assets/images/skills/git.webp" alt="Git" class="skills-img" loading="lazy" title="Git">
</div>
</div>
</section>
<!-- Testimonials, author name, author job, img src and, alt attributes -->
<section>
<h2 class="h2">Testimonials</h2>
<div class="container">
<ol class="testimonials">
<li class="testimonial">
<blockquote class="testimonial-text">
Thu was one of my standout students in the class. She not only fnished with an A+ in the class, she was
hard working, inquisitive, proactive, and came to me with thoughtful questions well in advance of
most other students. Her questions often helped me by providing feedback on subject areas that
required follow up or extra attention.
</blockquote>
<figure class="testimonial-author">
<figcaption>
<h3 class="testimonial-author-name">Kerry Todyruik</h3>
<p class="testimonial-author-job">Web Development Instructor @SAIT</p>
</figcaption>
</figure>
</li>
<li class="testimonial">
<blockquote class="testimonial-text">
Thu Duong Nguyen is a standout in class.
She actively engages, asks questions, and gets top grades.
She's dedicated and hardworking.
And she's not just about grades, she's supportive of her classmates and a natural leader in group projects.
</blockquote>
<figure class="testimonial-author">
<figcaption>
<h3 class="testimonial-author-name">
Ahmad Almasri
</h3>
<p class="testimonial-author-job">OOP Instructor @SAIT</p>
</figcaption>
</figure>
</li>
<li class="testimonial">
<blockquote class="testimonial-text">
Thu has consistently demonstrated exceptional understanding of the curriculum,
compassionately working in community and helping reduce barriers related to challenges in
community members accessing digital literacy.
Thu is intelligent and patient which makes her a perfect fit for our program.
</blockquote>
<figure class="testimonial-author">
<figcaption>
<h3 class="testimonial-author-name">Beryl Onyango</h3>
<p class="testimonial-author-job">Learning Coordinator @Women's Centre of Cal</p>
</figcaption>
</figure>
</li>
</ol>
</div>
</section>
<section class="contact">
<div class="container">
<h2 class="h2" id="contact">Send Message</h2>
<div class="contact-content">
<div class="contact-textbox">
<strong href="#" class="hire-alert">
<span class="indicator"></span>
Available for hire
</strong>
<p class="contact-text">
I am dedicated to self-learning and actively improve my technological skills.
</p>
<p class="contact-text">
My desire is to be granted opportunity where I can prove my abilities, my hard work, and my drive for success.
</p>
<br/><br/>
<p>Thu Nguyen</p>
</div>
<form action="#" class="contact-form" netlify>
<div class="form-field">
<label for="name">Name</label>
<input type="text" name="name" id="name" required />
</div>
<div class="form-field">
<label for="email">Email</label>
<input
type="email"
name="email"
id="email"
required
inputmode="email"
/>
</div>
<div class="form-field">
<label for="message">How can I help you?</label>
<textarea name="message" id="message" required></textarea>
</div>
<button type="submit" class="btn btn-cta">Send</button>
</form>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<div class="footer-content">
<!-- Update href and src attributes -->
<nav>
<ol class="footer-links">
<li class="footer-link">
<a title="GitHub" href="https://github.com/thuduongn" target="_blank" rel="noopener"
><img
loading="lazy"
src="assets/images/social-links/github.svg"
alt="GitHub"
/></a>
</li>
<li class="footer-link">
<a title="Linkedin" href="https://github.com/thuduongn" target="_blank" rel="noopener"
><img
loading="lazy"
src="assets/images/social-links/linkedin.svg"
alt="Linkedin"
/></a>
</li>
</ol>
</nav>
<p class="footer-text">
© <span>2024</span> - Designed & developed by <a target="_blank" rel="noopener" href="https://github.com/thuduongn">Thu Nguyen.</a>
</p>
<label class="theme-switch" for="theme-switch">
<span>Dark Theme</span>
<input type="checkbox" id="theme-switch" role="switch"/>
</label>
</div>
</div>
</footer>
</body>
</html>