-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
executable file
·59 lines (55 loc) · 2.34 KB
/
contact.html
File metadata and controls
executable file
·59 lines (55 loc) · 2.34 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
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Kyle Steineman | Web Developer</title>
<link rel="stylesheet" href="css/normalize.css">
<link href="https://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400,400i,700,700i,800i" rel="stylesheet">
<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>Kyle Steineman</h1>
<h2>Web Developer</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 new development work, whether paid or non-profit. Please get in touch with me if you'd like more information.</p>
</section>
<section id="secondary">
<h3>Contact Details</h3>
<ul class="contact-info">
<li class="phone"><a href="tel:260-228-0688">260-228-0688</a></li>
<li class="email"><a href="mailto:kmsteineman@gmail.com">kmsteineman@gmail.com</a></li>
<li class="twitter"><a href="http://twitter.com/intent/tweet?screen_nanme=kyle_steineman">@kyle_steineman</a></li>
</ul>
</section>
<footer>
<a href= "http://twitter.com/kyle_steineman"><img src="img/twitter-wrap.png" alt="Twitter Logo" class="social-icon"></a>
<a href= "http://facebook.com/kmsteineman"><img src="img/facebook-wrap.png" alt="Facebook Logo" class="social-icon"></a>
<a href= "https://github.com/kyleropractor"><img src="img/github.png" alt="Github Logo" class="social-icon"></a>
<p>© 2016 Kyle Steineman</p>
</footer>
</div>
</body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-93911351-1', 'auto');
ga('send', 'pageview');
</script>
</html>