-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
63 lines (49 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Eric's Contact</title>
<link rel="stylesheet" type="text/css" href="Assets/css/style.css">
</head>
<body>
<header>
<div class="navbar">
<div class="name">
<h1>Eric Sayer</h1>
</div>
<div class="navlinks">
<a id="portfolio" href="portfolio.html">Portfolio</a>
<a class="active" id="contact" href="contact.html">Contact</a>
<a id="about" href="index.html">About</a>
</div>
</div>
</header>
<div class="contaner">
<section id="main-page">
<div class="pagetitle">
<h1>Contact<h1>
<ul>
<li>Use the form below or contact info below</li>
<li><a href="mailto:me@ericsayer.com">E-mail Me</a>: elsayer@msn.com</li>
<li>Phone: 801-949-3612</li>
</ul>
</div>
<hr>
<form method="post" action="https://formspree.io/netoeric@aol.com">
Name <br>
<input class="textbox" type="text" name="name"> <br><br>
Email <br>
<input class="textbox" type="email" name="elamil"> <br><br>
Message <br>
<textarea class="textbox" name="message" rows="10" cols="10"></textarea><br><br>
<input id="submit" type="submit" value="Send">
</form>
</section>
</div>
<footer>
Copyright ©
</footer>
</body>
</html>