-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
35 lines (34 loc) · 1.23 KB
/
contact.php
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8"/>
<title>Contact me
</title>
<link rel="stylesheet" href="styles/reset.css" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Fira+Sans:400,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="styles/style.css" type="text/css">
</head>
<body>
<nav>
<a href="resume.html">Resume</a>
<!-- <a href="portfolio.html">Portfolio</a> -->
<a href="projects.html">Example projects</a>
<!-- <a href="blog.html">Blog</a> -->
<a href="links.html">Links</a>
<a href="contact.html">Contact Me</a>
</nav>
<section>
<article>
<p>Thanks for taking the time to view my website. If there is anything that I can help you with, or if you have any feedback for me, please use the form below to send me a message.</p>
<form action="https://formspree.io/[email protected]" method="POST">
<input type="text" name="name">
<input type="email" name="_replyto">
<input type="submit" value="Send">
</form>
</article>
</section>
<footer>
<p>© 2016 james harder</p>
</footer>
</body>
</html>