added more preview pages and more templates
This commit is contained in:
@@ -0,0 +1,207 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Contact | T.R.B. Painting — (630) 606-6776</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="Contact T.R.B. Painting for interior, exterior, or power washing estimates. Call (630) 606-6776.">
|
||||
|
||||
<meta name="format-detection" content="telephone=no"/>
|
||||
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
|
||||
<link rel="stylesheet" href="css/grid.css">
|
||||
<link rel="stylesheet" href="css/google-map.css">
|
||||
<link rel="stylesheet" href="css/contact-form.css">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
|
||||
<script src="js/jquery.js"></script>
|
||||
<script src="js/jquery-migrate-1.2.1.js"></script>
|
||||
|
||||
<!--[if lt IE 9]>
|
||||
<html class="lt-ie9">
|
||||
<div style=' clear: both; text-align:center; position: relative;'>
|
||||
<a href="http://windows.microsoft.com/en-US/internet-explorer/..">
|
||||
<img src="images/ie8-panel/warning_bar_0000_us.jpg" border="0" height="42" width="820"
|
||||
alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today."/>
|
||||
</a>
|
||||
</div>
|
||||
<script src="js/html5shiv.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
<script src='js/device.min.js'></script>
|
||||
<style>
|
||||
.preview-concept-banner{position:fixed;top:0;left:0;right:0;z-index:99999;background:#1a2332;color:#fff;font:600 13px/1.4 system-ui,sans-serif;padding:8px 16px;text-align:center}
|
||||
.preview-concept-banner span{opacity:.85;font-weight:400}
|
||||
.preview-concept-banner a{color:#fff;text-decoration:underline}
|
||||
body{padding-top:36px}
|
||||
.aiml-site-credit{text-align:center;padding:12px 16px 24px;font:14px/1.4 system-ui,sans-serif;color:#555}
|
||||
.aiml-site-credit a{color:#1a2332;text-decoration:underline}
|
||||
footer .aiml-site-credit{color:rgba(255,255,255,.85)}
|
||||
footer .aiml-site-credit a{color:#fff}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="preview-concept-banner">UX Concept Preview — T.R.B. Painting <span>· Concept site — not live</span> · <a href="ux-gallery.html">Feature gallery</a> · <a href="pricing.html">Pricing</a></div>
|
||||
|
||||
<div class="page">
|
||||
<!--========================================================
|
||||
HEADER
|
||||
=========================================================-->
|
||||
<header class="bg2">
|
||||
<div id="stuck_container" class="stuck_container">
|
||||
<div class="container">
|
||||
<div class="brand">
|
||||
<p class="brand_name">
|
||||
<a href="index.html">T.R.B. Painting</a>
|
||||
</p>
|
||||
</div>
|
||||
<nav class="nav" aria-label="Primary">
|
||||
<ul class="sf-menu" data-type="navbar">
|
||||
<li>
|
||||
<a href="index.html">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="services.html">Services</a>
|
||||
<ul>
|
||||
<li><a href="services.html#interior">Interior painting</a></li>
|
||||
<li><a href="services.html#exterior">Exterior painting</a></li>
|
||||
<li><a href="services.html#power-washing">Power washing</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<a href="about.html">About</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="gallery.html">Gallery</a>
|
||||
</li>
|
||||
<li class="active">
|
||||
<a href="contact.html">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<!--========================================================
|
||||
CONTENT
|
||||
=========================================================-->
|
||||
<main>
|
||||
<section class="well4">
|
||||
<div class="container">
|
||||
<h3>Contact T.R.B. Painting</h3>
|
||||
<p class="mt1" style="margin-bottom:1.5rem">Call <a href="tel:+16306066776">(630) 606-6776</a> or send a message below. Tell us whether you need interior painting, exterior painting, or power washing.</p>
|
||||
<form id="contact-form" class='contact-form'>
|
||||
<div class="contact-form-loader"></div>
|
||||
<fieldset>
|
||||
<label class="name">
|
||||
<input type="text" name="name" placeholder="Your Name" aria-label="Your name" value=""
|
||||
data-constraints="@Required @JustLetters"/>
|
||||
|
||||
<span class="empty-message">*This field is required.</span>
|
||||
<span class="error-message">*This is not a valid name.</span>
|
||||
</label>
|
||||
<div class="input-wrap">
|
||||
<label class="email">
|
||||
<input type="text" name="email" placeholder="Your Email" aria-label="Your email" value=""
|
||||
data-constraints="@Required @Email"/>
|
||||
|
||||
<span class="empty-message">*This field is required.</span>
|
||||
<span class="error-message">*This is not a valid email.</span>
|
||||
</label>
|
||||
<label class="phone">
|
||||
<input type="text" name="phone" placeholder="Your Phone Number" aria-label="Your phone number" value=""
|
||||
data-constraints="@JustNumbers"/>
|
||||
|
||||
<span class="empty-message">*This field is required.</span>
|
||||
<span class="error-message">*This is not a valid phone.</span>
|
||||
</label>
|
||||
</div>
|
||||
<label class="message">
|
||||
<textarea name="message" placeholder="Your Message" aria-label="Your message"
|
||||
data-constraints='@Required @Length(min=20,max=999999)'></textarea>
|
||||
|
||||
<span class="empty-message">*This field is required.</span>
|
||||
<span class="error-message">*The message is too short.</span>
|
||||
</label>
|
||||
<a class="btn" href="#" data-type="submit">Send message</a>
|
||||
</fieldset>
|
||||
<div class="modal fade response-message">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal"
|
||||
aria-hidden="true">
|
||||
×
|
||||
</button>
|
||||
<h4 class="modal-title">Modal title</h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
You message has been sent! We will be in touch soon.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
<section class="well4">
|
||||
<div class="container">
|
||||
<h3>Service area</h3>
|
||||
<p>Service coverage is confirmed when you call. Phone: <a href="tel:+16306066776">(630) 606-6776</a>. Email address TBD.</p>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<!--========================================================
|
||||
FOOTER
|
||||
=========================================================-->
|
||||
<footer class="parallax" data-url="images/parallax02.jpg">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="grid_4">
|
||||
<address class="addr">
|
||||
<span class="fa fa-map-marker" aria-hidden="true"></span>
|
||||
<p>Service area TBD<br><span style="opacity:.85">Confirm coverage with T.R.B. Painting</span></p>
|
||||
</address>
|
||||
</div>
|
||||
<div class="grid_4">
|
||||
<address class="addr">
|
||||
<span class="fa fa-envelope-o" aria-hidden="true"></span>
|
||||
<p>Email TBD</p>
|
||||
</address>
|
||||
</div>
|
||||
<div class="grid_4">
|
||||
<address class="addr">
|
||||
<span class="fa fa-mobile" aria-hidden="true"></span>
|
||||
<p><a href="tel:+16306066776">(630) 606-6776</a></p>
|
||||
</address>
|
||||
</div>
|
||||
</div>
|
||||
<p class="copy">
|
||||
T.R.B. Painting © <span id="copyright-year"></span>
|
||||
<span>All Rights Reserved</span>
|
||||
|
|
||||
<a href="privacy.html">Privacy Policy</a>
|
||||
</p>
|
||||
<p class="aiml-site-credit">Made by <a href="https://aimloperations.com" rel="noopener noreferrer" target="_blank">AI ML Operations, LLC</a></p>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<script src="js/script.js"></script>
|
||||
|
||||
<script>
|
||||
(function () {
|
||||
function labelToggle() {
|
||||
var t = document.querySelector('.rd-mobilepanel_toggle');
|
||||
if (t && !t.getAttribute('aria-label')) t.setAttribute('aria-label', 'Open menu');
|
||||
}
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
labelToggle();
|
||||
setTimeout(labelToggle, 500);
|
||||
setTimeout(labelToggle, 1500);
|
||||
});
|
||||
})();
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user