-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
167 lines (145 loc) · 4.95 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
<!DOCTYPE html>
<html lang="zxx">
<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" />
<title>Boba Buddies Tea Company</title>
<!--=============== BOX ICONS ===============-->
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<!--=============== CUSTOM CSS ===============-->
<link rel="stylesheet" href="css/homepage.css"/>
<link rel="stylesheet" href="css/contact.css"/>
</head>
<body>
<!--=============== NAVIGATION BAR ===============-->
<nav class="navbar">
<div class="navbar-container">
<div class="navbar-brand">
<a href="index.html">
<img src="img/logo.png" alt="Logo"/>
</a>
</div>
<ul class="navbar-nav-left">
<li>
<a href="menu.html">Menu</a>
</li>
<li>
<a href="about.html">About Us</a>
</li>
<li>
<a href="blog.html">Blog</a>
</li>
<li>
<a href="order.html">Order Now</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
<li>
<a href="faqs.html">FAQS</a>
</li>
</ul>
<ul class="navbar-nav-right">
<li>
<a href="stores.html">
<img src="img/marker.svg" alt="" />
<span>Find a store</span>
</a>
</li>
<li><button class="btn btn-dark-outline">Sign in</button></li>
<li><button class="btn btn-dark">Join now</button></li>
</ul>
<!--=============== HAMBURGER MENU ===============-->
<button type="button" class="hamburger" id="menu-btn">
<span class="hamburger-top"></span>
<span class="hamburger-middle"></span>
<span class="hamburger-bottom"></span>
</button>
</div>
</nav>
<!--=============== MOBILE MENU ===============-->
<div class="mobile-menu hidden" id="menu">
<ul>
<li>
<a href="menu.html">Menu</a>
</li>
<li>
<a href="about.html">About Us</a>
</li>
<li>
<a href="blog.html">Blog</a>
</li>
<li>
<a href="order.html">Order Now</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
<li>
<a href="faqs.html">FAQS</a>
</li>
</ul>
<div class="mobile-menu-bottom">
<button class="btn btn-dark-outline">Sign in</button>
<button class="btn btn-dark">Join now</button>
<div>
<a href="stores.html">
<img src="img/marker.svg" alt="" />
<span>Find a store</span>
</a>
</div>
</div>
</div>
<!--=============== CONTACT FORM ===============-->
<div class="contact-container">
<form>
<h3 class ="text-md">Get in touch!</h3>
<input type="text" id="name" placeholder="Your name" required>
<input type="email" id="email" placeholder="Your email" required>
<input type="text" id="phone" placeholder="Your mobile number" required>
<textarea id="message" rows="4" placeholder="How can we help you?"></textarea>
<button type="submit">Send</button>
</form>
</div>
<!--=============== FOOTER ===============-->
<section class="footer">
<div class="footer-box">
<h2>Boba Buddies</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, facere.</p>
<div class="social">
<a href="https://www.facebook.com/"><i class='bx bxl-facebook'></i></a>
<a href="https://twitter.com/"><i class='bx bxl-twitter'></i></a>
<a href="https://www.instagram.com/"><i class='bx bxl-instagram' ></i></a>
<a href="https://www.tiktok.com/"><i class='bx bxl-tiktok' ></i></a>
</div>
</div>
<div class="footer-box">
<h3>Support</h3>
<ul>
<li><a href="faq.html">FAQ</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="#">Terms Of Use</a></li>
</ul>
</div>
<div class="footer-box">
<h3>View Guides</h3>
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="#">Careers</a></li>
<li><a href="blog.html">Blog Posts</a></li>
<li><a href="stores.html">Our Stores</a></li>
</ul>
</div>
<div class="footer-box">
<h3>Contact</h3>
<div class="contact">
<span><i class='bx bxs-phone' ></i>+353 33 3333</span>
<span><i class='bx bxs-envelope' ></i>[email protected]</span>
</div>
</div>
</section>
<!--=============== CUSTOM JS ===============-->
<script src="js/homepage.js"></script>
</body>
</html>