forked from ddavevo/davevo-personal-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
164 lines (147 loc) · 6.31 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dave Vo</title>
<link rel="icon" type="image/x-icon" href="images/davevo_favicon.png">
<!--CSS-->
<link rel="stylesheet" href="styles/fonts.css">
<link rel="stylesheet" href="styles/general.css">
<link rel="stylesheet" href="styles/header.css">
<link rel="stylesheet" href="styles/footer.css">
<link rel="stylesheet" href="styles/about-page.css">
<script src="javascript/test.js"></script>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-D3KQT24T12"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-D3KQT24T12');
</script>
<body>
<header class="header">
<div id="header">
<div class="wordmark"><a href="index.html">dave vo</a></div>
</div>
<div class="menu-options">
<div class="header-text">
<a href="https://drive.google.com/file/d/1OCZUXgrLguEa5f5sjY4AUzZDR1TiWaqZ/view?usp=sharing" target="_blank">
Résumé
</a>
</div>
<div class="header-text">
<a href="work.html">
Work
</a>
</div>
<div class="header-text">
<a href="about.html">
About
</a>
</div>
</div>
<a href="index.html">
<img class="small-shrink-logo" src="images/circular-logo.png" alt="Logo Visual">
</a>
<button type="button">
<div class="hamburger" onclick="myFunction(this)">
<div class="ham-bars" id="bar1"></div>
<div class="ham-bars" id="bar2"></div>
<div class="ham-bars" id="bar3"></div>
<div class="menu">
<ul class="hamburger-menu-options">
<li id="hamburger-menu-options">
<a href="about.html">About</a>
</li>
<li id="hamburger-menu-options">
<a href="work.html">
Work
</a>
</li>
<li id="hamburger-menu-options">
<a href="https://drive.google.com/file/d/1OCZUXgrLguEa5f5sjY4AUzZDR1TiWaqZ/view?usp=sharing" target="_blank">
Résumé
</a>
</li>
</ul>
</div>
</div>
</button>
</header>
<main class="about-page">
<div class="intro">
<div class="pictures-col">
<img class="profile-pic" src="/images/sme-profilepic.PNG">
<img class="secondary-pic" src="/images/businesscard-selfie.jpg">
</div>
<div class="blurb">
<div class="blurb-header">
a creative at heart
</div>
<p>
I was heavily interested in graphic design
and the industry. Over time, I honed my design skills
and my passion for visual communication. Wanting to explore what
design could do in a more holistic scope, I expanded my learning to
the UI/UX field. <br><br>
My interests have pivoted toward HCI and user-centered design,
particuarly in direct manipulation interfaces and novel data
representations to foster creative exploration and synthesis. <br><br>
Currently, I’m volunteering as a research assistant at
<a style="font-family: gravity-bold;" href="https://designlab.ucsd.edu">
<ins>The Design Lab at UCSD</ins></a> where I will be running
user studies and carrying out rapid prototyping. <br><br>
On the side, I'm working on illustrations or graphic design.
You can check me out here as well: <br><br>
<a style="font-family: gravity-bold;"
href="https://ucsdguardian.org/staff_name/dave-vo/">
📰 <ins>The UCSD Guardian</ins></a><br>
<a style="font-family: gravity-bold;"
href="https://maximalistmagazine.wixsite.com/maximalist-magazine/blog">
👽 <ins>Maximalist Magazine</ins></a>
</p>
</div>
</div>
<div class="container">
<div class="photo-gallery">
<div class="column">
<img src="images/businesscard-spread.PNG">
<img src="images/prebys-couch2.PNG">
<img src="images/prebys-ceiling2.JPG">
<img src="images/tayninhshrine.JPG">
</div>
<div class="column">
<img src="images/unearthed2.png">
<img src="images/filmhaus.png">
<img src="images/sme-light2.JPG">
<img src="images/guardian-headshot.jpeg">
</div>
</div>
</div>
<div>
<p style="text-align: center; padding-top: 1.4rem;">
Image credits: Dave Vo
</p>
</div>
</main>
<footer class="footer">
<div class="footer-text">
<p id="footer-text">@2024 · designing upwards</p>
</div>
<div class="social-media-icons">
<a href="https://github.com/ddavevo" target="_blank">
<img class="media-links" style="padding-right: 0rem;" src="images/github-logo.svg">
</a>
<a href="https://www.linkedin.com/in/dave-vo" target="_blank">
<img class="media-links" src="images/linkedin-logo.svg">
</a>
<a href="mailto: [email protected]">
<img class="media-links" src="images/email-icon.svg">
</a>
</div>
</footer>
</body>
</html>