-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
55 lines (45 loc) · 1.55 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
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Page</title>
<link rel="stylesheet" type="text/css" href="Assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="Assets/css/style.css">
</head>
<body>
<header>
<div class="wrapper navBar">
<h1>Adam Garner</h1>
<nav>
<ul>
<li><a href="contact.html">Contact</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="index.html">About</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="wrapper mainBody">
<h2>Contact</h2>
<div class="contact">
<form action="#">
Name: <br>
<input class="formInput" type="text" name="fullName"><br>
Email: <br>
<input class="formInput" type="text" name="emailName"><br>
Message: <br>
<input class="formMessage formInput" type="text" name="messageMe"><br>
<br>
<input class="submitButton" type="submit" value="Submit"><br>
</form>
</div>
</div>
</main>
<footer>
<div class="wrapper footerBar">
<h3>Copyright © Adam Garner 2019</h3>
</div>
</footer>
</body>
</html>