forked from ddavevo/davevo-personal-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.html
137 lines (126 loc) · 5.03 KB
/
work.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
<!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="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/work-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="work-page">
<h2 style="margin: auto; width: 90%; text-align: center;">
This page is still under construction. For now, view my projects
<a style="font-family: gravity-bold" href="https://organic-governor-2e2.notion.site/Dave-Vo-9c3f19fe269c49818985a2fbf60881e3" target="_blank">
<ins>here</ins></a>.
</h2>
<div class="project-card">
<img class="project-image" src="images/businesscard-spread.PNG">
<div class="project-text">
<h2>Aromacovery</h2>
<P id="tool-labels">Figma, FigJam</P>
<p>Lorem ipsum however this sentence works. Words Words words.
Words all the words more words.
</p>
</div>
</div>
<div class="project-card">
<img class="project-image" src="images/businesscard-spread.PNG">
<div class="project-text">
<h2>Circle K Website</h2>
<P id="tool-labels">Figma, FigJam</P>
<p>Lorem ipsum however this sentence works. Words Words words.
Words all the words more words.
</p>
</div>
</div>
<div class="project-card">
<img class="project-image" src="images/businesscard-spread.PNG">
<div class="project-text">
<h2>Project #3</h2>
<P id="tool-labels">Figma, FigJam</P>
<p>Lorem ipsum however this sentence works. Words Words words.
Words all the words more words.
</p>
</div>
</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>