-
Notifications
You must be signed in to change notification settings - Fork 107
/
contact.html
224 lines (197 loc) · 11.1 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="canonical" href="">
<meta name="description" content="">
<meta name="keywords" content="">
<!--Social Media Display-->
<meta property="og:title" content=""/>
<meta property="og:description" content=""/>
<meta property="og:type" content="website" />
<meta property="og:url" content=""/>
<meta property="og:image" content=""/>
<meta property="og:image:secure_url" content=""/>
<!--Favicons-->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png?v1">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- CSS -->
<link rel="stylesheet" href="/css/root.css">
<link rel="stylesheet" href="/css/contact.css">
<link rel="stylesheet" href="/css/dark.css">
<link rel="stylesheet" href="/css/dark-root-styles.css">
<title></title>
</head>
<body>
<a class="skip" aria-label="skip to main content" href="#main">Click To Skip To Main</a>
<header>
<!-- Mobile Nav Strip -->
<div class="mobile-wrapper">
<div class="mobile-nav container mobile-nav-container">
<img class="light" id="mobile-logo" src="/images/logo.svg" alt="mobile_company_logo" width="110" height="32">
<img class="dark" id="mobile-logo" src="/images/logo-white.svg" alt="mobile_company_logo" width="110" height="32">
<!-- Hamburger Menu -->
<button aria-label="open the menu" id="menu-button" class="hamburger hamburger--spring" onclick="toggleNav()" type="button">
<span aria-hidden="true" class="hamburger-box">
<span aria-hidden="true" class="hamburger-inner"></span>
</span>
</button>
</div>
</div>
<!-- ============================================ -->
<!-- NAVIGATION -->
<!-- ============================================ -->
<nav>
<div class="navbar-menu">
<div id="side-menu" class=" side-nav">
<a class="nav-logo" href="/index.html">
<img class="light" aria-hidden="true" decoding="async" src="images/logo.svg" alt="compnay logo" height="80">
<img class="dark" aria-hidden="true" decoding="async" src="images/logo-white.svg" alt="compnay logo" height="80">
</a>
<ul id="on-top" class="navbar-links">
<li class="nav-li"><a class="link" href="/index.html">Home</a></li>
<li class="nav-li"><a class="link" href="/about.html">About</a></li>
<li class="nav-li"><a class="link" href="/index.html#services">Services</a></li>
<!-- <li class="nav-li"><a class="link" href="html/portfolio.html">Portfolio</a></li> -->
<li class="nav-li"><a class="link" href="/testimonials.html">Testimonials</a></li>
<li class="nav-li"><a id="active-menu" class="link" href="/contact.html">Contact</a></li>
</ul>
</div>
<button class="dark-mode-button top-dark-mode-button" aria-label="dark mode toggle">
<img class="moon" aria-hidden="true" src="/images/moon.svg" alt="" width="24" height="24">
<img class="sun" aria-hidden="true" src="/images/sun.svg" alt="" width="24" height="24">
</button>
</div>
</nav>
</header>
<main id="main">
<!-- ============================================ -->
<!-- Landing -->
<!-- ============================================ -->
<section id="int-hero">
<h1 id="home-h">Contact Business</h2>
</section>
<!-- ============================================ -->
<!-- FORM -->
<!-- ============================================ -->
<section id="form">
<div class="left-section">
<span class="topper">Business Name</span>
<h2>Send a Message</h2>
<p>If you have any questions or concerns please feel free to reach out to us. we respond to every call and email.</p>
<form id="contact" name="Contact Form" method="post" data-netlify-recaptcha="true" data-netlify="true">
<div class="input-group">
<label for="name">Full Name</label>
<input id="name" aria-label="name" class="input1" name="name" placeholder="Full Name" type="text" tabindex="1" required>
<div aria-hidden="true" class="hover-box"></div>
</div>
<div class="input-group">
<label for="email">Email</label>
<input id="email" aria-label="email" class="input1 right" name="email" placeholder="Email Address" type="email" tabindex="2" required>
<div aria-hidden="true" class="hover-box"></div>
</div>
<div class="input-group">
<label for="phone">Phone</label>
<input id="phone" aria-label="phone number" class="input1" name="phone" placeholder="Phone Number" type="tel" tabindex="3" required>
<div aria-hidden="true" class="hover-box"></div>
</div>
<div class="input-group">
<label for="location">Location</label>
<input id="location" aria-label="location" class="input1 right" name="location" placeholder="Your Location" type="text" tabindex="4" required>
<div aria-hidden="true" class="hover-box"></div>
</div>
<div class="input-group">
<label for="how">How did you hear about us</label>
<input id="how" aria-label="how did you hear about us" name="hear" placeholder="How Did You Hear About Us" type="text" tabindex="5" required>
<div aria-hidden="true" class="hover-box"></div>
</div>
<div class="input-group textarea">
<label for="message">Message</label>
<textarea id="message" aria-label="write your message" name="message" placeholder="Tell us about what you need help with" tabindex="6" required></textarea>
<div aria-hidden="true" class="hover-box"></div>
</div>
<p class="form-submit">
<button name="submit" type="submit" id="contact-submit" class="button-solid" data-submit="...Sending">Submit</button>
</p>
</form>
</div>
<div class="contact-right">
<div class="info-group">
<span class="heading">Location</span>
<span class="info">Somewhere, TX</span>
</div>
<div class="info-group">
<span class="heading">Phone</span>
<a class="info" href="tel:555-213-9120">(555) 213-9120</a>
</div>
<div class="info-group">
<span class="heading">Email</span>
<a class="info" href="mailto:[email protected]">[email protected]</a>
</div>
<div class="info-group">
<span class="heading">Hours</span>
<span class="info last">Mon to Sat: 9am to 7pm</span>
</div>
</div>
</section>
</main>
<!-- ============================================ -->
<!-- FOOTER -->
<!-- ============================================ -->
<footer id="footer">
<div class="container">
<div class="left-section">
<a class="logo" href=""><img loading="lazy" decoding="async" src="/images/logo-white.svg" alt="logo" width="293" height="91"></a>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Error, aut. Molestias delectus rem nihil distinctio nemo assumenda laudantium. Veritatis, natus.
</p>
</div>
<div class="right-section">
<div class="lists">
<ul>
<li><h2>Company</h2></li>
<li><a href="/index.html">Home</a></li>
<li><a href="/about.html">About Us</a></li>
<li><a href="/contact.html">Services</a></li>
</ul>
<ul>
<li><h2>Support</h2></li>
<li><a href="/contact.html">Contact Us</a></li>
</ul>
<ul>
<li><h2>Get in Touch</h2></li>
<li><img loading="lazy" decoding="async" src="/images/pin.svg" alt="" width="24" height="24"><a href="" target="_blank">Somewhere, Tx</a></li>
<li><img loading="lazy" decoding="async" src="/images/footer-phone.svg" alt="" width="24" height="24"><a href="tel:555-213-9120">(555) 213-9120</a></li>
<li><img loading="lazy" decoding="async" src="/images/email.svg" alt="" width="24" height="24"><a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</div>
<div class="buttons">
<a class="button-solid" href="/contact.html" >
Call to action button
</a>
</div>
</div>
</div>
</footer>
<script>
var ba = ["MSIE","Trident","Edge"];
var b, ua = navigator.userAgent;
for(var i=0; i < ba.length; i++){
if( ua.indexOf(ba[i]) > -1 ){
b = ba[i];
break;
}
}
if(b == "MSIE" || b == "Trident" || b == "Edge"){
b = "Internet Explorer";
alert("You are using the " + b + " browser and this browser is incompatible with this website and many others. Please open this page in a different browser, either Chrome or Firefox. Thank you!");
}
</script>
<script defer src="/app.js"></script>
</body>
</html>