-
Notifications
You must be signed in to change notification settings - Fork 226
/
orange_pops.html
79 lines (79 loc) · 2.43 KB
/
orange_pops.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
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>
Shop Items
</title>
<script src="https://cdn.tailwindcss.com">
</script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet"/>
</head>
<body class="bg-gradient-to-r from-pink-300 via-purple-300 to-indigo-400 flex items-center justify-center min-h-screen">
<div class="max-w-4xl mx-auto p-6 bg-white rounded-lg shadow-md flex">
<div class="w-1/2">
<img alt="A pink cup of Van Leeuwen strawberry ice cream with several scoops on top" class="rounded-lg" height="400" src="/images/download (4).jpeg" width="400"/>
</div>
<div class="w-1/2 pl-6">
<h1 class="text-2xl font-bold text-red-700">
Orange Pops
</h1>
<br>
<div class="flex items-center my-2">
<span class="text-2xl font-bold text-red-700">
$12.99
</span>
<span class="text-gray-500 line-through ml-2">
$20.99
</span>
</div>
<br>
<p class="text-gray-700 mb-4">
Orange Pops deliver a zesty burst of refreshing citrus flavor, capturing the essence of sun-ripened oranges in every bite. This dairy-free treat is perfect for those who enjoy bright and tangy desserts. Reviews praise its vibrant color, smooth texture, and invigorating taste, making it an ideal choice for a cool, fruity indulgence. </p>
<ul class="mb-4">
<li>
<strong>
SKU(Stock Keeping Unit):
</strong>
OPIC500ML
</li>
<br>
<li>
<strong>
Availability:
</strong>
<span class="text-red-700">
In Stock
</span>
</li>
<br>
<li>
<strong>
Flavor:
</strong>
<span class="text-red-700">
Tangy orange flavour with sensational smell of orange
</span>
</li>
<br>
<li>
<strong>
Vendor:
</strong>
<span class="text-red-700">
Ibaco
</span>
</li>
</ul>
<br>
<a href="index.html">
<button class="ml-4 px-6 py-2 bg-red-700 text-white rounded">
Go Back
</button>
</div>
</div>
<div class="gtranslate_wrapper"></div>
<script>window.gtranslateSettings = {"default_language":"en","detect_browser_language":true,"wrapper_selector":".gtranslate_wrapper"}</script>
<script src="https://cdn.gtranslate.net/widgets/latest/float.js" defer></script>
</body>
</html>