-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
66 lines (53 loc) · 1.94 KB
/
resume.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>home</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="header">
<nav class="header-nav">
<ul>
<li><a href="/">login</a></li>
</ul>
</nav>
</div>
<div class="container">
<aside class="sidebar">
<nav class="sidebar-logo">
<a href="/">Goldey</a>
</nav>
<nav class="sidebar-nav">
<ul>
<li><a href="/">home</a></li>
<li><a href="blog.html">blog</a></li>
<li><a href="downloads.html">downloads</a></li>
<li><a href="contact.html">contact</a></li> <!-- show email in form -->
<li><a href="resume.html" class="active">resume</a></li>
<li><a href="art.html">art</a></li>
</ul>
</nav>
<nav class="sidebar-footer">
<a href="https://www.github.com/qoldey">
<img src="img/github-logo-light.png" alt="Github" style="width:25px; height: auto;">
</a>
<a href="https://www.linkedin.com/in/qoldey">
<img src="img/linkedin-logo.png" alt="Linkedin" style="width:25px; height: auto;">
</a>
</nav>
</aside>
<main class="content">
<h1>Welcome</h1>
<article>
<p>The site is still under construction. Please feel free to navigate around what is here.</p>
</article>
<article>
<h2>Contact</h2>
<p>Please <a href="contact.html">contact</a> <a href="mailto:[email protected]">[email protected]</a> with any questions or concerns</p>
</article>
</main>
</div>
</body>
</html>