-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact-us.html
45 lines (39 loc) · 1.52 KB
/
contact-us.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>I & D</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<a href="#" class="logo"><img src="" alt="Logo"></a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="merchandise.html">Merchandise</a></li>
<li><a href="about-us.html">About Us</a></li>
<li><a href="contact-us.html">Contact Us</a></li>
</ul>
</header>
<section>
<p>Whether it's critiques of our merchandise, complaints, or general questions about our product lineup, all feedback is welcome and necessary!
Feel free to reach out using our contact form, please fill out each field.</p>
<fieldset>
<ul>
<li>Subject: <input name="Subject" rows="2" cols="70"></input></li><br>
<li>Name: <input name="Name" rows="2" cols="70"></input></li><br>
<li>E-Mail: <input name="Last Name" rows="2" cols="70"></input></li><br>
<li>Message: <textarea name="Street Address" rows="10" cols="100"></textarea></li><br>
</ul>
</fieldset>
</section>
<footer>
<ul>
<li><a href="merchandise.html">Merchandise</a></li>
<li><a href="about-us.html">About Us</a></li>
<li><a href="contact-us.html">Contact Us</a></li>
</ul>
<p>All intellectual property and apparel designs Copyright © I&D 2018. All rights reserved.</p>
</footer>
</body>
</html>