-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
53 lines (52 loc) · 2.04 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
<!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" />
<script
src="https://kit.fontawesome.com/85b9814f97.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="/styles/all.css" />
<link rel="stylesheet" href="/styles/contact.css" />
<title>Prestige Worldwide | Contact</title>
</head>
<body>
<div class="navbar">
<img src="/images/logo.svg" alt="Presige Worldwide Logo" />
<div class="nav-links">
<a href="/homepage.html">Home</a>
<a href="/shop.html">Shop</a>
<a href="/contact.html">Contact</a>
</div>
</div>
<div class="contact-container">
<div class="contact-card">
<h2>Contact Info</h2>
<div class="twoCols">
<img src="/images/watch-illustration.png" alt="Illustration of a watch">
<div>
<p>(905) 894-2334</p>
<p>[email protected]</p>
<p>1148 Oliverio Drive</p>
<p>Toronto, Ontario, Canada</p>
<p>L3C0G7</p>
</div>
</div>
</div>
<h2>Send Us a Message</h2>
<form class="message-form" action="https://formsubmit.co/[email protected]" method="POST">
<label for="name">Your Name</label>
<input type="text" name="name" id="name" placeholder="John Doe">
<label for="email">Your Email</label>
<input type="email" name="email" id="email" placeholder="[email protected]">
<label for="message">Your Message</label>
<textarea name="message" id="message" rows="8" placeholder="Enter your message"></textarea>
<button type="submit">Send <i class="fa-solid fa-paper-plane"></i></button>
<!-- AUTORESPONSDER - https://formsubmit.co/documentation -->
<input type="hidden" name="_autoresponse" value="Thanks for your message. We'll get back to you as soon as possible.">
</form>
</div>
</body>
</html>