-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
executable file
·46 lines (46 loc) · 1.85 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
<!DOCTYPE html>
<html>
<head>
<meta charset="uft-8">
<title>Joshua Cypher | Developer</title>
<link rel="stylesheet" href="css/normalize.css">
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700|Open+Sans:300italic,400italic,600italic,700italic,800italic,400,700,800,300,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/responsive.css">
<meta name="viewport" content="width-device-width, initial-scale=1.0">
</head>
<body>
<header>
<a href="index.html" id="logo">
<h1>Joshua Cypher</h1>
<h2>Creative, Developer & Entrepreneur</h2>
</a>
<nav>
<ul>
<li><a href="index.html" >Portfolio</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html" class="selected">Contact</a></li>
</ul>
</nav>
</header>
<div id="wrapper">
<section id="primary">
<h3>General Information</h3>
<p>I am available for all kinds of work. Please dont hestitate to contact me.</p>
</section>
<section id="secondary">
<h3>Contact Details</h3>
<ul class="contact-info">
<li class="phone"><a href="tel:615-431-9869">828-674-2796</a></li>
<li class="mail"><a href="mailto:[email protected]">[email protected]</a></li>
<li class="twitter"><a href="http://twitter.com/intent/tweet?screen_name=joshuacypher">@joshuacypher</a></li>
</ul>
</section>
</div>
<footer>
<a class="social-icon" href="http://twitter.com/joshuacypher"><img src="img/twitter-wrap.png" alt="Twitter Logo"></a>
<a class="social-icon" href="http://facebook.com/josh.cypher"><img src="img/facebook-wrap.png" alt="Facebook Logo"></a>
<p>© 2014 Joshua Cypher</p>
</footer>
</body>
</html>