-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
86 lines (83 loc) · 3.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3RE4W13ZNV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3RE4W13ZNV');
</script>
<!-- CSS only -->
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<link href="dist/css/style.css" rel="stylesheet" type="text/css"/>
<title>Carriage Hills Subdivision - Contact</title>
<script src="dist/components/header.js" type="text/javascript" defer></script>
<script src="dist/components/footer.js" type="text/javascript" defer></script>
</head>
<body>
<carriage-hills-header-component activePage="contact"></carriage-hills-header-component>
<div class="container my-3 tabcontent" id="contact">
<div class="row text-center">
<h1>Contact Information</h1>
</div>
<div class="row">
<div class="col-12 col-lg-6 my-2 py-2 rounded-3 border shadow-lg chalkboard-background text-white">
<h2>Inquiries</h2>
<p>
General inquiries can be directed to the board:<br>
</p>
<p>
Inquiries regarding project approvals/maintenance plans/alterations/changes to existing structures can
be directed to the ACC:<br>
</p>
</div>
<div class="col-12 col-lg-6 my-2 py-2 rounded-3 border shadow-lg chalkboard-background text-white">
<h2>2024-2025 HOA Board Members</h2>
<ul>
<li>
Andrew - Interim President
</li>
<li>
Jon - Treasurer
</li>
<li>
Jerri - Secretary
</li>
</ul>
</div>
<div class="col-12 col-lg-6 my-2 py-2 rounded-3 border shadow-lg chalkboard-background text-white">
<h2>Mailing List</h2>
<p>
Announcements and reminders are sent via email to a subdivision mailing list.
</p>
<p>
To be added to the mailing list, contact the board at: <br>
</p>
</div>
<div class="col-12 col-lg-6 my-2 py-2 rounded-3 border shadow-lg chalkboard-background text-white">
<h2>O'Fallon City</h2>
<p>
Carriage Hills is part of O'Fallon <a href="https://www.ofallon.mo.us/ward-2-councilmembers">Ward 2</a>.
</p>
<ul>
<li>
<a href="https://www.ofallon.mo.us/building-permits">Building and Permits</a>
</li>
<li>
<a href="https://www.ofallon.mo.us/code-enforcement">Code Enforcement</a>
</li>
<li>
<a href="https://www.ofallon.mo.us/stormwater-management">Stormwater Management</a>
</li>
</ul>
</div>
</div>
</div>
<carriage-hills-footer-component></carriage-hills-footer-component>
</body>
</html>