forked from ddavevo/davevo-personal-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (108 loc) · 4.44 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
<!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/landing-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>
<a href="index.html">
<img class="small-shrink-logo" src="images/circular-logo.png" alt="Logo Visual">
</a>
<button type="button" 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>
</button>
<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>
</header>
<main class="landing-page">
<div class="blurb-section">
<section id="blurb-section">
<div class="landing-body">
<p>I am a...</p>
</div>
<div class="landing-text" >
<div id="landing-text">designer,</div>
<div id="landing-text" style="color: #005b6d">researcher,</div>
<div id="landing-text" style="color: var(--navy)">creative.</div>
</div>
<div class="landing-body" style="margin-top: 1rem">
<p>
Hello, I'm an upcoming UI/UX designer studying at UC San Diego.
I seek to enhance experiences, raise creative ceilings,
and most of all: engage people.
</p>
</div>
</section>
<div class="view-projects">
<div class="view-projects-button">
<a href="https://organic-governor-2e2.notion.site/Dave-Vo-9c3f19fe269c49818985a2fbf60881e3?pvs=4" target="_blank">
Check out my work!
</a>
</div>
</div>
</div>
<div class="logo-visual-section">
<img class="logo-visual" src="images/circular-logo.png" alt="Logo Visual">
</div>
</main>
<!--
<section>
hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello
</section>
-->
<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>