-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
46 lines (42 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8" />
<title>Zeke Graves - Contact Me</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
</head>
<body>
<!-- Header -->
<header>
<div id="headerContent">
<!-- Name -->
<h1 id="logo">Zeke Graves</h1>
<!-- Navigation Bar -->
<nav>
<a href="index.html">About</a> |
<a href="portfolio.html">Portfolio</a> |
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<!-- Contact -->
<main>
<h1>Contact</h1>
<hr />
<form>
<p>Name</p>
<input type="text" name="name" value="John Smith" />
<p>Email</p>
<input type="text" name="email" value="[email protected]"/>
<p>Message</p>
<textarea name="message"></textarea>
<br />
<input type="submit" value="Submit" />
</form>
</main>
<!-- Footer -->
<footer>
<small>© Copyright 2018, Zeke Graves</small>
</footer>
</body>
</html>