-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselling1.html
95 lines (87 loc) · 5.05 KB
/
selling1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SELLING</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100">
<header class="bg-white shadow">
<nav class="container mx-auto px-4">
<div class="flex justify-between items-center py-4">
<a href="#" class="text-lg font-bold text-gray-900">SELLING</a>
<ul class="flex space-x-4">
<li><a href="#" class="text-gray-900 hover:text-gray-700">Home</a></li>
<li><a href="#" class="text-gray-900 hover:text-gray-700">Shop</a></li>
<li><a href="#" class="text-gray-900 hover:text-gray-700">Sell</a></li>
<li><a href="#" class="text-gray-900 hover:text-gray-700">Cart</a></li>
</ul>
</div>
</nav>
</header>
<main class="container mx-auto py-8">
<h1 class="text-4xl font-bold text-gray-900 mb-8"></h1>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white rounded-lg shadow-lg overflow-hidden">
<img src="https://via.placeholder.com/640x480.png?text=Product+ka+nam" alt="Product ka nam" class="w-full">
<div class="px-4 py-2">
<h2 class="text-lg font-bold text-gray-900 mb-2">Product ka nam</h2>
<p class="text-gray-700">product discription hoga yaha </p>
<p class="font-bold text-gray-900 mt-2">₹999999</p>
<button class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 mt-4 rounded">Add to Cart</button>
</div>
</div>
<div class="bg-white rounded-lg shadow-lg overflow-hidden">
<img src="https://via.placeholder.com/640x480.png?text=Product+ka+nam" alt="Product ka nam " class="w-full">
<div class="px-4 py-2">
<h2 class="text-lg font-bold text-gray-900 mb-2">Product ka nam</h2>
<p class="text-gray-700">product discription hoga yaha</p>
<p class="font-bold text-gray-900 mt-2">₹49.99</p>
<button class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 mt-4 rounded">Add to Cart</button>
</div>
</div>
<div class="bg-white rounded-lg shadow-lg overflow-hidden">
<img src="https://via.placeholder.com/640x480.png?text=Product+ka+nam" alt="Product ka nam" class="w-full">
<div class="px-4 py-2">
<h2 class="text-lg font-bold text-gray-900 mb-2">Product ka nam</h2>
<p class="text-gray-700">product discription hoga yaha</p>
<p class="font-bold text-gray-900 mt-2">₹19.99</p>
<button class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 mt-4 rounded">Add to Cart</button>
</div>
</div>
<div class="bg-white rounded-lg shadow-lg overflow-hidden">
<img src="https://via.placeholder.com/640x480.png?text=Product+ka+nam" alt="Product ka nam" class="w-full">
<div class="px-4 py-2">
<h2 class="text-lg font-bold text-gray-900 mb-2">Product ka nam</h2>
<p class="text-gray-700">product discription hoga yaha</p>
<p class="font-bold text-gray-900 mt-2">₹468</p>
<button class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 mt-4 rounded">Add to Cart</button>
</div>
</div>
<div class="bg-white rounded-lg shadow-lg overflow-hidden">
<img src="https://via.placeholder.com/640x480.png?text=Product+ka+nam" alt="Product ka nam" class="w-full">
<div class="px-4 py-2">
<h2 class="text-lg font-bold text-gray-900 mb-2">Product ka nam</h2>
<p class="text-gray-700">product discription hoga yaha</p>
<p class="font-bold text-gray-900 mt-2">₹7589</p>
<button class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 mt-4 rounded">Add to Cart</button>
</div>
</div>
<div class="bg-white rounded-lg shadow-lg overflow-hidden">
<img src="https://via.placeholder.com/640x480.png?text=Product+ka+nam" alt="Product ka nam" class="w-full">
<div class="px-4 py-2">
<h2 class="text-lg font-bold text-gray-900 mb-2">Product ka nam</h2>
<p class="text-gray-700">product discription hoga yaha</p>
<p class="font-bold text-gray-900 mt-2">₹7686</p>
<button class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 mt-4 rounded">Add to Cart</button>
</div>
</div>
</main>
<footer class="bg-white shadow">
<div class="container mx-auto px-96 py-4">
<p class="text-gray-700">© 2023 tera bap ka store ha bsdk </p>
</div>
</footer>
</body>
</html>