-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcontact.html
325 lines (291 loc) · 14.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Page - Food Blog | Front-end Development Course at Nordic Coder School</title>
<!-- Favicon -->
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-176427515-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-176427515-1');
</script>
<!-- Primary Meta Tags -->
<title>Contact us - Food Blog | HTML5 & CSS3 Course</title>
<meta name="title" content="Contact us - Food Blog | HTML5 & CSS3 Course">
<meta name="description"
content="Contact us if you have any questions about menus, recipes or simply want to update new dishes. The Food Blog team is pleased to serve you!">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://food-blog.vercel.app/contact.html">
<meta property="og:title" content="Contact us - Food Blog | HTML5 & CSS3 Course">
<meta property="og:description"
content="Contact us if you have any questions about menus, recipes or simply want to update new dishes. The Food Blog team is pleased to serve you!">
<meta property="og:image"
content="https://images.unsplash.com/photo-1528747045269-390fe33c19f2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=750&q=80">
<meta property="og:image:alt" content="Contact us - Food Blog thumbnail">
<meta property="fb:app_id" content="312288953554749">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url"
content="https://food-blog.vercel.app/contact.html">
<meta property="twitter:title" content="Contact us - Food Blog | HTML5 & CSS3 Course">
<meta property="twitter:description"
content="Contact us if you have any questions about menus, recipes or simply want to update new dishes. The Food Blog team is pleased to serve you!">
<meta property="twitter:image"
content="https://images.unsplash.com/photo-1528747045269-390fe33c19f2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=750&q=80">
<!-- Fontawesome -->
<script src="https://kit.fontawesome.com/4a9d18e4fd.js" crossorigin="anonymous"></script>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet">
<!-- AOS Animate Library -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<!-- CSS Stylesheets -->
<link rel="stylesheet" href="css/grid/container.css">
<link rel="stylesheet" href="css/grid/row.css">
<link rel="stylesheet" href="css/grid/col.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="css/recipes.css">
<link rel="stylesheet" href="css/about.css">
<link rel="stylesheet" href="css/contact.css">
</head>
<body>
<!-- Header section start -->
<header>
<!-- Top-bar section start -->
<section class="top-bar">
<div class="container">
<div class="row">
<div class="col-md-6">
<ul class="top-bar__social-list">
<li><a href="#"><i class="fab fa-pinterest"></i></a></li>
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-dribbble"></i></a></li>
<li><a href="#"><i class="fab fa-behance"></i></a></li>
<li><a href="#"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
</div>
<div class="col-md-6">
<div class="top-bar__links">
<a href="#">Register</a>
<span>/</span>
<a href="#">Login</a>
</div>
</div>
</div>
</div>
</section>
<!-- Top-bar section end -->
<!-- Navigation section start -->
<nav class="top-nav">
<div class="container">
<div class="row">
<div class="col-4 col-md-2 col-lg-2">
<a href="index.html" class="top-nav___link-logo">
<img class="top-nav__logo" src="./images/logo.svg" alt="">
</a>
</div>
<div class="col-md-9 col-lg-8">
<ul class="top-nav__menu">
<li><a href="index.html">Home</a></li>
<li><a href="recipes.html">Recipes</a></li>
<li><a href="recipe-detail.html">Recipe Detail</a></li>
<li><a href="about.html">About</a></li>
<li class="active"><a href="#">Contact</a></li>
</ul>
</div>
<div class="col-2 col-md-1 col-lg-2">
<div class="top-nav__search">
<button>
<i class="fas fa-search"></i>
</button>
</div>
</div>
<div class="col-3">
<div class="top-nav__toggle" id="showMenu">
<div class="top-nav__toggle-bars">
<div class="top-nav__toggle-bar" id="barTop"></div>
<div class="top-nav__toggle-bar" id="hideBar"></div>
<div class="top-nav__toggle-bar" id="barBottom"></div>
</div>
</div>
</div>
<ul class="top-nav__menu-toggle" id="navLinks">
<li><a href="index.html">Home</a></li>
<li><a href="recipes.html">Recipes</a></li>
<li><a href="recipe-detail.html">Recipe Detail</a></li>
<li><a href="about.html">About</a></li>
<li class="active"><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Navigation section end -->
</header>
<!-- Header section end -->
<main>
<!-- Hero section start -->
<section class="hero">
<h1 class="hero__title">Contact</h1>
</section>
<!-- Hero section end -->
<!-- Contact section start -->
<section class="contact">
<div class="container">
<div class="row">
<div class="col-12 col-lg-8" data-aos="fade-up" data-aos-easing="ease-in-out" data-aos-delay="0">
<h2 class="contact__title">Leave a comment</h2>
<form class="contact__form">
<div class="row">
<div class="col-12 col-md-6 col-lg-6">
<div class="form-group">
<input required type="text" class="conatact__form-name" placeholder="Name">
</div>
</div>
<div class="col-12 col-md-6 col-lg-6">
<div class="form-group">
<input required type="email" class="contact__form-email" placeholder="E-mail">
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="form-group">
<input type="text" class="contact__form-subject" placeholder="Subject">
</div>
<div class="form-group">
<textarea required class="contact__form-message" name="subject" id="subject"
cols="30" rows="10" placeholder="Message"></textarea>
</div>
<div class="form-group">
<button class="contact__form-btn">Send</button>
</div>
</div>
</div>
</form>
</div>
<div class="col-12 col-lg-4" data-aos="fade-up" data-aos-easing="ease-in-out" data-aos-delay="200">
<div class="contact__logo">
<img src="./images/logo.svg" alt="">
</div>
<div class="contact__info">
<ul class="contact__info-list">
<li>
<h3>Address:</h3>
<p>481 Creekside Lane Avila</p>
<p>Beach, CA 93424</p>
</li>
<li>
<h3>Phone:</h3>
<p>+53 345 7953 32453</p>
<p>+53 345 7557 822112</p>
</li>
<li>
<h3>Email:</h3>
<p>yourmail@gmail.com</p>
</li>
</ul>
<ul class="contact__info-social">
<li>
<a href="#">
<i class="fab fa-pinterest"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-dribbble"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-behance"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Contact section end -->
</main>
<!-- Footer start -->
<footer>
<section class="app-footer">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="app-footer__logo-wrapper">
<img src="images/logo.svg" alt="">
</div>
<ul class="app-footer__social-list">
<li><a href="#"><i class="fab fa-pinterest"></i></a></li>
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-dribbble"></i></a></li>
<li><a href="#"><i class="fab fa-behance"></i></a></li>
<li><a href="#"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
</div>
<div class="col-lg-6">
<div class="app-footer__right">
<ul class="app-footer__menu">
<li><a href="index.html">Home</a></li>
<li><a href="recipes.html">Recipes</a></li>
<li><a href="recipe-detail.html">Recipe Detail</a></li>
<li><a href="about.html">About</a></li>
<li class="active"><a href="#">Contact</a></li>
</ul>
<p>Copyright © 2020 All rights reserved | This template is made with <i
class="far fa-heart"></i> by <a href="#">Colorlib</a>
</p>
</div>
</div>
</div>
</div>
</section>
</footer>
<!-- Footer end -->
<!-- Scroll-to-top button start -->
<div class="scroll-to-top">
<button id="scrollButton">
<i class="fas fa-chevron-up"></i>
</button>
</div>
<!-- Scroll-to-top button end -->
<!-- Javascript -->
<script src="js/main.js"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
easing: 'ease-in-out',
duration: 600,
once: true
});
</script>
</body>
</html>