-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
34 lines (32 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css" />
<script
src="https://kit.fontawesome.com/b214d16b30.js"
crossorigin="anonymous"
></script>
<title>fowlis | Contact</title>
</head>
<body>
<aside class="sidebar">
<p style="font-size: 18px !important">fowlis.github.io</p>
<a href="index.html"><i class="fa fa-fw fa-home"></i> Home</a>
<a href="aboutme.html"><i class="fa fa-fw fa-user"></i> About Me</a>
<a href="./blog/blog.html"><i class="fa fa-fw fa-book"></i> Blog</a>
<a href="projects.html"><i class="fa fa-fw fa-wrench"></i> Projects</a>
<a href="contact.html"><i class="fa fa-fw fa-envelope"></i> Contact</a>
<a href="https://github.com/fowlis" target="_blank"
><i class="fa fa-fw fa-github"></i> GitHub</a
>
<p class="sidebar-bottom">totally fake copyright text™</p>
</aside>
<div style="padding: 10px"></div>
<main class="content">
<h1>Preferred contact methods</h1>
<p style="font-size: 18px; margin: 0 0 20px 0">
Email: <code>[email protected]</code><br /><br />
</p>
</main>
</body>
</html>