-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfamilyofbrands.html
More file actions
76 lines (65 loc) · 2.74 KB
/
familyofbrands.html
File metadata and controls
76 lines (65 loc) · 2.74 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
<section style="width:85%; margin:auto; padding:40px 0; border-bottom:1px solid #ccc;">
<h2 style="text-align:center; font-size: 2rem;;color: #2a99de;">
A Family of Brands, United by Innovation
</h2>
<p style="width:75%; margin: 20px auto 0; text-align:center; color:#000;">
Molecular Processing LLC is part of the American Polymers Network of Companies, working together to provide cutting-edge solutions for industries worldwide. Backed by expert Chemists and Engineers, we develop high-quality, industry-leading products trusted in homes, businesses, landmarks and major industrial projects. Explore our family of brands, each dedicated to delivering performance, durability, and innovation.
</p>
<!-- Brand Logos -->
<div style="
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 30px;
margin-top: 50px;
">
<a href="https://polycoatusa.com" target="_blank">
<img src="images/polycoat.png" alt="Polycoat USA" style="width:200px;" />
</a>
<a href="https://crownpolymers.com" target="_blank">
<img src="images/crownpolymers.png" alt="Crown Polymers" style="width:200px;" />
</a>
<a href="https://upcfoam.com" target="_blank">
<img src="images/upc.png" alt="UPC Foam" style="width:150px;" />
</a>
<a href="https://polyfil.com" target="_blank">
<img src="images/Polyfil.png" alt="Polyfil" style="width:200px;" />
</a>
<a href="https://generalcoatings.net" target="_blank">
<img src="images/gcmc.png" alt="General Coatings" style="width:200px;" />
</a>
<a href="https://www.diamondliners.com" target="_blank">
<img src="images/diamondliner.png" alt="Diamond Liners" style="width:200px;" />
</a>
</div>
<!-- Tooltip Section -->
<div style="text-align:center; margin-top:40px;">
<div class="container">
<a href="https://apnhome.com/" target="_blank" rel="noopener noreferrer" style="color: #2a99de; font-weight: bold;">
Explore All Affiliated Brands >
</a>
<!-- <span class="hover-text" onclick="toggleTooltip()">
Explore All Affiliated Brands >
<!--<span class="tooltip-text" id="tooltip">
Coming Soon - Discover every division of the American Polymers Network
</span>
</span>-->
</div>
</div>
<!-- Tooltip Script -->
<script>
function toggleTooltip() {
const tooltip = document.getElementById('tooltip');
tooltip.classList.toggle('show');
}
// Close tooltip if clicking outside
document.addEventListener('click', function (e) {
const tooltip = document.getElementById('tooltip');
const hoverText = document.querySelector('.hover-text');
if (!hoverText.contains(e.target)) {
tooltip.classList.remove('show');
}
});
</script>
</section>