forked from dohinaf/basic-icecream-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cherry_pops.html
76 lines (76 loc) · 2.16 KB
/
cherry_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
<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/08-1333x2000.jpg" width="400"/>
</div>
<div class="w-1/2 pl-6">
<h1 class="text-2xl font-bold text-red-700">
Cherry Sherbet Pops
</h1>
<br>
<div class="flex items-center my-2">
<span class="text-2xl font-bold text-red-700">
$18.99
</span>
<span class="text-gray-500 line-through ml-2">
$20.99
</span>
</div>
<br>
<p class="text-gray-700 mb-4">
Cherry Sherbet Pops provide a delightful blend of sweet and tart cherry flavors, delivering a refreshing burst of fruity goodness. This dairy-free dessert is perfect for cherry lovers seeking a cool treat. Reviews rave about its vibrant color, smooth texture, and the ideal balance of sweetness and tanginess. </p>
<ul class="mb-4">
<li>
<strong>
SKU(Stock Keeping Unit):
</strong>
CSP500ML
</li>
<li>
<br>
<strong>
Availability:
</strong>
<span class="text-red-700">
In Stock
</span>
</li>
<br>
<li>
<strong>
Flavor:
</strong>
<span class="text-red-700">
Sweet delight to tooth along with tartness and sweetness of cherry
</span>
</li>
<br>
<li>
<strong>
Vendor:
</strong>
<span class="text-red-700">
Amul
</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>
</body>
</html>