forked from dohinaf/basic-icecream-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
choco_hazel.html
71 lines (71 loc) · 2.23 KB
/
choco_hazel.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
<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">
<br>
<img alt="A pink cup of Van Leeuwen strawberry ice cream with several scoops on top" class="rounded-lg" height="400" src="/images/download (7).jpeg" width="400"/>
</div>
<div class="w-1/2 pl-6">
<h1 class="text-2xl font-bold text-red-700">
Choco-Hazel Pops
</h1>
<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>
<p class="text-gray-700 mb-4">
Chocolate Hazel Pops blend the rich, velvety taste of chocolate with the delightful crunch of roasted hazelnuts, creating an irresistible treat for dessert enthusiasts. This dairy-based delight is perfect for those who enjoy a luxurious and nutty flavor experience. Reviews rave about its creamy texture, perfect balance of sweetness and nuttiness, and the satisfying crunch that elevates this indulgent pop. </p>
<ul class="mb-4">
<li>
<strong>
SKU(Stock Keeping Unit):
</strong>
CHIC500ML
</li>
<li>
<strong>
Availability:
</strong>
<span class="text-red-700">
Limited
</span>
</li>
<li>
<strong>
Flavor:
</strong>
<span class="text-red-700">
Creamy texture with rich flavour of chocolate along with nuts like cashews
</span>
</li>
<li>
<strong>
Vendor:
</strong>
<span class="text-red-700">
Cold Love
</span>
</li>
</ul>
<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>