-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
255 lines (188 loc) · 11.7 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
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Topic Listing Contact Page</title>
<!-- CSS FILES -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans&display=swap" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-icons.css" rel="stylesheet">
<link href="css/templatemo-topic-listing.css" rel="stylesheet">
<!--
TemplateMo 590 topic listing
https://templatemo.com/tm-590-topic-listing
-->
</head>
<body class="topics-listing-page" id="top">
<main>
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-brand" href="index.html">
<i class="bi-back"></i>
<span>Topic</span>
</a>
<div class="d-lg-none ms-auto me-4">
<a href="#top" class="navbar-icon bi-person smoothscroll"></a>
</div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-lg-5 me-lg-auto">
<li class="nav-item">
<a class="nav-link click-scroll" href="index.html#section_1">Home</a>
</li>
<li class="nav-item">
<a class="nav-link click-scroll" href="index.html#section_2">Browse Topics</a>
</li>
<li class="nav-item">
<a class="nav-link click-scroll" href="index.html#section_3">How it works</a>
</li>
<li class="nav-item">
<a class="nav-link click-scroll" href="index.html#section_4">FAQs</a>
</li>
<li class="nav-item">
<a class="nav-link click-scroll" href="index.html#section_5">Contact</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#section_5" id="navbarLightDropdownMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false">Pages</a>
<ul class="dropdown-menu dropdown-menu-light" aria-labelledby="navbarLightDropdownMenuLink">
<li><a class="dropdown-item" href="topics-listing.html">Topics Listing</a></li>
<li><a class="dropdown-item active" href="contact.html">Contact Form</a></li>
</ul>
</li>
</ul>
<div class="d-none d-lg-block">
<a href="#top" class="navbar-icon bi-person smoothscroll"></a>
</div>
</div>
</div>
</nav>
<header class="site-header d-flex flex-column justify-content-center align-items-center">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5 col-12">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Homepage</a></li>
<li class="breadcrumb-item active" aria-current="page">Contact Form</li>
</ol>
</nav>
<h2 class="text-white">Contact Form</h2>
</div>
</div>
</div>
</header>
<section class="section-padding section-bg">
<div class="container">
<div class="row">
<div class="col-lg-12 col-12">
<h3 class="mb-4 pb-2">We'd love to hear from you</h3>
</div>
<div class="col-lg-6 col-12">
<form action="#" method="post" class="custom-form contact-form" role="form">
<div class="row">
<div class="col-lg-6 col-md-6 col-12">
<div class="form-floating">
<input type="text" name="name" id="name" class="form-control" placeholder="Name" required="">
<label for="floatingInput">Name</label>
</div>
</div>
<div class="col-lg-6 col-md-6 col-12">
<div class="form-floating">
<input type="email" name="email" id="email" pattern="[^ @]*@[^ @]*" class="form-control" placeholder="Email address" required="">
<label for="floatingInput">Email address</label>
</div>
</div>
<div class="col-lg-12 col-12">
<div class="form-floating">
<input type="text" name="subject" id="name" class="form-control" placeholder="Name" required="">
<label for="floatingInput">Subject</label>
</div>
<div class="form-floating">
<textarea class="form-control" id="message" name="message" placeholder="Tell me about the project"></textarea>
<label for="floatingTextarea">Tell me about the project</label>
</div>
</div>
<div class="col-lg-4 col-12 ms-auto">
<button type="submit" class="form-control">Submit</button>
</div>
</div>
</form>
</div>
<div class="col-lg-5 col-12 mx-auto mt-5 mt-lg-0">
<iframe class="google-map" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2595.065641062665!2d-122.4230416990949!3d37.80335401520422!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x80858127459fabad%3A0x808ba520e5e9edb7!2sFrancisco%20Park!5e1!3m2!1sen!2sth!4v1684340239744!5m2!1sen!2sth" width="100%" height="250" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
<h5 class="mt-4 mb-2">Topic Listing Center</h5>
<p>Bay St &, Larkin St, San Francisco, CA 94109, United States</p>
</div>
</div>
</div>
</section>
</main>
<footer class="site-footer section-padding">
<div class="container">
<div class="row">
<div class="col-lg-3 col-12 mb-4 pb-2">
<a class="navbar-brand mb-2" href="index.html">
<i class="bi-back"></i>
<span>Topic</span>
</a>
</div>
<div class="col-lg-3 col-md-4 col-6">
<h6 class="site-footer-title mb-3">Resources</h6>
<ul class="site-footer-links">
<li class="site-footer-link-item">
<a href="#" class="site-footer-link">Home</a>
</li>
<li class="site-footer-link-item">
<a href="#" class="site-footer-link">How it works</a>
</li>
<li class="site-footer-link-item">
<a href="#" class="site-footer-link">FAQs</a>
</li>
<li class="site-footer-link-item">
<a href="#" class="site-footer-link">Contact</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-4 col-6 mb-4 mb-lg-0">
<h6 class="site-footer-title mb-3">Information</h6>
<p class="text-white d-flex mb-1">
<a href="tel: 305-240-9671" class="site-footer-link">
305-240-9671
</a>
</p>
<p class="text-white d-flex">
<a href="mailto:info@company.com" class="site-footer-link">
info@company.com
</a>
</p>
</div>
<div class="col-lg-3 col-md-4 col-12 mt-4 mt-lg-0 ms-auto">
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
English</button>
<ul class="dropdown-menu">
<li><button class="dropdown-item" type="button">Thai</button></li>
<li><button class="dropdown-item" type="button">Myanmar</button></li>
<li><button class="dropdown-item" type="button">Arabic</button></li>
</ul>
</div>
<p class="copyright-text mt-lg-5 mt-4">Copyright © 2048 Topic Listing Center. All rights reserved.
<br><br>Design: <a rel="nofollow" href="https://templatemo.com" target="_blank">TemplateMo</a></p>
</div>
</div>
</div>
</footer>
<!-- JAVASCRIPT FILES -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/jquery.sticky.js"></script>
<script src="js/custom.js"></script>
</body>
</html>