-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
71 lines (48 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UF-8">
<meta name="viewport" content= "width-device-width, initial-scale=1.0">
<title>Dave Koeller-Contact Me</title>
<link rel="shortcut icon" href="assets/images/fergal.ico" />
<link rel ="stylesheet" href ="assets/css/style.css">
</head>
<body>
<header>
<h1>Dave Koeller</h1>
<nav>
<ul class="menu">
<li id="index"><a href="index.html">About</a></li>
<li id="portfolio"><a href="portfolio.html">Portfolio</a></li>
<li id="contact"><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<br>
<div id="form">
<!--Sends the information to my email, when the submit button is pushed-->
<form action="https://formspree.io/xkngjolk" target="_blank" method="POST">
<h2>Contact</h2>
<hr />
<div id="inner-form">
<label>Name</label>
<br>
<input type="text" name="fullname" placeholder="John Smith" class="text-area">
<br>
<label>Email</label>
<br>
<input type="text" name="email" placeholder="[email protected]" class="text-area">
<br>
<label>Message</label>
<br>
<textarea type="text" name="message" id="message" style="height:200px" class="text-area"></textarea>
<br>
<input class="button" type="submit" value="Submit">
</div>
</form>
</div>
<footer>
Copyright ©
</footer>
</body>
</html>