forked from Miklsan/alyramag-custom-b5-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
336 lines (321 loc) · 12 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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Contact | Alyra Mag</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css"
integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I"
crossorigin="anonymous"
/>
<script
src="https://kit.fontawesome.com/569911808f.js"
crossorigin="anonymous"
></script>
<link
href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@700&family=Montserrat:wght@300&display=swap"
rel="stylesheet"
/>
<!-- Custom Style -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="text-center py-5">
<a class="site-logo h1 link-dark text-decoration-none" href="index.html"
>AlyraMag</a
>
</header>
<nav class="navbar navbar-expand-sm navbar-light bg-light sticky-top mb-4">
<div class="container">
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarMenu"
aria-controls="navbarMenu"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarMenu">
<ul class="navbar-nav mx-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="category.html">Travel</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link active dropdown-toggle"
href="category.html"
id="dropdown"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>Categories</a
>
<div class="dropdown-menu" aria-labelledby="dropdown">
<a class="dropdown-item" href="category.html">Lifestyle</a>
<a class="dropdown-item" href="category.html">Food</a>
<a class="dropdown-item" href="category.html">Adventure</a>
<a class="dropdown-item" href="category.html">Travel</a>
<a class="dropdown-item" href="category.html">Business</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link active" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container mb-4">
<div class="row">
<main class="col-md-12 col-lg-9 mb-4">
<article class="p-5 shadow">
<img
src="images/big_image_1.jpg"
class="img-fluid w-100 mb-4"
alt="Image placeholder"
/>
<h1 class="h2 text-center">Contact Us</h1>
<p class="lead text-center">
Cum sociis natoque penatibus et magnis dis parturient montes,
nascetur ridiculus mus. Aenean lacinia bibendum nulla sed
consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce
dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh,
ut fermentum massa justo sit amet risus.
</p>
<form action="#" method="post">
<div class="form-group mb-3">
<label for="name">Name*</label>
<input type="text" id="name" class="form-control" required />
</div>
<div class="form-group mb-3">
<label for="phone">Phone</label>
<input type="text" id="phone" class="form-control" required />
</div>
<div class="form-group mb-3">
<label for="email">Email*</label>
<input type="email" id="email" class="form-control" />
</div>
<div class="form-group mb-3">
<label for="message">Write Message</label>
<textarea
name="message"
id="message"
class="form-control"
cols="30"
rows="8"
></textarea>
</div>
<button type="submit" class="btn btn-dark">Send Message</button>
</form>
</article>
</main>
<div class="col-md-12 col-lg-3 sidebar">
<form action="#" class="search-form mb-4">
<div class="input-group d-flex">
<span class="input-group-text"
><i class="icon fa fa-search"></i
></span>
<input
type="search"
aria-label="Search within AlyraMag"
class="form-control"
name="s"
placeholder="Search here..."
/>
</div>
</form>
<div class="shadow p-3 text-center mb-4">
<img
src="images/person_1.jpg"
class="img-fluid rounded-pill position-relative mb-4"
alt=""
width="128"
/>
<h2 class="h5">David Craig</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Exercitationem facilis sunt repellendus excepturi beatae porro
debitis voluptate nulla quo veniam fuga sit molestias minus.
</p>
<p>
<a href="#" class="btn btn-dark btn-sm rounded">Read my bio</a>
</p>
<p class="social">
<a href="#" aria-label="facebook profile" class="p-2 link-dark"
><span class="fa fa-facebook"></span
></a>
<a href="#" aria-label="twitter profile" class="p-2 link-dark"
><span class="fa fa-twitter"></span
></a>
<a href="#" aria-label="instagram profile" class="p-2 link-dark"
><span class="fa fa-instagram"></span
></a>
<a href="#" aria-label="yoututbe profile" class="p-2 link-dark"
><span class="fa fa-youtube-play"></span
></a>
</p>
</div>
<div class="p-3 shadow mb-4">
<h2 class="h5">Popular Posts</h2>
<ul class="list-group list-group-flush">
<li class="list-group-item px-0 py-2 d-flex">
<a class="mr-2" href="#">
<img
src="images/img_2.jpg"
class="img-fluid"
alt="Image placeholder"
width="200"
/>
</a>
<div>
<small>March 15, 2018 </small>
<h3 class="h6">
<small>How to Find the Video Games of Your Youth</small>
</h3>
</div>
</li>
<li class="list-group-item px-0 py-2 d-flex">
<a class="mr-2" href="#">
<img
src="images/img_4.jpg"
class="img-fluid"
alt="Image placeholder"
width="200"
/>
</a>
<div>
<small>March 15, 2018 </small>
<h3 class="h6">
<small>How to Find the Video Games of Your Youth</small>
</h3>
</div>
</li>
<li class="list-group-item px-0 py-2 d-flex">
<a class="mr-2" href="#">
<img
src="images/img_12.jpg"
class="img-fluid"
alt="Image placeholder"
width="200"
/>
</a>
<div>
<small>March 15, 2018 </small>
<h3 class="h6">
<small>How to Find the Video Games of Your Youth</small>
</h3>
</div>
</li>
</ul>
</div>
<!-- END sidebar-box -->
<div class="p-3 shadow mb-4">
<h2 class="h5">Categories</h2>
<ul class="list-group list-group-flush">
<li class="list-group-item px-0">
<a
class="d-flex justify-content-between text-decoration-none link-dark"
href="#"
><b>Food</b><span>(12)</span></a
>
</li>
<li class="list-group-item px-0">
<a
class="d-flex justify-content-between text-decoration-none link-dark"
href="#"
><b>Travel</b> <span>(22)</span></a
>
</li>
<li class="list-group-item px-0">
<a
class="d-flex justify-content-between text-decoration-none link-dark"
href="#"
><b>Lifestyle</b> <span>(37)</span></a
>
</li>
<li class="list-group-item px-0">
<a
class="d-flex justify-content-between text-decoration-none link-dark"
href="#"
><b>Business</b> <span>(42)</span></a
>
</li>
<li class="list-group-item px-0">
<a
class="d-flex justify-content-between text-decoration-none link-dark"
href="#"
><b>Adventure</b> <span>(14)</span></a
>
</li>
</ul>
</div>
<div class="p-3 shadow">
<h3 class="h5">Tags</h3>
<ul class="list-unstyled d-flex flex-wrap">
<li>
<a class="m-1 btn btn-sm btn-secondary" href="#">Travel</a>
</li>
<li>
<a class="m-1 btn btn-sm btn-secondary" href="#">Adventure</a>
</li>
<li>
<a class="m-1 btn btn-sm btn-secondary" href="#">Food</a>
</li>
<li>
<a class="m-1 btn btn-sm btn-secondary" href="#">Lifestyle</a>
</li>
<li>
<a class="m-1 btn btn-sm btn-secondary" href="#">Business</a>
</li>
<li>
<a class="m-1 btn btn-sm btn-secondary" href="#">Freelancing</a>
</li>
<li>
<a class="m-1 btn btn-sm btn-secondary" href="#">Travel</a>
</li>
<li>
<a class="m-1 btn btn-sm btn-secondary" href="#">Adventure</a>
</li>
<li>
<a class="m-1 btn btn-sm btn-secondary" href="#">Food</a>
</li>
<li>
<a class="m-1 btn btn-sm btn-secondary" href="#">Lifestyle</a>
</li>
<li>
<a class="m-1 btn btn-sm btn-secondary" href="#">Business</a>
</li>
<li>
<a class="m-1 btn btn-sm btn-secondary" href="#">Freelancing</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<footer class="bg-dark text-white p-3 p-lg-5">
<p class="text-center mb-0">
© 2020 Made with
<i class="fa fa-heart text-danger" aria-hidden="true"></i> for Alyra
</p>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/js/bootstrap.min.js"
integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/"
crossorigin="anonymous"
></script>
</body>
</html>