-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
58 lines (52 loc) · 2.11 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Luke Bennett's Contact</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet"></head>
<body>
<!-- NAVIGATION BAR -->
<div class="main-nav">
<ul class="nav">
<li class="name">Luke Bennett</li>
<li><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="passion-gallery.html">Passion Gallery</a></li>
<li><a href="contact.html" class="selected">Contact</a></li>
</ul>
</div>
<!-- HEADER IMAGE AND TITLES - NORMAL IMAGE AND 935PX RESONSIVE IMAGE -->
<header class="contact">
<h1 class="tag page-title">Contact</h1>
</header>
<header class="contact-large">
<h1 class="tag page-title">Contact</h1>
</header>
<!-- MAIN CONTENT - INFO CARD -->
<main class="flex">
<div class="card">
<h2>Info</h2>
<p>If you have any questions or want a chat about services I have to offer. Please do not hesitate to contact me via any of the options on this page!</p>
<p></p>
</div>
<!-- MAIN CONTENT - CONTACT TEL AND EMAIL -->
<div class="card">
<h2>Contact Me</h2>
<ul class="contact-info">
<li><a href="tel:+44(0)7936875414">Phone: +44 (0)7936875414 </a></li>
<li class="email"><a href="mailto:lukebennettuk@outlook.com">Email: lukebennettuk@outlook.com</a></li>
</ul>
</div>
</main>
<!-- FOOTER AND SOCIAL LINKS -->
<footer>
<ul>
<li><a href="https://twitter.com/lukebennettuk" class="social twitter" target="_blank">Twitter</a></li>
<li><a href="https://github.com/LukeBennettUK" class="social github" target="_blank">Github</a></li>
</ul>
<p class="copyright"><small>© 2017, Luke Bennett</small></p>
</footer>
</body>
</html>