-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
42 lines (39 loc) · 1.6 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
<!Doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Dan Dickershied | Artist</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css">
<link href='https://fonts.googleapis.com/css?family=Montserrat|Raleway:400,800italic,700' 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>Dan Dickerschied</h1>
</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>
<a href="mailto:[email protected]" target="_top"><img src="Img/paperplane.png" alt="mail plane" class="mail-photo"></a>
<h3>Contact Me</h3>
<p>Drop me a line to talk about art, comission pieces or anything else that comes to mind.</p>
</section>
<footer>
<a href="https://www.facebook.com/dan.dickerscheid?fref=ts"><img src="Img/facebook.png" alt="facebook logo" class="social-icon"></a>
<a href="https://www.instagram.com/dandsculpture/"><img src="Img/icon_instagram.png" alt="instagram logo" class="social-icon"></a>
<p>© 2016 Dan Dickerschied</p>
</footer>
</div>
</body>
</html>