-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct1.html
286 lines (249 loc) · 9.23 KB
/
product1.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Details</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0px 0px;
background-image: url(photos/kape.webp);
background-size: cover;
background-color: #333;
color: #fafafa;
}
.header {
overflow: hidden;
background-color: rgba(170, 147, 85, 0.918);
}
.header a {
float: left;
color: white;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
.header a.logo {
font-size: 25px;
font-weight: bold;
}
.header a:hover {
background-color: rgba(90, 82, 11, 0.795);
color: rgb(255, 255, 255);
}
.header a.active {
background-color: rgba(90, 82, 11, 0.795);
color: white;
}
.header-Right {
float: right;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
.product-detail {
display: flex;
justify-content: center;
align-items: flex-start;
margin: 20px;
padding: 20px;
}
.product-image {
flex: 1;
padding: 20px;
}
.product-image img {
width: 100%;
height: auto;
border-radius: 8px;
}
.product-info {
flex: 2;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
margin-left: 20px;
}
.product-info h2 {
font-size: 28px;
margin-bottom: 15px;
}
.product-info p {
font-size: 16px;
line-height: 1.6;
margin-bottom: 15px;
}
.price {
font-size: 24px;
font-weight: bold;
color: #FF5733;
margin-bottom: 15px;
}
.buy-button {
background-color: #FF5733;
color: white;
padding: 10px 20px;
border: none;
font-size: 18px;
cursor: pointer;
border-radius: 5px;
}
.buy-button:hover {
background-color: #e14e2d;
}
.additional-images {
margin-top: 30px;
display: flex;
flex-direction: column;
align-items: center;
}
.image-item {
background-color: white;
border-radius: 8px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-bottom: 30px;
width: 80%;
text-align: center;
}
.image-item img {
width: 20%;
height: auto;
border-radius: 8px;
}
.image-item .image-info {
padding: 15px;
}
.image-item .image-info h3 {
font-size: 22px;
color: #333;
margin-bottom: 10px;
}
.image-item .price {
font-size: 18px;
font-weight: bold;
color: #FF5733;
margin-bottom: 10px;
}
.image-item .buy-now-section {
margin-top: 10px;
}
.image-item .buy-now-section p {
font-size: 14px;
color: #555;
}
footer {
text-align: center;
background-color: rgba(128, 112, 68, 0.918);
color: #f9f9f9;
padding: 10px;
position: relative;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<div class="header">
<div class="header-Left">
<a href="home.html" class="logo">
<img src="photos/logo.svg" alt="Logo" class="logo-img" style="height: 40px; vertical-align: middle;">
TaraTea
</a>
</div>
<div class="header-Right">
<a href="home.html">Home</a>
<a href="aboutus.html">About Us</a>
<a href="contactus.html">Contact Us</a>
<a class="active" href="product1.html">Products</a>
<a href="#" id="logout" onclick="logout()">Logout</a>
</div>
</div>
</header>
<!-- Product 1: Vanilla Coffee -->
<div class="product-detail">
<div class="product-image">
<img src="photos/vanilla coffee.jfif" alt="Vanilla Flavor" style="width: 200px; height: 255px; margin-left: 100px; margin-bottom: 100px; margin-top: -10px;">
</div>
<div class="product-info">
<h2>Vanilla Coffee</h2>
<p>"Vanilla coffee is like the quiet love that grows slowly but deeply — subtle, soothing, and comforting in all the right ways. It doesn’t scream for attention, but with every sip, you realize it’s exactly what you needed. Sometimes, the simplest things are the ones that make you feel at home. ☕🌿💛"</p>
<div class="price">₱125</div>
<button class="buy-button" onclick="orderNow('Vanilla Coffee', 125)">Order Now</button>
</div>
</div>
<!-- Product 2: Chocolate Coffee -->
<div class="product-detail">
<div class="product-image">
<img src="photos/chocolate coffee.jfif" alt="Chocolate Flavor" style="width: 200px; height: 255px; margin-left: 100px; margin-bottom: 100px; margin-top: -10px;">
</div>
<div class="product-info">
<h2>Chocolate Coffee</h2>
<p>"Chocolate coffee is like that person who’s always there to comfort you — bittersweet at first, but once you let it in, it melts all the stress away, leaving you with a warmth you didn’t know you needed. It’s a reminder that sometimes, the best things come when you least expect it. ☕🍫💔"</p>
<div class="price">₱150</div>
<button class="buy-button" onclick="orderNow('Chocolate Coffee', 150)">Order Now</button>
</div>
</div>
<!-- Product 3: Caramel Coffee -->
<div class="product-detail">
<div class="product-image">
<img src="photos/caramel coffee.jpg" alt="Caramel Flavor" style="width: 200px; height: 255px; margin-left: 100px; margin-bottom: 100px; margin-top: -10px;">
</div>
<div class="product-info">
<h2>Caramel Coffee</h2>
<p>"Caramel coffee is like that feeling when you’re wrapped in warmth after a long day — sweet, smooth, and just a little bit indulgent. It’s the reminder that even the simplest moments can be filled with sweetness. A little bit of caramel can turn any bitter day into something worth savoring. ☕🍮"</p>
<div class="price">₱150</div>
<button class="buy-button" onclick="orderNow('Caramel Coffee', 150)">Order Now</button>
</div>
</div>
<!-- Product 4: Expresso Coffee -->
<div class="product-detail">
<div class="product-image">
<img src="photos/expresso coffee.webp" alt="Expresso Flavor" style="width: 200px; height: 255px; margin-left: 100px; margin-bottom: 100px; margin-top: -10px;">
</div>
<div class="product-info">
<h2>Expresso Coffee</h2>
<p>"Espresso is like a love that hits you all at once — intense, bold, and unapologetically strong. No sugar-coating, just pure energy and raw connection. It's the kind of kick you need when you're feeling lost, and the spark that reminds you to keep going. ☕🔥"</p>
<div class="price">₱99</div>
<button class="buy-button" onclick="orderNow('Expresso Coffee', 99)">Order Now</button>
</div>
</div>
<!-- Product 5: Mocha Coffee -->
<div class="product-detail">
<div class="product-image">
<img src="photos/mocha coffee.jfif" alt="Mocha Flavor" style="width: 200px; height: 255px; margin-left: 100px; margin-bottom: 100px; margin-top: -10px;">
</div>
<div class="product-info">
<h2>Mocha Coffee</h2>
<p>"Mocha is like the relationship you crave — a perfect blend of sweetness and strength. It's the balance of passion and comfort, where the rich espresso meets the smooth chocolate, reminding you that life can be both intense and sweet. Sometimes, all you need is a little mocha to make everything feel right. ☕🍫💖"</p>
<div class="price">₱125</div>
<button class="buy-button" onclick="orderNow('Mocha Coffee', 125)">Order Now</button>
</div>
</div>
<footer>
© Copyright <strong><span>TaraTea</span></strong>. All Rights Reserved
</footer>
<script>
function orderNow(productName, price) {
alert("You have ordered " + productName + " for ₱" + price + ".");
}
function logout() {
alert("You have been logged out!");
window.location.href = "index.html";
}
</script>
</body>
</html>