-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
51 lines (49 loc) · 2.62 KB
/
contact.html
File metadata and controls
51 lines (49 loc) · 2.62 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>The Forest of Types - Contact Me</title>
<link rel="stylesheet" href="./css/default.css" />
</head>
<body>
<header>
<div class="logo">
<a href="./">The Forest of Types</a>
</div>
<nav>
<a href="./">Home</a>
<a href="./about.html">About</a>
<a href="./contact.html">Contact</a>
</nav>
<nav>
<a target="_blank" class="sociallink" title="Follow me on Twitter" href="https://www.twitter.com/typedfern">
<img alt="Follow me on Twitter" class="socialicon" src="./images/twitter.svg" border="0"></a>
<a target="_blank" class="sociallink" title="Read me on Reddit" href="https://www.reddit.com/user/typedfern/">
<img alt="Read me on Reddit" class="socialicon" src="./images/reddit.svg" border="0"></a>
<a target="_blank" class="sociallink" title="Fork me on Github" href="https://www.github.com/typedfern">
<img alt="Fork me on Github" class="socialicon" src="./images/github.svg" border="0"></a>
<a target="_blank" class="sociallink" title="Ask me things on Stackoverflow" href="https://stackoverflow.com/users/11571245/typedfern">
<img alt="Ask me things on Stackoverflow" class="socialicon" src="./images/stackoverflow.svg" border="0"></a>
</nav>
</header>
<main role="main">
<h1>Contact Me</h1>
<p>You can find me on the following sites:</p>
<ul>
<li><a href="https://www.twitter.com/typedfern">Twitter</a></li>
<li><a href="https://stackoverflow.com/users/11571245/typedfern">Stack Overflow</a></li>
<li><a href="https://www.github.com/typedfern">Github</a></li>
<li><a href="https://www.reddit.com/user/typedfern/">Reddit</a></li>
</ul>
</main>
<footer>
<div>This work is licensed under a
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a>
</div>
<div>Site proudly generated by <a href="http://jaspervdj.be/hakyll">Hakyll</a></div>
</footer>
</body>
</html>