-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
executable file
·55 lines (50 loc) · 1.99 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Luke Ewer - Drop a Line</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/frame.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="css/colours1.css">
</head>
<body>
<header>
<div class="logo"><a href="http://lukeewer.co.uk"><h1>&</h1></a></div>
<nav>
<ol>
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Work</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html" class="current-page">Contact</a></li>
</ol>
</nav>
</header>
<main>
<section class="form">
<article>
<header>
<h2>Drop me a line</h2>
</header>
<p>There will be some fancy <code>‹form›</code> action here soon, but for now you can drop me a line at: <a href="mailto:[email protected]">[email protected]</a></p>
</article>
</section>
<section class="social">
<article>
<header>
<h2>Track Me Down</h2>
</header>
<a class="social-item" href="https://twitter.com/EdwardLuke" title="Twitter"><i class="fa fa-twitter" alt="Twitter"></i></a>
<a class="social-item" href="https://www.last.fm/user/EdwardLuke" title="LastFM"><i class="fa fa-lastfm" alt="LastFM"></i></a>
<a class="social-item" href="https://github.com/EdwardLuke7" title="GitHub"><i class="fa fa-github-alt" alt-"GitHub"></i></a>
<a class="social-item" href="https://open.spotify.com/user/edwardluke" title="Spotify"><i class="fa fa-spotify" alt="Spotify"></i></a>
<a class="social-item" href="https://flickr.com/photos/126786623@N06" title="Flickr"><i class="fa fa-flickr" alt="Flickr"></i></a>
</article>
</section>
</main>
<footer>
<h5>© 2016 Luke Ewer</h5>
</footer>
</body>
</html>