-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
117 lines (112 loc) · 2.72 KB
/
contact.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
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>Jonathan Evans</title>
</head>
<body>
<div class="topbar">
<div class="headshot_container">
<img
src="headshot.jpg"
alt="A headshot of Jonathan Evans"
class="headshot"
/>
</div>
<div class="title_container">
<h1 class="page_title">Jonathan Evans</h1>
<h2 class="subtitle">Contact</h2>
</div>
<nav class="navigation">
<a href="index.html" class="nav_link link">About</a>
<a href="#footer" class="nav_link link">Links</a>
<a
href="mailto:[email protected]"
class="nav_link link"
>Contact</a
>
<a href="blog.html" class="nav_link link">Blog</a>
</nav>
</div>
<hr class="page_break" />
<div id="page_content">
<div id="contact_block">
<div id="about_block">
<div id="about_section" class="text_block">
<p>
If you would like to contact me, I generally respond
best to emails. You can reach me at
<a href="mailto:[email protected]"
>
</p>
<p>
However I am also available for direct-message on
the following platforms:
</p>
<ul>
<li>
<a
href="https://www.printables.com/@jevndev_1637559"
>Printables</a
>
</li>
<li>
<a href="https://www.linkedin.com/in/jevndev/"
>LinkedIn</a
>
</li>
</ul>
</div>
</div>
</div>
<footer id="footer">
<hr class="page_break" />
<div class="footer_bar">
<div class="footer_links">
<a
href="https://www.printables.com/@jevndev_1637559"
class="footer_link link"
>
<svg
id="footer_link_icon_printables"
class="footer_link_icon"
>
<use
xlink:href="printables.svg#printables_svg"
/>
</svg>
</a>
<a
href="https://github.com/jevndev"
class="footer_link link"
>
<svg
id="footer_link_icon_github"
class="footer_link_icon"
>
<use xlink:href="github.svg#github_svg" />
</svg>
</a>
<a
href="https://www.linkedin.com/in/jevndev/"
class="footer_link link"
>
<svg
id="footer_link_icon_linkedin"
class="footer_link_icon"
>
<use xlink:href="linkedin.svg#linkedin_svg" />
</svg>
</a>
</div>
</div>
</footer>
</div>
</body>
</html>