-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
76 lines (76 loc) · 2.26 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<title>Contact Me</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header>
<h1 class="name">Matthew Glassman</h1>
<section id="cont"><a href="contact.html">Contact</a></section>
<center><section id="port"><a href="portfolio.html">Portfolio</a></section></center>
<section id="bout"><a href="index.html">About</a></section>
</header>
<div class="full">
<section id="contactarea">
<h1 id="contact">Contact</h1>
<hr>
<form method="POST" action="https://formspree.io/[email protected]">
<div>
<label for="name">Name</label>
<br>
<input type="text" name="name" value="John Smith" />
</div>
<br>
<div>
<label for="mail">E-mail</label>
<br>
<input type="email" name="email" value="[email protected]"/>
</div>
<br>
<div>
<label for="message">Message</label>
<br>
<textarea id="message" name="message"></textarea>
</div>
<div>
<input type="submit" value="Submit">
</div>
<input type="hidden" name="_next" value="https://gentle-river-19225.herokuapp.com/index.html" />
</form>
<!-- <form name="contactme" method="post" action="sendform.php">
<div>
<label for="name">Name</label>
<br>
<input type="text" id="name" name="sender_name" value="John Smith" />
</div>
<br>
<div>
<label for="mail">E-mail</label>
<br>
<input type="email" id="mail" name="sender_email" value="[email protected]"/>
</div>
<br>
<div>
<label for="message">Message</label>
<br>
<textarea id="message" name="sender_message"></textarea>
</div>
<div>
<input id="submit" name="submit" type="submit" value="Submit">
</div>
</form> -->
</section>
<aside class="connection">
<h3 id="connectionHead">Connect with Me</h3>
<hr id="connectionHR">
<a href="https://github.com/matthewglassman"><img src="assets/images/githubicon.png" alt="githubicon" id="ghicon"></a>
<a href="https://www.linkedin.com/in/matthew-glassman-it"><img src="assets/images/linkedinicon.png" alt="linkedinicon" id="liicon"></a>
<a href="http://stackoverflow.com/users/7101964/matthew"><img src="assets/images/stackoverflowicon.png" alt="stackoverflowicon" id="stackicon"></a>
</aside>
</div>
<footer class="dasboot">
© Copyright 2016 Matthew Glassman
</footer>
</body>
</html>