-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
31 lines (31 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<title>Mark Langhamer</title>
</head>
<body>
<section class="top">
<h1>Mark Langhamer</h1>
<nav>
<a href="index.html">About</a> |
<a href="portfolio.html">Portfolio</a> |
<a href="contact.html">Contact</a> |
</nav>
</section>
<div class="container">
<section class="outline">
<h2>Contact</h2>
<form>
Name:<br>
<textarea rows="1" cols="150" placeholder="Jon Doe"></textarea><br>
Email:<br>
<textarea rows="1" cols="150" placeholder="[email protected]"></textarea><br>
Message:<br>
<textarea rows="10" cols="150" placeholder="Write your message here"></textarea><br>
</form>
</section>
</div>
<footer>© Copyright 2018 Mark Langhamer</footer>
</body>
</html>