-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
100 lines (75 loc) · 3.43 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yen Luong - About</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/about.css">
<link rel="icon" href="icons/profileicon.png">
</head>
<body>
<header>
<nav>
<button class="btn_menu">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</button>
<div class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="project.html">Project</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
</nav>
<strong class="title">A bit about me</strong>
</header>
<main>
<!-- <img class="profile" src="images/luongyen.jpeg" alt="Yen Luong's profile pic"> -->
<img class="profile" src="images/luongyen-medium.jpg"
alt="Yen Luong's profile"
srcset="images/luongyen.jpeg 4032w, images/luongyen-medium.jpg 1000w, images/luongyen-small.jpg 400w"
sizes="(max-width: 768px) 400px, (max-width: 1200px) 1000px, 4032px">
<div class="introduction">
<p>Hi! My name is Yen Luong and I'm a User Experience and Interaction Design student at Drexel University. I'm originally from Vietnam and now I'm located in Philadelphia, where I'm pursuing my passion for design.</p>
<p>The rich culture and heritage of my hometown, Vietnam, have profoundly influenced my design philosophy. It's not just where I'm from; it's who I am, and that essence permeates every aspect of my work.</p>
<p>In my free time, I enjoy cafe-hopping and creating handmade items, such as crocheted pieces, for my loved ones.</p>
</div>
</main>
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="project.html">Project</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
<footer>
<p>Let's connect</p>
<div class="social-icon">
<a href="https://github.com/neyahk03" target="_blank">
<img src="icons/github-beige.png" alt="github icon">
</a>
<a href="mailto:[email protected]" target="_blank">
<img src="icons/mail-beige.png" alt="email icon">
</a>
<!-- <a href="https://www.instagram.com/" target="_blank">
<img src="icons/ig-beige.png" alt="ig icon">
</a> -->
<a href="https://www.linkedin.com/in/yenkhaluong/" target="_blank">
<img src="icons/linkedin-beige.png" alt="linkedin icon">
</a>
</div>
<div class="social">
<ul>
<li><a href="https://github.com/neyahk03" target="_blank">GITHUB</a></li>
<li><a href="mailto:[email protected]" target="_blank">EMAIL</a></li>
<!-- <li><a href="https://www.instagram.com/" target="_blank">INSTAGRAM</a> </li> -->
<li><a href="https://www.linkedin.com/in/yenkhaluong/" target="_blank">LINKEDIN</a></li>
</ul>
</div>
</footer>
<script src="scripts/index.js"></script>
</body>
</html>