-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
124 lines (113 loc) · 5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>TheShoeBox. Contact Us</title>
<link href="contact.css" rel="stylesheet" />
<link href="default.css" rel="stylesheet" />
<script src="https://kit.fontawesome.com/868c6ab4df.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<div class="top-bttn">
<i class="fas fa-arrow-up"></i>
</div>
<div class="container">
<header>
<h1 class="logo">TheShoeBox.</h1>
<input type="checkbox" id="nav-toggle" class="nav-toggle">
<nav>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="contact.html">CONTACT</a></li>
<li><a href="signup.html">SIGN UP</a></li>
</ul>
</nav>
<label for="nav-toggle" class="nav-toggle-label">
<span></span>
</label>
</header>
</div>
<div class="topTextOverlay">
<div class="topTextImg">
<h1 class="topText">We'd love to hear from you</h1>
</div>
</div>
<div data-aos="fade-in">
<div class="header">
<h1> Contact Us</h1>
<p> Have some questions? Fill out the information below and we will get back to you as soon as possible
</p>
</div>
<div class="form">
<form id="contactForm">
<input type="text" id="name" placeholder="Name" />
<input type="email" id="email" placeholder="E-Mail" />
<input type="text" id="subject" placeholder="Subject" />
<textarea class="message" id="message" name="comment" placeholder="Enter message here"></textarea>
<div>
<button type="submit" onclick="contactInfo();">Let's talk</button>
</div>
</form>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
</div>
</div>
<div class="divider">
<hr>
</div>
<div data-aos="fade-in">
<div class="customerService">
<h1> Customer Service Team</h1>
<ul>
<li><a href="#"><i class="fas fa-phone-alt"></i>1-416-743-9873</a></li>
<li>Monday-Friday</li>
<li>7:00AM - 4:00PM ET</li>
<li><a href="#"><i class="far fa-envelope"></i>Email Us</a></li>
</ul>
</div>
<div class="corporateOffice">
<h1> Corporate Office</h1>
<a href="https://www.google.com/maps/place/75+Adelaide+St+W,+Toronto,+ON+M5V+1S4/@43.6465473,-79.3981901,17z/data=!3m1!4b1!4m5!3m4!1s0x882b34dbe99df33f:0x3542fbd31cae685f!8m2!3d43.6465473!4d-79.3960014"
target="_blank"><i class="fas fa-map-marker-alt"></i>75 Adelaide Street West<br> Toronto, On M5V 1S4</a>
</div class="socialMedia">
<h1>
<h1 class="connect">Connect With Us</h1>
<div class="social-menu">
<ul>
<li><a href="https://www.facebook.com/" target="_blank"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="https://www.instagram.com/" target="_blank"><i class="fab fa-instagram"></i></a></li>
<li><a href="https://www.snapchat.com/l/en-gb/" target="_blank"><i
class="fab fa-snapchat-ghost"></i></a></li>
<li><a href="https://twitter.com/" target="_blank"><i class="fab fa-twitter"></i></a></li>
</ul>
</div>
</h1>
</h1>
<div class="bottomPage">
<h1>Join our newsletter!</h1>
<h2>Be the first to know about new products, news and promotions.</h2>
<form id="newsLetter">
<input type="email" id="subscribebtn" placeholder="Your Email">
<button type="submit" onclick="footer();"><i class="fas fa-arrow-right"></i></button>
</form>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
</div>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
offset: 150,
duration: 1000,
once: true,
});
</script>
<script defer src="backtotop.js"></script>
<script defer src="btmpage.js"></script>
<script defer src="contactform.js"></script>
</body>
</html>