-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
81 lines (79 loc) · 2.18 KB
/
contact.html
File metadata and controls
81 lines (79 loc) · 2.18 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!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" href="./assets/css/style.css" />
<link rel="shortcut icon" type="image/png" href="/favicon.png" />
<link
rel="shortcut icon"
type="image/png"
href="./assets/images/favicon.png"
/>
<title>Contact</title>
</head>
<body>
<div class="wrapper">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li>
<a href="#">Items</a>
<ul class="dropdown-1">
<li><a href="motorcycles.html">Motorcycles</a></li>
<li><a href="helmets.html">Helmets</a></li>
<li><a href="jackets.html">Jackets</a></li>
<li><a href="pants.html">Pants</a></li>
</ul>
</li>
<li><a class="nav-active" href="contact.html">Contact</a></li>
</ul>
</nav>
<form id="p1">
<h3>Contact Us</h3>
<label
>Name<br />
<input
class="text"
id="contact-input"
required="true"
placeholder="Your name"
/> </label
><br />
<label
>Email address<br />
<input
class="text"
id="email-input"
required="true"
placeholder="Email address"
/> </label
><br />
<label
>Phone number<br />
<input
class="text"
id="phone-input"
required="true"
placeholder="Phone number"
/> </label
><br />
<label
>Message<br />
<textarea
class="comment"
required="true"
id="message-input"
placeholder="Your Message"
></textarea> </label
><br />
<input id="comment-data" type="submit" value="Post" />
<br />
<br />
</form>
<footer id="p1">Copyright © Sam Hewitt 2019</footer>
</div>
<script src="./assets/js/contact.js"></script>
</body>
</html>