-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.html
More file actions
100 lines (95 loc) · 2.9 KB
/
contacts.html
File metadata and controls
100 lines (95 loc) · 2.9 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!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" />
<title>Contact Us - Molecular Processing LLC</title>
<link rel="stylesheet" href="style.css" />
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QPYTJMNVBL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QPYTJMNVBL');
</script>
</head>
<body>
<div id="header-placeholder"></div>
<script>
fetch('header.html')
.then(response => response.text())
.then(data => {
document.getElementById('header-placeholder').innerHTML = data;
});
</script>
<!-- ========== Hero Section ========== -->
<section class="about-section">
<div class="container">
<h2>Contact Us</h2>
<!-- <p>Last updated: May 20, 2019</p> -->
</div>
</section>
<!-- ========== Contact Us Content ========== -->
<section class="about-section">
<div class="container">
<div class="contact-grid">
<dl class="list-terms">
<dt class="heading-6">Contact Information</dt>
<dd>
You can contact us with <br><br>
<strong>Mailing Address:</strong><br>
14722 Spring Ave, <br>
Santa Fe Springs, CA-90670<br><br>
<strong>Manufacturing Location:</strong><br>
847 Blacksnake Rd,<br>
Hot Springs, AR-71913 <br><br>
Telephone Number: (501)767-7776 <br>
Or via our <a href="contacts.html">contact form</a>.
</dd>
</dl>
<!-- HubSpot form mounts here -->
<div id="hs-form-container" aria-label="Contact form"></div>
</div>
</div>
</section>
<style>
.about-section .contact-grid{
display: flex;
flex-wrap: wrap;
gap: 2rem;
align-items: flex-start;
}
/* Let each column take half width on large screens and stack on small */
.about-section .contact-grid > *{
flex: 1 1 320px;
}
/* Optional: keep the form from shrinking too small */
#hs-form-container{ min-width: 320px; }
</style>
<!-- HubSpot Forms -->
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/embed/v2.js"></script>
<script>
// Render the form into our specific container
window.addEventListener('load', function () {
if (window.hbspt && hbspt.forms) {
hbspt.forms.create({
portalId: "39564004",
formId: "255b24ff-c3ae-493d-a9cd-25d4efcb9bf2",
region: "na1",
target: "#hs-form-container"
});
}
});
</script>
<!-- ========== Footer ========== -->
<div id="footer-placeholder"></div>
<script>
fetch('footer.html')
.then(response => response.text())
.then(data => {
document.getElementById('footer-placeholder').innerHTML = data;
});
</script>
</body>
</html>