-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.html
38 lines (35 loc) · 1.27 KB
/
cv.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Cabin+Sketch:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" type="text/css">
<title>My CV</title>
</head>
<body>
<header id="header">
<a href="index.html">
<h1 id="site-logo">gingerzoealex</h1>
</a>
<hr>
</header>
<nav id="menu">
<a href="blog.html">Oh For Blog's Sake</a>
<br>
<a href="speaking-events.html">What Am I Talking About?</a>
<hr>
</nav>
<section class="section">
<h3>Download my CV <a href="zoe-cv.pdf" download>here</a> if you're interested in discussing my next role!</h3>
<embed src="zoe-cv.pdf" type="application/pdf" width="100%" height="100%" />
</section>
<footer class="footer">
Made with ❤ by Zoe Gadon-Thompson.
<br />Hosted on Github Pages. <br />Written in plain HTML with CSS.
<br />
Feel free to <a href="mailto:[email protected]">contact me</a>.
</footer>
</body>
</html>