-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
51 lines (48 loc) · 1.73 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
<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>Scott Bickell : Basic Portfolio : Contact</title>
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="main-header">
<div class="container">
<div class="my-name teal-bg">
<h1><a href="index.html">Scott Bickell</a></h1>
</div>
<nav>
<ul>
<li><a href="index.html">About</a></li>
<li><span class="divider">| </span><a href="portfolio.html">Portfolio</a></li>
<li><span class="divider">| </span><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</div>
<div class="container main">
<h2>Contact</h2>
<div class="hr"></div>
<form action="" method="get">
<div class="form-item">
<label for="name">Name:</label>
<input type="text" name="name" id="name" placeholder="John Smith">
</div>
<div class="form-item">
<label for="email">Email:</label>
<input type="email" name="email" id="email" placeholder="[email protected]">
</div>
<div class="form-item">
<label for="message">Message:</label>
<textarea id="message" name="message" rows="15"></textarea>
</div>
<button type="submit">Submit</button>
</form>
</div>
<footer>
<p>© Copyright 2018</p>
</footer>
</body>
</html>