-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
executable file
·212 lines (167 loc) · 7.7 KB
/
contact.html
File metadata and controls
executable file
·212 lines (167 loc) · 7.7 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
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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Victoria Place - Contact</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<!-- 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">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
</head>
<body id="top">
<!-- preloader
================================================== -->
<div id="preloader">
<div id="loader" class="dots-jump">
<div></div>
<div></div>
<div></div>
</div>
</div>
<!-- header
================================================== -->
<header class="s-header">
<div class="header-logo">
<a class="site-logo" href="index.html">
Victoria Place
</a>
</div>
<nav class="header-nav-wrap">
<ul class="header-nav">
<li><a href="index.html" title="Home">Home</a></li>
<li><a href="about.html" title="About">About</a></li>
<li><a href="resources.html" title="Resources">Resources</a></li>
<li><a href="events.html" title="Services">Events</a></li>
<li class="current"><a href="contact.html" title="Contact us">Contact</a></li>
</ul>
</nav>
<a class="header-menu-toggle" href="#0"><span>Menu</span></a>
</header> <!-- end s-header -->
<!-- page header
================================================== -->
<section class="page-header page-header--contact">
<div class="gradient-overlay"></div>
<div class="row page-header__content">
<div class="column">
<h1>Contact Us</h1>
</div>
</div>
</section> <!-- end page-header -->
<!-- page content
================================================== -->
<section class="page-content">
<div class="row">
<div class="column">
<div class="row">
<div class="column large-6 tab-full">
<h3>Our Neighborhood</h3>
<p>
Dickens Drive <br>
Raleigh, North Carolina <br>
27610 US
</p>
</div>
<div class="column large-6 tab-full">
<h3>Management Info</h3>
<p>
https://www.camsmgt.com/
</p>
</div>
</div>
<h2>Get In Touch</h2>
<form name="contactForm" id="contactForm" method="post" action="" autocomplete="off">
<fieldset>
<div class="form-field">
<input name="cName" id="cName" class="h-full-width h-remove-bottom" placeholder="Your Name" value="" type="text">
</div>
<div class="form-field">
<input name="cEmail" id="cEmail" class="h-full-width h-remove-bottom" placeholder="Your Email" value="" type="text">
</div>
<div class="form-field">
<input name="cWebsite" id="cWebsite" class="h-full-width h-remove-bottom" placeholder="Website" value="" type="text">
</div>
<div class="message form-field">
<textarea name="cMessage" id="cMessage" class="h-full-width h-remove-bottom" placeholder="Your Message"></textarea>
</div>
<br>
<input name="submit" id="submit" class="btn btn--primary btn-wide btn--large h-full-width" value="Send Message" type="submit">
</fieldset>
</form>
</div>
</div>
</section> <!-- end page-content -->
<!-- footer
================================================== -->
<footer class="s-footer">
<div class="row footer-top">
<div class="column large-4 medium-5 tab-full">
<div class="footer-logo">
<a class="site-footer-logo" href="index.html">
Victoria Place
</a>
</div> <!-- footer-logo -->
<p>
Where the classic charm of a historic neighborhood set within a waterfront community on Longview Lake intersects with downtown Raleigh’s urban core.
</p>
</div>
<div class="column large-half tab-full">
<div class="row">
<div class="column large-7 medium-full">
<h4 class="h6">Our Location</h4>
<p>
Dickens Drive <br>
Raleigh, North Carolina <br>
27610 US
</p>
<p>
<a href="#" target="_blank" class="btn btn--footer">Get Direction</a>
</p>
</div>
<div class="column large-5 medium-full">
<h4 class="h6">Quick Links</h4>
<ul class="footer-list">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="volunteer.html">Volunteer</a></li>
<li><a href="connect-group.html">Connect Groups</a></li>
<li><a href="events.html">Upcoming Events</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</div>
</div> <!-- end footer-top -->
<div class="row footer-bottom">
<div class="column ss-copyright">
<span>© Brought to you by the Victoria Place Neighborhood Association</span>
</div>
</div> <!-- footer-bottom -->
<div class="ss-go-top">
<a class="smoothscroll" title="Back to Top" href="#top">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 0l8 9h-6v15h-4v-15h-6z"/></svg>
</a>
</div> <!-- ss-go-top -->
</footer> <!-- end s-footer -->
<!-- Java Script
================================================== -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>