-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
641 lines (624 loc) · 22.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Portfolio</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="Free HTML Templates" name="keywords" />
<meta content="Free HTML Templates" name="description" />
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome -->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css"
rel="stylesheet"
/>
<!-- Libraries Stylesheet -->
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet" />
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet" />
<!-- Customized Bootstrap Stylesheet -->
<link href="css/style1.css" rel="stylesheet" />
<link href="css/style2.css" rel="stylesheet" />
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="51">
<!-- Navbar Start -->
<nav
class="navbar fixed-top shadow-sm navbar-expand-lg bg-light navbar-light py-3 py-lg-0 px-lg-5"
>
<a href="index.html" class="navbar-brand ml-lg-3">
<h1 class="m-0 display-5">
<span class="text-primary">Thu's</span> Portfolio
</h1>
</a>
<button
type="button"
class="navbar-toggler"
data-toggle="collapse"
data-target="#navbarCollapse"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse px-lg-3" id="navbarCollapse">
<div class="navbar-nav m-auto py-0">
<a href="#home" class="nav-item nav-link active">Home</a>
<a href="#about" class="nav-item nav-link">About</a>
<a href="#skill" class="nav-item nav-link">Skill</a>
<a href="#portfolio" class="nav-item nav-link">Portfolio</a>
<a href="#contact" class="nav-item nav-link">Contact</a>
</div>
<a
href="file/cv.pdf"
class="btn btn-outline-primary d-none d-lg-block"
download
>Hire Me</a
>
</div>
</nav>
<!-- Navbar End -->
<!-- Header Start -->
<div
class="container-fluid bg-primary d-flex align-items-center mb-5 py-5"
id="home"
style="min-height: 100vh"
>
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5 px-5 pl-lg-0 pb-5 pb-lg-0">
<img
class="img-fluid w-100 rounded-circle shadow-sm"
src="img/profile.jpg"
alt=""
/>
</div>
<div class="col-lg-7 text-center text-lg-left">
<h3 class="text-white font-weight-normal mb-3">I'm</h3>
<h1
class="display-3 text-uppercase text-primary mb-2"
style="-webkit-text-stroke: 2px #ffffff"
>
Nguyen Anh Thu
</h1>
<h1
class="typed-text-output d-inline font-weight-lighter text-white"
></h1>
<div class="typed-text d-none">
Web Developer, Front End Developer
</div>
<div
class="d-flex align-items-center justify-content-center justify-content-lg-start pt-5"
>
<a href="file/cv.pdf" class="btn btn-outline-light mr-5" download
>Download CV</a
>
</div>
</div>
</div>
</div>
</div>
<!-- Header End -->
<!-- About Start -->
<div class="container-fluid py-5" id="about">
<div class="container">
<div
class="position-relative d-flex align-items-center justify-content-center"
>
<h1
class="display-1 text-uppercase text-white"
style="-webkit-text-stroke: 1px #dee2e6"
>
About
</h1>
<h1 class="position-absolute text-uppercase text-primary">
About Me
</h1>
</div>
<div id="about" class="row about-section">
<div class="col-lg-6 about-card">
<h3 class="font-weight-light">Who am I ?</h3>
<span class="line mb-5"></span>
<h5 class="mb-3">A Web Developer Located In Our Lovely Earth</h5>
<p>
My name is Thu and I am a student at faculty of Information
Technology, VNUHCM University of Science. I am looking for a job
with the desire to apply my skills in HTML, CSS, JavaScript and
learn new knowledge from reality as well as gain more experience.
My objective is to become a professional web developer who can
create efficient, user-friendly websites that meet all project
requirements.
</p>
<a href="file/cv.pdf" class="btn btn-outline-primary" download>
<i class="icon-down-circled2"></i>Download My CV
</a>
</div>
<div class="col-lg-6 about-card">
<h3 class="font-weight-light">Personal Info</h3>
<span class="line mb-5"></span>
<ul class="mt40 info list-unstyled">
<li><span>Birthdate</span> : 05/12/2000</li>
<li><span>Email</span> : [email protected]</li>
<li><span>Phone</span> : 0344 282 406</li>
<li>
<span>Address</span> : Long Thanh My Ward, Thu Duc City, Ho Chi
Minh City, Vietnam.
</li>
</ul>
<div class="mb-4">
<a
class="btn btn-outline-primary btn-social mr-2"
href="https://www.facebook.com/aoimelody512/"
target="_blank"
><i class="fab fa-facebook-f"></i
></a>
<a
class="btn btn-outline-primary btn-social mr-2"
href="https://www.linkedin.com/in/nguyenthu0512/"
target="_blank"
><i class="fab fa-linkedin-in"></i
></a>
<a
class="btn btn-outline-primary btn-social"
href="https://github.com/NguyenThu512"
target="_blank"
><i class="fab fa-github"></i
></a>
</div>
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Skill Start -->
<div class="container-fluid py-5" id="skill">
<div class="container">
<div
class="position-relative d-flex align-items-center justify-content-center"
>
<h1
class="display-1 text-uppercase text-white"
style="-webkit-text-stroke: 1px #dee2e6"
>
Skills
</h1>
<h1 class="position-absolute text-uppercase text-primary">
My Skills
</h1>
</div>
<div class="row align-items-center">
<div class="col-md-6">
<div class="card">
<div class="card-header">
<div class="mt-2">
<h4>Technical Skills</h4>
<span class="line"></span>
</div>
</div>
<div class="card-body">
<div class="skill mb-4">
<div class="d-flex justify-content-between">
<h6 class="font-weight-bold">HTML</h6>
<h6 class="font-weight-bold">90%</h6>
</div>
<div class="progress">
<div
class="progress-bar bg-info"
role="progressbar"
aria-valuenow="90"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="skill mb-4">
<div class="d-flex justify-content-between">
<h6 class="font-weight-bold">CSS</h6>
<h6 class="font-weight-bold">85%</h6>
</div>
<div class="progress">
<div
class="progress-bar bg-warning"
role="progressbar"
aria-valuenow="85"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="skill mb-4">
<div class="d-flex justify-content-between">
<h6 class="font-weight-bold">Javascript</h6>
<h6 class="font-weight-bold">80%</h6>
</div>
<div class="progress">
<div
class="progress-bar bg-danger"
role="progressbar"
aria-valuenow="80"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-header">
<div class="mt-2">
<h4>Soft Skills</h4>
<span class="line"></span>
</div>
</div>
<div class="card-body">
<p>Work ethic</p>
<p>Problem-solving</p>
<p>Teamwork & cooperation</p>
<p>Time management</p>
<p>Languages: English & Japanese</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Skill End -->
<!-- Portfolio Start -->
<div class="container-fluid pt-5 pb-3" id="portfolio">
<div class="container">
<div
class="position-relative d-flex align-items-center justify-content-center"
>
<h1
class="display-1 text-uppercase text-white"
style="-webkit-text-stroke: 1px #dee2e6"
>
Gallery
</h1>
<h1 class="position-absolute text-uppercase text-primary">
My Portfolio
</h1>
</div>
<div class="row">
<div class="col-lg-4 mb-5">
<div class="position-relative mb-4 portfolio-item">
<img
class="img-fluid rounded w-100"
src="img/music_player.png"
alt=""
/>
<div class="content-holder">
<div class="text-holder">
<h6 class="title">MUSIC PLAYER</h6>
<p class="subtitle">
HTML, CSS, and JavaScript are used to create a music player.
</p>
<a
class="source_code"
href="https://github.com/NguyenThu512/Music-Player"
target="_blank"
>
<p class="subtitle">
<span class="code"><</span> Source Code
<span class="code">/></span>
</p></a
>
</div>
</div>
</div>
</div>
<div class="col-lg-4 mb-5">
<div class="position-relative mb-4 portfolio-item">
<img
class="img-fluid rounded w-100"
src="img/to_do_list.png"
alt=""
/>
<div class="content-holder">
<div class="text-holder">
<h6 class="title">TO DO LIST</h6>
<p class="subtitle">
HTML, CSS, and JavaScript are used to create a to do list.
</p>
<a
class="source_code"
href="https://github.com/NguyenThu512/To-Do-List"
target="_blank"
>
<p class="subtitle">
<span class="code"><</span> Source Code
<span class="code">/></span>
</p></a
>
</div>
</div>
</div>
</div>
<div class="col-lg-4 mb-5">
<div class="position-relative mb-4 portfolio-item">
<img
class="img-fluid rounded w-100"
src="img/bookworm.png"
alt=""
/>
<div class="content-holder">
<div class="text-holder">
<h6 class="title">BOOKWORM</h6>
<p class="subtitle">
Course projects: Create a web to buy and sell books online.
</p>
<a
class="source_code"
href="https://github.com/NguyenThu512/BookWorm"
target="_blank"
>
<p class="subtitle">
<span class="code"><</span> Source Code
<span class="code">/></span>
</p></a
>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 mb-5">
<div class="position-relative mb-4 portfolio-item">
<img
class="img-fluid rounded w-100"
src="img/note_app.png"
alt=""
/>
<div class="content-holder">
<div class="text-holder">
<h6 class="title">NOTE APP</h6>
<p class="subtitle">
HTML, CSS, and JavaScript are used to create a note app.
</p>
<a
class="source_code"
href="https://github.com/NguyenThu512/JavaScript-projects-for-beginner/tree/main/note_app"
target="_blank"
>
<p class="subtitle">
<span class="code"><</span> Source Code
<span class="code">/></span>
</p></a
>
</div>
</div>
</div>
</div>
<div class="col-lg-4 mb-5">
<div class="position-relative mb-4 portfolio-item">
<img
class="img-fluid rounded w-100"
src="img/english_dictionary.png"
alt=""
/>
<div class="content-holder">
<div class="text-holder">
<h6 class="title">ENGLISH DICTIONARY</h6>
<p class="subtitle">
A simple web with the function of looking up English words.
</p>
<a
class="source_code"
href="https://github.com/NguyenThu512/JavaScript-projects-for-beginner/tree/main/english_dictionary"
target="_blank"
>
<p class="subtitle">
<span class="code"><</span> Source Code
<span class="code">/></span>
</p></a
>
</div>
</div>
</div>
</div>
<div class="col-lg-4 mb-5">
<div class="position-relative mb-4 portfolio-item">
<img
class="img-fluid rounded w-100"
src="img/temperature_converter.png"
alt=""
/>
<div class="content-holder">
<div class="text-holder">
<h6 class="title">TEMPERATURE CONVERTER</h6>
<p class="subtitle">
A simple web that converts temperatures.
</p>
<a
class="source_code"
href="https://github.com/NguyenThu512/JavaScript-projects-for-beginner/tree/main/temperature_converter"
target="_blank"
>
<p class="subtitle">
<span class="code"><</span> Source Code
<span class="code">/></span>
</p></a
>
</div>
</div>
</div>
</div>
</div>
<!--
<div class="row">
<div class="col-lg-4 mb-5">
<div class="position-relative mb-4 portfolio-item">
<img
class="img-fluid rounded w-100"
src="img/music_player.png"
alt=""
/>
<div class="content-holder">
<div class="text-holder">
<h6 class="title">MUSIC PLAYER</h6>
<p class="subtitle">
HTML, CSS, and JavaScript are used to create a music player.
</p>
<a
class="source_code"
href="https://github.com/NguyenThu512/Music-Player"
target="_blank"
>
<p class="subtitle">
<span class="code"><</span> Source Code
<span class="code">/></span>
</p></a
>
</div>
</div>
</div>
</div>
<div class="col-lg-4 mb-5">
<div class="position-relative mb-4 portfolio-item">
<img
class="img-fluid rounded w-100"
src="img/to_do_list.png"
alt=""
/>
<div class="content-holder">
<div class="text-holder">
<h6 class="title">TO DO LIST</h6>
<p class="subtitle">
HTML, CSS, and JavaScript are used to create a to do list!
</p>
<a
class="source_code"
href="https://github.com/NguyenThu512/To-Do-List"
target="_blank"
>
<p class="subtitle">
<span class="code"><</span> Source Code
<span class="code">/></span>
</p></a
>
</div>
</div>
</div>
</div>
<div class="col-lg-4 mb-5">
<div class="position-relative mb-4 portfolio-item">
<img
class="img-fluid rounded w-100"
src="img/bookworm.png"
alt=""
/>
<div class="content-holder">
<div class="text-holder">
<h6 class="title">BOOKWORM</h6>
<p class="subtitle">
Course projects: Create a web to buy and sell books online.
</p>
<a
class="source_code"
href="https://github.com/NguyenThu512/BookWorm"
target="_blank"
>
<p class="subtitle">
<span class="code"><</span> Source Code
<span class="code">/></span>
</p></a
>
</div>
</div>
</div>
</div>
</div>
-->
<div
class="position-relative d-flex align-items-center justify-content-center"
>
<a
href="https://github.com/NguyenThu512"
class="btn btn-outline-primary"
target="_blank"
>
<i class="icon-down-circled2"></i>More
</a>
</div>
</div>
</div>
<!-- Portfolio End -->
<!-- Footer/Contact Start -->
<div
id="contact"
class="container-fluid bg-primary text-white mt-5 py-5 px-sm-3 px-md-5"
>
<div class="container text-center py-5">
<div
class="position-relative d-flex align-items-center justify-content-center"
>
<h1
class="display-1 text-uppercase text-primary"
style="-webkit-text-stroke: 1px #dee2e6"
>
Contact
</h1>
<h1 class="position-absolute text-uppercase text-white">
Contact Me
</h1>
</div>
<div>
<p class="large">NGUYEN ANH THU</p>
</div>
<div>
<p class="large">
<i class="fas fa-phone-alt" style="color: #fff"></i> 0344 282 406
</p>
</div>
<div>
<p class="large">
<i class="fas fa-envelope" style="color: #fff"></i>
</p>
</div>
<div class="d-flex justify-content-center mb-4">
<a
class="btn btn-light btn-social mr-2"
href="https://www.facebook.com/aoimelody512/"
target="_blank"
><i class="fab fa-facebook-f"></i
></a>
<a
class="btn btn-light btn-social mr-2"
href="https://www.linkedin.com/in/nguyenthu0512/"
target="_blank"
><i class="fab fa-linkedin-in"></i
></a>
<a
class="btn btn-light btn-social"
href="https://github.com/NguyenThu512"
target="_blank"
><i class="fab fa-github"></i
></a>
</div>
</div>
</div>
<!-- Footer/Contact End -->
<!-- Scroll to Bottom -->
<i class="fa fa-2x fa-angle-down text-white scroll-to-bottom"></i>
<!-- Back to Top -->
<a href="#" class="btn btn-outline-dark px-0 back-to-top"
><i class="fa fa-angle-double-up"></i
></a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
<script src="lib/typed/typed.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/isotope/isotope.pkgd.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>