-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
40 lines (37 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Contatct</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header>
<div class="container">
<h1>Andrew Manley</h1>
<nav>
<ul>
<li><a href="index.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li id="lastLink"><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section>
<h2>Contact</h2>
<form action="">
<label>First Name</label>
<input type="text" placeholder="Enter First Name..." name="firstName">
<label>Last Name</label>
<input type="text" placeholder="Enter Last Name..." name="lastName">
<label>Message</label>
<textarea placeholder="Enter Message..." name="message"></textarea>
<input type="submit" value="Submit">
</form>
</section>
<footer>
Andrew Manley Copyright 2018 ©
</footer>
</body>
</html>