forked from I-RoshanKumar/Beginner_Hactoberfest2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactform.html
349 lines (325 loc) · 11.3 KB
/
contactform.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
337
338
339
340
341
342
343
344
345
346
347
348
349
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--========== HTML META TAGS ===========-->
<title>Contact | Playstation</title>
<meta
name="description"
content="Responsive Website PlayStation by Kennedy B."
/>
<meta name="author" content="Kennedy Barros" />
<!--========== Open Graph / Facebook ===========-->
<meta
property="og:url"
content="https://repsonsive-website-playstation.netlify.app/"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="Responsive Website PlayStation" />
<meta
property="og:description"
content="Responsive Website PlayStation by Kennedy B."
/>
<meta property="og:image" content="https://i.ibb.co/qCvjdFd/cover.png" />
<!--========== CANONICAL ===========-->
<meta
property="canonical"
content="https://repsonsive-website-playstation.netlify.app/"
/>
<meta property="keywords" content="responsive, website, playstation" />
<meta property="robots" content="responsive, website, playstation" />
<!--=========== TWITTER ===============-->
<meta name="twitter:card" content="summary_large_image" />
<meta
property="twitter:domain"
content="repsonsive-website-playstation.netlify.app"
/>
<meta
property="twitter:url"
content="https://repsonsive-website-playstation.netlify.app/"
/>
<meta name="twitter:title" content="Responsive Website PlayStation" />
<meta
name="twitter:description"
content="Responsive Website PlayStation by Kennedy B."
/>
<meta name="twitter:image" content="https://i.ibb.co/qCvjdFd/cover.png" />
<!--========== FAVICON ===========-->
<link rel="icon" href="../../assets/svg/logo.svg" type="image/svg+xml" />
<!--========== GOOGLE FONTS ===========-->
<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=Poppins:wght@400;500;600&family=Roboto:wght@400;500&display=swap"
rel="stylesheet"
/>
<!--========== BOX ICONS ===========-->
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<!--========== CSS ===========-->
<link rel="preload" href="../css/style.min.css" as="style" />
<link rel="stylesheet" href="../css/style.min.css" />
</head>
<body>
<!--========== HEADER ===========-->
<header class="header" id="header">
<nav class="nav container">
<div class="nav_box">
<a href="../../index.html" class="nav_logo">
<img
src="../svg/logo.svg"
width="44"
height="41"
alt="PlaySation Logo"
/>
PlayStation
</a>
</div>
<div class="nav_menu" id="nav-menu">
<ul class="nav_list">
<li class="nav_item">
<a href="../../index.html#home" class="nav_link">Home</a>
</li>
<li class="nav_item">
<a href="./controllers.html" class="nav_link">About</a>
</li>
<li class="nav_item">
<a href="./produts.html" class="nav_link">Products</a>
</li>
<li class="nav_item">
<a href="../../index.html#faqs" class="nav_link">FAQs</a>
</li>
<li class="nav_item">
<a href="./contact.html" class="nav_link">Contact</a>
</li>
</ul>
<div class="nav_close" id="nav-close">
<i class="bx bx-x"></i>
</div>
</div>
<div class="nav_btns">
<i class="bx bx-moon change-theme" id="theme-button"></i>
<div class="nav_toggle" id="nav-toggle">
<i class="bx bx-menu"></i>
</div>
</div>
</nav>
</header>
<!--========== MAIN ===========-->
<main class="main container">
<!--========== CONTACT INFO ===========-->
<section class="contact_data">
<p class="contact_subtitle">ANSWERS WITHIN 24H</p>
<h1 class="contact_title">
Contact
<span class="contact_title-secondary">Us</span>
</h1>
</section>
<!--========== CONTACT FORM ===========-->
<div class="contact">
<section class="contact_dice">
<h2>Get in touch</h2>
<p class="contact_dice-subtitle">
We' love to hear from you. Our friendly team is always here to chat.
</p>
<div class="contact_adress">
<i class="bx bx-mail-send"></i>
<div>
<p class="title_adress">Chat to us</p>
<p class="content_adress">Our friendly team is here to help.</p>
<p class="content_adress-2">[email protected]</p>
</div>
</div>
<div class="contact_office">
<i class="bx bxs-map"></i>
<div>
<p class="title_office">Office</p>
<p class="content_office">Come say hello at our office HQ.</p>
<p class="content_office-2">
100 Smith Street <br />
Collingwood VIC 3066 AU
</p>
</div>
</div>
<div class="contact_chat">
<i class="bx bxs-phone-call"></i>
<div>
<p class="title_chat">Chat to us</p>
<p class="content_chat">Mon-Fri from 8am to 5pm.</p>
<p class="content_office-2">+1 (555) 000-0000</p>
</div>
</div>
<div class="contact_networks">
<a href="https://dev.to/kennedybarros" target="_blank">
<i class="bx bxl-dev-to"></i>
</a>
<a href="https://github.com/kennedybarros/" target="_blank">
<i class="bx bxl-github"></i>
</a>
<a href="https://www.instagram.com/k3nnedybarros/" target="_blank">
<i class="bx bxl-instagram"></i>
</a>
<a
href="https://www.linkedin.com/in/kennedybarros/"
target="_blank"
>
<i class="bx bxl-linkedin"></i>
</a>
</div>
</section>
<section class="contact_form">
<h2>Level up your brand</h2>
<p class="contact_form-subtitle">
You can reach us anytime via <span> [email protected] </span>
</p>
<form
class="form"
action="https://formsubmit.co/[email protected]"
method="POST"
>
<input
type="hidden"
name="_next"
value="https://repsonsive-website-playstation.netlify.app/assets/html/email.html"
/>
<input
type="hidden"
name="_autoresponse"
value="your confirm have been sent to your email"
/>
<input type="hidden" name="_captcha" value="false" />
<div class="form_name">
<label for="name">Name</label>
<input
type="text"
id="name"
name="Name"
placeholder="Your Name"
required
/>
</div>
<div class="form_email">
<label for="email">Email</label>
<input
type="email"
id="email"
name="Email"
placeholder="[email protected]"
required
/>
</div>
<div class="form_mensage">
<label for="mensage">Mensage</label>
<textarea
name="Mensage"
id="mensage"
rows="5"
placeholder="What do you need?"
required
></textarea>
</div>
<button class="button_form" type="submit">Send Mensage</button>
</form>
</section>
</div>
</main>
<!--========== FOOTER ===========-->
<hr class="hr_footer" />
<footer class="footer section">
<div class="footer_container container grid">
<div class="footer_content">
<a href="../../index.html" class="footer_logo">
<img
src="../svg/logo.svg"
width="44"
height="41"
alt="Logo PlayStation"
class="footer_logo-img"
/>
PlayStation
</a>
<p class="footer_description">
Welcome to PlayStation Plus. Enhance your <br />
PlayStation experience with online multiplayer, <br />
monthly games, exclusive discounts and more.
</p>
<div class="footer_social">
<a
href="https://github.com/kennedybarros/"
target="_blank"
class="footer_social-link"
>
<i class="bx bxl-github"></i>
</a>
<a
href="https://www.instagram.com/k3nnedybarros/"
target="_blank"
class="footer_social-link"
>
<i class="bx bxl-instagram"></i>
</a>
<a
href="https://www.linkedin.com/in/kennedybarros/"
target="_blank"
class="footer_social-link"
>
<i class="bx bxl-linkedin"></i>
</a>
</div>
</div>
<div class="footer_content">
<h3 class="footer_title">Services</h3>
<ul class="footer_links">
<li>
<a href="./produts.html" class="footer_link">Produts</a>
</li>
</ul>
</div>
<div class="footer_content">
<h3 class="footer_title">Company</h3>
<ul class="footer_links">
<li>
<a href="../../index.html#home" class="footer_link">Home</a>
</li>
<li>
<a href="./controllers.html" class="footer_link">About</a>
</li>
<li>
<a href="../../index.html#faqs" class="footer_link">FAQs</a>
</li>
</ul>
</div>
<div class="footer_content">
<h3 class="footer_title">Suport</h3>
<ul class="footer_links">
<li>
<a href="./terms.html" class="footer_link">Terms of Service</a>
</li>
<li>
<a href="./privacy.html" class="footer_link">Privacy Policy</a>
</li>
<li>
<a href="./contact.html" class="footer_link">Contact Us</a>
</li>
</ul>
</div>
</div>
<hr class="hr_footer-secondary" />
<span class="footer_copy"
>Copyright 2022 Playstation - All Rights Rleserved</span
>
</footer>
<!--========== SCROLL UP ===========-->
<a href="#" class="scrollup" id="scroll-up">
<i class="bx bx-up-arrow-alt scrollup_icon"></i>
</a>
<!--========== SCROLLREVEAL ===========-->
<script src="https://unpkg.com/scrollreveal"></script>
<!--========== JAVASCRIPT ===========-->
<script src="../js/main.js"></script>
</body>
</html>