-
Notifications
You must be signed in to change notification settings - Fork 1
/
products.html
448 lines (416 loc) · 14.4 KB
/
products.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
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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Products</title>
<!-- Primary Meta Tags -->
<meta name="title" content="Jayasinghe Oil Mills" />
<meta
name="description"
content="Jayasinghe Oil Mills Business and Manufacturing Process Management System."
/>
<meta
name="keywords"
content="JOM, Jayasinghe Oil Mills, Coconut Oil, Sri Lanaka"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://jom-dev.duckdns.org/" />
<meta property="og:title" content="Jayasinghe Oil Mills" />
<meta
property="og:description"
content="Jayasinghe Oil Mills Business and Manufacturing Process Management System."
/>
<meta
property="og:image"
content="https://jom-dev.duckdns.org/common/img/logo-manifest.jpg"
/>
<!-- Twitter -->
<meta
property="twitter:card"
content="https://jom-dev.duckdns.org/common/img/logo-manifest.jpg"
/>
<meta property="twitter:url" content="https://jom-dev.duckdns.org/" />
<meta property="twitter:title" content="Jayasinghe Oil Mills" />
<meta
property="twitter:description"
content="Jayasinghe Oil Mills Business and Manufacturing Process Management System."
/>
<meta
property="twitter:image"
content="https://jom-dev.duckdns.org/common/img/logo-manifest.jpg"
/>
<!-- icons -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="https://jom-dev.duckdns.org/common/img/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="https://jom-dev.duckdns.org/common/img/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="https://jom-dev.duckdns.org/common/img/favicon-16x16.png"
/>
<!-- manifest -->
<link rel="manifest" href="./site.webmanifest" />
<script
src="https://kit.fontawesome.com/3d9946f29b.js"
crossorigin="anonymous"
></script>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.min.css"
rel="stylesheet"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<link rel="stylesheet" href="./common/style.css" />
<link rel="stylesheet" href="./landing.css" />
<link rel="stylesheet" href="./product.css" />
<link rel="stylesheet" href="./process.css" />
</head>
<body>
<!-- Loading screen -->
<div class="loader-wrapper">
<div class="logo-container">
<img src="./common/JOM logo 1.png" alt="" />
</div>
<div class="lds-spinner">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<nav class="navbar">
<ul class="menu">
<li><a href="./index.html">Home</a></li>
<li><i class="fas fa-circle dot"></i></li>
<li><a href="./process.html">Process</a></li>
<li><i class="fas fa-circle dot"></i></li>
<li><a href="./products.html" class="active">Products</a></li>
</ul>
<a class="button" href="./signin.html">Login</a>
<!-- responsive button -->
<div class="menu-btn"><i class="fa fa-bars"></i></div>
</nav>
<section class="content">
<h1 class="main-text">Explore our <br />Products</h1>
<p class="sub-text">
Immerse Yourself in the Richness of <br />
Jayasinghe Oil Mills' Diverse Range of <br />
Exceptional Coconut Oil Products. <br /><br />
Our products are crafted with <br />
Precision and Passion for <br />
Unmatched Purity and Quality.
</p>
<a href="#container">
<svg class="arrows">
<path class="a1" d="M0 0 L30 32 L60 0"></path>
<path class="a2" d="M0 20 L30 52 L60 20"></path>
<path class="a3" d="M0 40 L30 72 L60 40"></path>
</svg>
</a>
</section>
<div id="container">
<h1 class="pheading">Our Latest Produts</h1>
<section class="sec">
<div class="products">
<!-- card start -->
<div class="card">
<div class="img">
<img src="./common/img/product3.png" alt="" />
</div>
<div class="desc">Food</div>
<div class="title">Extra Virgin Coconut Oil</div>
<div class="box">
<div class="price">2000 LKR</div>
<button class="btn">Buy Now</button>
</div>
</div>
<!-- card end -->
<!-- card start -->
<div class="card">
<div class="img">
<img src="./common/img/product5.png" alt="" />
</div>
<div class="desc">Cosmetics</div>
<div class="title">Coconut Hair Oil</div>
<div class="box">
<div class="price">900 LKR</div>
<button class="btn">Buy Now</button>
</div>
</div>
<!-- card end -->
<!-- card start -->
<div class="card">
<div class="img">
<img src="./common/img/product1.png" alt="" />
</div>
<div class="desc">Food</div>
<div class="title">Coconut Oil</div>
<div class="box">
<div class="price">1000 LKR</div>
<button class="btn">Buy Now</button>
</div>
</div>
<!-- card end -->
<!-- card start -->
<div class="card">
<div class="img">
<img src="./common/img/product4.png" alt="" />
</div>
<div class="desc">Food</div>
<div class="title">Virgin Coconut Oil</div>
<div class="box">
<div class="price">1500 LKR</div>
<button class="btn">Buy Now</button>
</div>
</div>
<!-- card end -->
<!-- card start -->
<div class="card">
<div class="img">
<img
src="https://images.squarespace-cdn.com/content/v1/5c1074accc8fed6a4251da8f/1670428155654-5WZA6XJHKD6Z88VYGAWL/Coconut+Cooking+Oil+500ml+with+reflection+%281%29.jpg?format=1500w"
alt=""
/>
</div>
<div class="desc">Food</div>
<div class="title">Coconut Cooking Oil</div>
<div class="box">
<div class="price">1500 LKR</div>
<button class="btn">Buy Now</button>
</div>
</div>
<!-- card end -->
<!-- card start -->
<div class="card">
<div class="img">
<img
src="https://images.squarespace-cdn.com/content/v1/5c1074accc8fed6a4251da8f/1670428964052-IAKA46S6EHJJLJFDQX6F/Organic-Coconut-Vinegar-MOV_1.jpg?format=1500w"
alt=""
/>
</div>
<div class="desc">Food</div>
<div class="title">Coconut Vinigar</div>
<div class="box">
<div class="price">1000 LKR</div>
<button class="btn">Buy Now</button>
</div>
</div>
<!-- card end -->
<!-- card start -->
<div class="card">
<div class="img">
<img
src="https://images.squarespace-cdn.com/content/v1/5c1074accc8fed6a4251da8f/1703155964886-CS5XVWDYH8L9MJ87N9WV/VCO+Front.jpg?format=1500w"
alt=""
/>
</div>
<div class="desc">Food</div>
<div class="title">Extra Virgin Cooking Oil</div>
<div class="box">
<div class="price">1500 LKR</div>
<button class="btn">Buy Now</button>
</div>
</div>
<!-- card end -->
<!-- card start -->
<div class="card">
<div class="img">
<img
src="https://klec.jayagrocer.com/cdn/shop/products/032677-1-1_2c0a8d81-d460-4519-b093-0888d538ea37.jpg?v=1704964343"
alt=""
/>
</div>
<div class="desc">Food</div>
<div class="title">Cooking Oil</div>
<div class="box">
<div class="price">3000 LKR</div>
<button class="btn">Buy Now</button>
</div>
</div>
<!-- card end -->
<!-- card start -->
<div class="card">
<div class="img">
<img
src="https://media-cdn.oriflame.com/productImage?externalMediaId=product-management-media%2F41568%2F41568.png%3Fversion%3D1650894303&w=1440&bc=%23f5f5f5&ib=%23f5f5f5&h=1440&q=30"
alt=""
/>
</div>
<div class="desc">Cosmetics</div>
<div class="title">Hair Oil</div>
<div class="box">
<div class="price">1000 LKR</div>
<button class="btn">Buy Now</button>
</div>
</div>
<!-- card end -->
<!-- card start -->
<div class="card">
<div class="img">
<img
src="https://cdn11.bigcommerce.com/s-v6yuhlg12w/images/stencil/1280x1280/products/2652/3110/COCOAN4__57217.1669067038.jpg?c=1"
alt=""
/>
</div>
<div class="desc">Food</div>
<div class="title">White Coconut Oil</div>
<div class="box">
<div class="price">1400 LKR</div>
<button class="btn">Buy Now</button>
</div>
</div>
<!-- card end -->
<!-- card start -->
<div class="card">
<div class="img">
<img
src="https://cdn11.bigcommerce.com/s-17vlohgn/images/stencil/1280x1280/products/76/2001/OKAY-COCO4_NEW__63924.1589397511.jpg?c=2"
alt=""
/>
</div>
<div class="desc">Food</div>
<div class="title">Coconut Shampoo</div>
<div class="box">
<div class="price">900 LKR</div>
<button class="btn">Buy Now</button>
</div>
</div>
<!-- card end -->
<!-- card start -->
<div class="card">
<div class="img">
<img
src="https://images-na.ssl-images-amazon.com/images/I/416wqHPtO6L._AC_UL600_SR600,600_.jpg"
alt=""
/>
</div>
<div class="desc">Food</div>
<div class="title">Cooking Oil</div>
<div class="box">
<div class="price">3000 LKR</div>
<button class="btn">Buy Now</button>
</div>
</div>
<!-- card end -->
</div>
</section>
</div>
<br /><br /><br /><br />
<footer class="footer-distributed" id="footer">
<div class="footer-left">
<!-- <img src="./common/JOM logo 1.png" alt="" /> -->
<p class="text">Try our mobile application</p>
<br />
<div class="mobile-app">
<img src="./common/img/supplier_qr.png" alt="" />
<a
href="https://github.com/GroupProject-JOM/Mobile-Collector/releases/download/v1.1.0/JOM.apk"
class="google-icon"
><i class="fa-brands fa-google-play"> Google Play</i></a
>
</div>
<p class="footer-links">
<a href="./index.html#layer1" class="link-1">Home</a>
<a href="./index.html#layer2">About Us</a>
<a href="./products.html">Products</a>
<a href="./process.html">Process</a>
<a href="#footer">Contact</a>
</p>
<p class="footer-company-name">
© 2024 Copyright: Jayasinghe Oil Mills
</p>
</div>
<div class="footer-center">
<div>
<i class="fa fa-map-marker"></i>
<p>
<a href="https://maps.app.goo.gl/QHZtcCDZUr2HPJFS6" target="_blank"
><span>No 105, Ravita Road,</span> Welpalla, Sri Lanka.</a
>
</p>
</div>
<div>
<i class="fa fa-phone"></i>
<p>
<a href="https://wa.me/94718299610" target="_blank"
>+94 71 829 9610</a
>
</p>
</div>
<div>
<i class="fa fa-envelope"></i>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
<div class="footer-right">
<p class="footer-company-about">
<span>About the company</span>
Jayasinghe Oil Mills is one of the leading coconut oil manufacturers
in Sri Lanka. We have been producing Coconut oil for the last 20
years.
</p>
<div class="footer-icons">
<a href="https://www.facebook.com/"><i class="fa fa-facebook"></i></a>
<a href="https://www.twitter.com/"><i class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/"><i class="fa fa-linkedin"></i></a>
<a href="https://www.instagram.com/"
><i class="fa fa-instagram"></i
></a>
</div>
</div>
</footer>
<div class="back-to-top">
<i class="fas fa-chevron-up"></i>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.all.min.js"></script>
<script src="https://unpkg.com/scrollreveal"></script>
<script>
$(".menu-btn").click(function () {
$(".navbar .menu").toggleClass("active");
$(".navbar .button").toggleClass("active");
$(".menu-btn i").toggleClass("active");
});
const scrollRevealOption = {
distance: "50px",
origin: "bottom",
duration: 2000,
reset: true,
};
ScrollReveal().reveal(".main-text", {
...scrollRevealOption,
});
ScrollReveal().reveal(".sub-text", {
...scrollRevealOption,
delay: 500,
});
ScrollReveal().reveal(".scroll-btn", {
...scrollRevealOption,
delay: 1500,
});
Swal.fire({
title: "Attention",
text: "This page is for demonstration only until the online marketplace is implemented.",
icon: "info",
});
</script>
<script src="./common/loader.js"></script>
</body>
</html>