-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblog.html
201 lines (179 loc) · 6.47 KB
/
blog.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
<!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>
<!--=============== BOXICONS ===============-->
<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/blog.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>
<!--=============== BLOG SECTION ===============-->
<section class="blog">
<div class="blog-heading">
<span>Our Recent Posts</span>
<h3>Our Blog</h3>
</div>
<div class="blog-container">
<div class="blog-box">
<div class="blog-img">
<img src="img/blog-1.jpeg" alt="Founder Profile Picture">
</div>
<div class="blog-text">
<span>18 March 2021</span>
<a href="#" class="blog-title">Interview with our Founder</a>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Illum doloribus et quibusdam ea, non iusto!</p>
<a href="#">Read More</a>
</div>
</div>
<div class="blog-box">
<div class="blog-img">
<img src="img/blog-2.jpeg" alt="Strawberry Bubble Tea">
</div>
<div class="blog-text">
<span>18 March 2021</span>
<a href="#" class="blog-title">Chinese New Year at Boba Buddies</a>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Illum doloribus et quibusdam ea, non iusto!</p>
<a href="#">Read More</a>
</div>
</div>
<div class="blog-box">
<div class="blog-img">
<img src="img/blog-3.jpeg" alt="Bubble Tea">
</div>
<div class="blog-text">
<span>18 March 2021</span>
<a href="#" class="blog-title">Environmentally Friendly Packaging</a>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Illum doloribus et quibusdam ea, non iusto!</p>
<a href="#">Read More</a>
</div>
</div>
</div>
</section>
<!--=============== 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="#"><i class='bx bxl-facebook' ></i></a>
<a href="#"><i class='bx bxl-twitter' ></i></a>
<a href="#"><i class='bx bxl-instagram' ></i></a>
<a href="#"><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>