-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
159 lines (148 loc) · 4.8 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Contact - Woodhaven Custom Cabinets</title>
<meta charset="utf-8" />
<meta name="description" content="We look forward to hearing from you! Woodhaven Custom Cabinets. Handcrafted Fine Cabinetry in Northwest Arkansas." />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Sticky -->
<div id="sticky">
<span>Find us at <strong>803 W Trimble Ave, Berryville, AR</strong> / or call us now at <a href="tel:4792311755"><strong>479-231-1755</strong></a></span>
</div>
<!-- Top image -->
<div class="top_image">
<img src="img/bg-home_hero.jpg" alt="Woodhaven Custom Cabinets"/>
</div>
<!-- Header -->
<header>
<a href="index.html" class="logo">
<svg viewBox="0 0 100 16.447" preserveAspectRatio="xMidYMin meet" aria-labelledby="logo_title">
<title id="logo_title">Woodhaven Custom Cabinets</title>
<use role="presentation" xlink:href="logos.svg#logo"></use>
</svg>
</a>
</header>
<!-- Menu -->
<nav id="menu">
<input type="checkbox" id="menu_dropdown"/>
<label id="menu_dropdown_button" for="menu_dropdown"><span>Menu</span></label>
<ul id="menu_links">
<li>
<a href="index.html">Home</a>
</li>
<li tabindex="0">
<a href="#">About</a>
<ul>
<li><a href="aboutus.html">About us</a></li>
<li><a href="ourprocess.html">Our process</a></li>
<li><a href="leanmanufacturing.html">LEAN Manufacturing</a></li>
</ul>
</li>
<li tabindex="0">
<a href="#">Products</a>
<ul>
<li><a href="styles.html">Styles</a></li>
<li><a href="premiumcustom.html">Premium Custom</a></li>
<li><a href="buildercustom.html">Builder Custom</a></li>
</ul>
</li>
<li>
<a href="projectgallery.html">Project gallery</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
<!-- Page hero -->
<div class="page_hero">
<h2>We look forward to hearing from you!</h2>
<h1>Contact us</h1>
</div>
<!-- Page copy -->
<div class="page_copy" id="contact_hero_copy">
<dl>
<dt>Visit our headquarters:</dt>
<dd>803 W Trimble Ave, Berryville, Arkansas</dd>
</dl>
<dl>
<dt>Call us and get your free consultation:</dt>
<dd><a href="tel:4792311755">479-231-1755</a></dd>
</dl>
</div>
<!-- Contact -->
<section class="section_type_1 contact">
<h2>We look forward to hearing from you!</h2>
<p>Contact us for your free consultation.</p>
<form>
<!-- First name -->
<fieldset>
<label for="contact_firstname">First name:</label>
<input id="contact_firstname" type="text" required/>
</fieldset>
<!-- Last name -->
<fieldset>
<label for="contact_lastname">Last name:</label>
<input id="contact_lastname" type="text"/>
</fieldset>
<!-- Email address -->
<fieldset>
<label for="contact_email">Email address:</label>
<input id="contact_email" type="email" required/>
</fieldset>
<!-- Phone number -->
<fieldset>
<label for="contact_phone">Phone number:</label>
<input id="contact_phone" type="phone"/>
</fieldset>
<!-- Message -->
<fieldset>
<label for="contact_text">Your message:</label>
<textarea id="contact_phone"></textarea>
</fieldset>
<legend>Fields marked with an asterisk (*) are required.</legend>
<button type="submit" id="contact_send" class="cta">Send your message</button>
</form>
<div class="contact_info">
<svg id="contact_map" viewBox="0 0 100 93.143" preserveAspectRatio="xMidYMin meet">
<use xlink:href="logos.svg#map"></use>
</svg>
<dl>
<dt>Say hi!</dt>
<dd>
<a href="mailto:[email protected]">[email protected]</a>
</dd>
<dt>Find us on social media</dt>
<dd>
<a href="https://www.facebook.com/woodhavencabinets" target="_blank">Facebook</a>
•
<a href="https://www.instagram.com/woodhavencabinets" target="_blank">Instagram</a>
</dd>
</dl>
</div>
</section>
<!-- Footer -->
<footer>
<svg viewBox="0 0 100 16.447" preserveAspectRatio="xMidYMin meet">
<use xlink:href="logos.svg#logo"></use>
</svg>
<p>803 W Trimble Ave, Berryville, AR<br/><a href="tel:4792311755">479-231-1755</a></p>
<ul class="footer_links">
<h3>About us</h3>
<li><a href="ourprocess.html">Our process</a></li>
<li><a href="leanmanufacturing.html">LEAN Manufacturing</a></li>
<li><a href="styles.html">Styles</a></li>
<li><a href="projectgallery.html">Project gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<ul class="footer_links">
<h3>Social</h3>
<li><a href="#">Facebook</a></li>
<li><a href="#">Instagram</a></li>
</ul>
</footer>
</body>
</html>