-
Notifications
You must be signed in to change notification settings - Fork 0
/
hcproducts.html
218 lines (196 loc) · 6.24 KB
/
hcproducts.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Listing - Visakhapatnam Crafts Marketplace</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url(images/background.jpg);
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
background-color: #333;
color: white;
}
.logo {
font-size: 24px;
}
nav ul {
list-style: none;
display: flex;
gap: 20px;
margin: 0;
padding: 0;
}
nav ul li {
display: inline;
}
nav ul li a {
color: white;
text-decoration: none;
}
.product-listing {
padding: 20px;
text-align: center;
}
.products-grid {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.product-card {
border: 1px solid #ddd;
padding: 10px;
width: calc(33.333% - 100px);
box-sizing: border-box;
background-color: rgb(122, 122, 122, 0.5);
border-radius: 50px;
text-align: center;
}
.product-card img {
height: 200px;
aspect-ratio: 1;
}
.price {
font-weight: bold;
color: green;
}
footer {
background-color: #333;
color: white;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.footer-links,
.social-media,
.newsletter,
.contact-info {
text-align: center;
}
.footer-links a {
color: white;
text-decoration: none;
margin: 0 10px;
}
.social-media img {
width: 24px;
margin: 0 5px;
}
.newsletter input {
padding: 5px;
margin-right: 5px;
}
.nav1 {
width: 90vw;
display: flex;
align-items: center;
justify-content: center;
}
.logo {
font-size: 24px;
width: 90vw;
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<!-- Header -->
<header>
<div class="div">
<div class="logo">Kala Krithi</div>
<nav class="nav1">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#aboutus">About Us</a></li>
<li><a href="#shop">Shop</a></li>
<li><a href="artists.html">Artisans</a></li>
<li><a href="#footer">Contact</a></li>
<li><a href="cart.html">Cart</a></li>
<li><a href="sellerform.html">Become a Seller</a></li>
</ul>
</nav>
</div>
</header>
<!-- Product Listing -->
<section class="product-listing">
<h2>Our Products</h2>
<div class="products-grid">
<div class="product-card">
<img src="images/hc1.jpeg" alt="Product 1">
<h3>Product Name 1</h3>
<p>Short description of the product.</p>
<p class="price">₹100</p>
<button>Add to Cart</button>
</div>
<!-- Repeat product-card divs as needed -->
<div class="product-card">
<img src="images/hc2.jpeg" alt="Product 2">
<h3>Product Name 2</h3>
<p>Short description of the product.</p>
<p class="price">₹200</p>
<button>Add to Cart</button>
</div>
<div class="product-card">
<img src="images/hc3.jpeg" alt="Product 3">
<h3>Product Name 3</h3>
<p>Short description of the product.</p>
<p class="price">₹200</p>
<button>Add to Cart</button>
</div>
<div class="product-card">
<img src="images/hc4.jpeg" alt="Product 3">
<h3>Product Name 3</h3>
<p>Short description of the product.</p>
<p class="price">₹300</p>
<button>Add to Cart</button>
</div>
<div class="product-card">
<img src="images/hc5.jpeg" alt="Product 3">
<h3>Product Name 3</h3>
<p>Short description of the product.</p>
<p class="price">₹200</p>
<button>Add to Cart</button>
</div>
<div class="product-card">
<img src="images/hc6.jpeg" alt="Product 3">
<h3>Product Name 3</h3>
<p>Short description of the product.</p>
<p class="price">₹300</p>
<button>Add to Cart</button>
</div>
</div>
</section>
<footer id="footer">
<div class="footer-links">
<a href="index.html">Home</a>
<a href="#aboutus">About Us</a>
<a href="#shop">Shop</a>
<a href="artists.html">Artisans</a>
<a href="#footer">Contact</a>
<a href="cart.html">Cart</a>
</div>
<div class="newsletter">
<p>Subscribe for Updates</p>
<input type="email" placeholder="Enter your email">
<button>Subscribe</button>
</div>
<div class="contact-info">
<p>Address: 123 Street, Visakhapatnam, India</p>
<p>Email: [email protected]</p>
<p>Phone: +91 12345 67890</p>
</div>
</footer>
</body>
</html>