-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBeverage List.html
More file actions
341 lines (258 loc) · 8.64 KB
/
Beverage List.html
File metadata and controls
341 lines (258 loc) · 8.64 KB
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
<!DOCTYPE>
<html>
<head>
<title>Beverage List</title>
<link rel="icon" type="image/png" href="https://i.ibb.co/VpxWD05/Group-logo-and-name.png">
<style>
/* side menu css */
.sidenav {
height: 100%;
width: 170px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
padding-top: 20px;
}
.sidenav a {
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
}
.sidenav a:hover {
color: #f1f1f1;
}
.main {
margin-left: 160px; /* Same as the width of the sidenav */
font-size: 28px; /* Increased text to enable scrolling */
padding: 0px 10px;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
/* end of side menu css*/
/* my css */
p {
margin-left: 200px;
margin-right: 50px;
font-size: 32px;
text-align: center;
}
#beverageSelect {
font-size: 28px;
font-family: "Comic Sans MS";
}
#beverageSelect:hover {
color: white;
background-color: black;
text-decoration:none;
font-style:normal;
}
#beverageSelect:visited {
text-decoration: none;
color: black;
font-style:normal;
}
body {
background-color: #fffdd0;
}
#specialParagraph:hover {
background-color: black;
color: white;
transition: 0.8s ease;
}
#specialParagraph:visted {
text-decoration:none;
color: black;
}
/* end of my css */
/* header starts here*/
.header {
overflow: hidden;
background-color: white;
padding: 10px 1px;
}
.bg-img {
background-image: url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/1fd4b813-3342-40f7-af93-ae4a33089ef1/dato4eu-69d15573-0893-4e71-b164-10be65c54087.jpg/v1/fill/w_1280,h_625,q_75,strp/commission__coffee_shop_by_taro_k_dato4eu-fullview.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9NjI1IiwicGF0aCI6IlwvZlwvMWZkNGI4MTMtMzM0Mi00MGY3LWFmOTMtYWU0YTMzMDg5ZWYxXC9kYXRvNGV1LTY5ZDE1NTczLTA4OTMtNGU3MS1iMTY0LTEwYmU2NWM1NDA4Ny5qcGciLCJ3aWR0aCI6Ijw9MTI4MCJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS5vcGVyYXRpb25zIl19.YHs57XVGoQ2Hb7pcnRBF6bg0e38ME1SKpntZLCqs-cI");
filter: blur(2px);
-webkit-filter: blur(6px);
height: 400px;
width:100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.bg-text {
color: white;
font-weight: bold;
border: 3px solid #f1f1f1;
position: absolute;
top: 35%;
left: 55.5%;
transform: translate(-50%, -50%);
z-index: 2;
width: 80%;
height: 40%;
}
/* header ends here*/
/* double column div styling*/
.column {
float: left;
width: 50%;
}
.row:after {
content: "";
display: table;
clear: both;
}
/* double column div styling ends here
/*footer starts ehre*/
.footer {
position: static;
left: 0;
bottom: 1;
width: 100%;
background-color: #bbb;
color: white;
text-align: center;
height: 30%;
}
/*footer ends here*/
</style>
</head>
<body style="background-color:#fffdd0;">
<body>
<!--side nav start-->
<div class="sidenav">
<a href="main page.html">Home</a>
<a href ="Beverage List.html" style="background-color: white; color: black;"> Store </a>
<a href="Contact Us Now!.html">About Us</a>
<a href="DinnerHeist bubble tea.html"> Ingredients</a>
<a href="tutorial.html"> Tea Tutorial</a>
<a href="homepage.html"> Collaborations</a>
<a href="we're hiring.html"> We're Hiring</a>
<a href="Outlets.html"> Branch</a>
<a href="login.html"> Member Login</a>
<a href="leave us a message!.html"> Delivery </a>
</div>
<!--side nav end-->
<!--header starts here-->
<div class="header">
<div class="bg-img">
<img src="https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/1fd4b813-3342-40f7-af93-ae4a33089ef1/dato4eu-69d15573-0893-4e71-b164-10be65c54087.jpg/v1/fill/w_1280,h_625,q_75,strp/commission__coffee_shop_by_taro_k_dato4eu-fullview.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9NjI1IiwicGF0aCI6IlwvZlwvMWZkNGI4MTMtMzM0Mi00MGY3LWFmOTMtYWU0YTMzMDg5ZWYxXC9kYXRvNGV1LTY5ZDE1NTczLTA4OTMtNGU3MS1iMTY0LTEwYmU2NWM1NDA4Ny5qcGciLCJ3aWR0aCI6Ijw9MTI4MCJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS5vcGVyYXRpb25zIl19.YHs57XVGoQ2Hb7pcnRBF6bg0e38ME1SKpntZLCqs-cI"
alt="header background"
style="margin-left: 200px;">
</div>
</div>
<div class="bg-text">
<p>
<a href="main page.html" style="text-decoration:none;">
<img src="https://i.ibb.co/VpxWD05/Group-logo-and-name.png" width="138"
alt="logo"
style="margin-left: -100px;">
<br>
</a>
<p align="center"> 𝕊𝕖𝕣𝕧𝕚𝕟𝕘 𝕥𝕙𝕖 𝔹𝕖𝕤𝕥 𝕋𝕖𝕒 𝕒𝕟𝕕 ℂ𝕠𝕗𝕗𝕖𝕖 𝕚𝕟 𝕋𝕠𝕨𝕟</p>
</div>
<!-- header ends here-->
<!-- content starts here-->
<!--
<p style="font-size:32px; text-align: center; margin-left: 200px; margin-right: 50px;"> 𝐵𝑒𝓋𝑒𝓇𝒶𝑔𝑒 𝑀𝑒𝓃𝓊 </p>
<pre style="font-size:17px;"> Milk Tea Series Tea Series</pre>
<hr>
<pre style="font-size:17px;">
Royal No. 9 Milk Tea Assam Black Tea
Black/Green/Qing Oolong Milk Tea Royal No. 9 Black Tea
Tapioca Milk Tea Qingcha Oolong tea
Garden Milk Tea Lemon Winter Melon Tea
Little Happiness Milk Tea Seasons Tea
Honey Golden Pearl Milk tea Black Tea
Roasted Brown Sugar Pearl Milk Tea Green Tea
Japanese Roasted Milk Tea Passion Fruit Green Tea
Grass Jelly Milk Tea Jasmine Green Tea
</pre>
<hr>
<pre style="font-size:17px;"> Coffee / Chocolate Smoothies</pre>
<hr>
<pre style="font-size:17px;">
Americano Strawberry Pudding Smoothies
Latte Mango Passion Fruit Smoothies
Matcha coffee Lychee Sago Tea Smoothies
Drown-a-Bear Au Lait Malty Smoothies (Horlicks)
Caramel Latte Pineapple Smoothies
Cappuccino Peach Papaya Smoothies
</pre>
-->
<!--Bubble Tea Series-->
<div class="row">
<div class="column">
<p> <a href="Bubble Tea Series.html" id="specialParagraph" style="text-decoration:none;" > Bubble Tea Series <a/> </p>
<p align="center">
<a href="Bubble Tea Series.html">
<img src="https://theforkedspoon.com/wp-content/uploads/2019/03/How-to-make-Bubble-Tea-8-500x500.jpg"
alt="bubble tea"
style="width: 30%; height: 20%" align="middle">
</a>
</p>
</div><br />
<!--Tea Series-->
<div class="column">
<p> <a href="Tea Series.html" id="specialParagraph" style="text-decoration:none;"> Tea Series</p>
<p align="center">
<a href="Tea Series.html">
<img src="http://www.starbucks.com.my/media/drinks-earl-gray-brewed-tea-menu-asset_tcm58-9939_w1024_n.jpg"
alt="tea"
style=""
</p>
</a>
</div> <br>
<!--Coffee Series-->
<div class="column">
<p> <a href="coffee series.html" id="specialParagraph" style="text-decoration:none;"> Coffee Series </p>
<a href="coffee series.html">
<p align="center">
<img src="http://www.starbucks.com.my/media/CoffeeOfTheDay_tcm58-11356_w1024_n.jpg"
alt="coffee"
style=""
</p>
</a>
</div>
<!--Non-Caffeinated Series-->
<div class="column">
<p> <a href="non caffeinated series.html" id="specialParagraph" style="text-decoration:none;"> Non-Caffeinated Series</p>
<a href="non caffeinated series.html">
<p align="center">
<img src="http://www.starbucks.com.my/media/Starbucks-Signature-Hot-Chocolate_tcm58-4421_w1024_n.jpg"
alt="hot chocolate"
</p>
</a>
</div>
<!--Smoothies-->
<div class="column">
<p> <a href="smoothie series.html" id="specialParagraph" style="text-decoration:none;"> Smoothies Series </p>
<a href="smoothie series.html">
<p align="center">
<img src="http://www.starbucks.com.my/media/Asset-Raspberry-Blackcurrant-Frappuccino-Blended-Juice_tcm58-10158_w1024_n.jpg"
alt="smoothie"
</p>
</a>
</div> <br />
</div>
<div class="footer">
<br />
<p style="text-align: left; font-size: 18px;"> Got a question? Please email us: <br />
evoltoteaandcoffee2019@gmail.com <br />
Call us at: <br />
(+60) 12341234 <br />
</p>
<pre style="margin-left:70px;" align="left">
© Copyright by Evoltotnc Sdn Bhd.
</pre>
</div>
</body>
</html>