-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
52 lines (52 loc) · 1.37 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
<!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">
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<title>Joshua Stevens: Contact</title>
</head>
<body>
<header>
<div class="headerContentWrapper">
<h1 class="logo">Joshua Stevens</h1>
<nav>
<ul class="navLinks">
<li>
<a href="index.html">About</a>
</li>
<li>
<a href="portfolio.html">Portfolio</a>
</li>
<li>
<a class="active" href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
</header>
<div class="contentWrapper">
<section>
<h1>Contact</h1>
<form>
<label>
<p>Name</p>
<input type="text" placeholder="John Smith">
</label>
<label>
<p>Email</p>
<input type="email" placeholder="[email protected]">
</label>
<label>
<p>Message</p>
<textarea></textarea>
</label>
<button>Submit</button>
</form>
</section>
</div>
<footer>Copright © 2019</footer>
</body>
</html>