-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (64 loc) · 2.94 KB
/
Copy pathindex.html
File metadata and controls
67 lines (64 loc) · 2.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
<link rel="stylesheet" href="./css/custom.css">
<title>Home</title>
</head>
<body>
<header>
<h1>zack hoang</h1>
<p>all you need to know about me</p>
<nav>
<a href="./index.html">Home</a>
<a href="./projects.html">Projects</a>
<a href="./resume/vietanhhoang_resume_iteration_9.pdf" target="_blank">Resume</a>
</nav>
</header>
<main>
<section id="about">
<h2>About</h2>
<p>Hi! I'm Viet Anh Hoang, though I often refer to myself as Zack, a name taken inspiration from a Final
Fantasy VII character, Zack Fair. My journey with web development started since summer 2023 with <a
href="https://theodinproject.com">The Odin Project</a>. Ever since, I have learnt and built many
applications that uses core web development fundamentals within the JavaScript ecosystem. Right now, I'm
a student at SFU that aspires to bring elegant solutions into web development projects.</p>
</section>
<section id="skills">
<h2>Skills</h2>
<h3>Front End</h3>
<div class="skills-icon">
<img alt="html" src="./logos/html.svg">
<img alt="css" src="./logos/css.svg">
<img alt="javascript" src="./logos/javascript.svg">
<img alt="react" src="./logos/react.svg">
</div>
<h3>Back End</h3>
<div class="skills-icon">
<img alt="nodejs" src="./logos/nodejs.svg">
<img alt="expressjs" src="./logos/logotype-dark.svg">
<img alt="postgresql" src="./logos/postgresql.svg">
<img alt="prisma" src="./logos/Prisma-LightLogo.svg">
</div>
<h3>Miscelleanous</h3>
<div class="skills-icon">
<img alt="git" id="skills-icon-git" src="./logos/Git-Icon-White.svg">
<img alt="ubuntu" src="./logos/Canonical Ubuntu Dark.svg">
</div>
</section>
</main>
<footer id="contact">
<h2>Contact Me</h2>
<div class="contact-container">
<a href="mailto:vah2@sfu.ca" target="_blank"><img src="./logos/icons8-gmail-logo-filled.svg"></a>
<a href="https://github.com/ZackHoang" target="_blank"><img class="contact-logo"
src="./logos/github-mark-white.svg" /></a>
<a href="https://www.linkedin.com/in/viet-anh-hoang-a504911b1/" target="_blank"><img class="contact-logo"
id="linked-in-logo" src="./logos/icons8-linkedin.svg" /></a>
</div>
<p>This page was made possible by <a href="https://simplecss.org/">Simple CSS</a></p>
</footer>
</body>
</html>