-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct4.html
144 lines (120 loc) · 3.75 KB
/
product4.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
<!DOCTYPE html>
<html>
<head>
<title>Product Details</title>
<style>
body {
font-family: Arial, sans-serif;
background-image: url(images/spices.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
margin: 0;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}
.container h1 {
text-align: center;
color: #333;
margin-bottom: 20px;
}
.container .product-image {
text-align: center;
margin-bottom: 20px;
}
.container .product-details {
margin-bottom: 20px;
}
.container .product-title {
font-size: 24px;
color: #333;
margin: 0;
text-align: center;
margin-bottom: 10px;
}
.container .product-description {
color: #777;
margin: 10px 0;
}
.container .product-description b {
font-weight: bold;
}
.container .product-price {
font-size: 20px;
color: #333;
margin: 0;
text-align: center;
}
h1 {
text-align: center;
color: #333;
}
.product-image {
text-align: center;
}
img {
max-width: 100%;
height: auto;
margin-bottom: 20px;
}
.product-details {
margin-bottom: 20px;
}
.product-title {
font-size: 24px;
color: #333;
margin: 0;
}
.product-description {
color: #777;
margin: 10px 0;
}
.product-price {
font-size: 20px;
color: #333;
margin: 0;
}
</style>
</head>
<body>
<div class="container">
<h1>Black Chilli Powder</h1>
<div class="product-image">
<img src="images/bcp.jpg" alt="Product Image" style="width: 600px; height: 400px;">
</div>
<div class="product-details">
<h2 class="product-title"></h2><br><br>
<p class="product-description">
Experience the bold and smoky essence of our Black Chilli Powder, a must-have spice for flavor enthusiasts. Made from carefully selected black chilies, this premium spice is known for its distinct taste and rich aroma. </p>
<br>
<b>Features:</b>
<p class="product-description">1. Premium Quality: Our Black Chilli Powder is crafted from mature black chilies, ensuring the highest quality and flavor.
</p>
<p class="product-description">2. Intense Flavor: The deep, dark color and smoky undertones of this spice add depth and complexity to your dishes.
</p>
<p class="product-description">3. Versatility: Enhance the taste of grilled meats, roasted vegetables, and hearty stews with a robust and slightly smoky flavor.
</p>
<p class="product-description">4. Customizable Heat: Adjust the spice level according to your preference, adding just the right amount of kick to your recipes.
</p>
<p class="product-description">
5. Freshness Sealed: Each container is carefully sealed to preserve the freshness, ensuring optimal flavor and aroma.
</p>
<p class="product-description">
6. Culinary Delight: From professional chefs to home cooks, our Black Chilli Powder is a go-to ingredient for adding depth and complexity to dishes.</p>
</p><br>
<p class="product-description">
Add a touch of sophistication to your culinary creations with our premium Black Chilli Powder. Explore the captivating flavor and versatile nature of this spice as it elevates your dishes to new heights. Unleash your creativity in the kitchen and let the smoky notes of our Black Chilli Powder take center stage.
</p>
<p class="product-price">INR 450/kg</p><br><br>
<!-- <p class="product-description">Order <a href="https://google.com">Product Name</a> </p> -->
</div>
</div>
</body>
</html>