-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhey.html
33 lines (29 loc) · 1.27 KB
/
hey.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shopping Cart</title>
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
</head>
<body class="bg-gray-800 text-white">
<div class="max-w-2xl mx-auto p-6 text-center" id="cart-container">
<h1 class="text-3xl font-bold">Your Cart</h1>
<div id="cart-items" class="space-y-4 mt-4">
</div>
<p id="total-price" class="text-xl font-semibold mt-4">Total: 0 INR</p>
<button id="checkout" class="px-6 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-800 mt-4">Checkout</button>
</div>
<template id="cart-item-template">
<div class="flex justify-between p-4 bg-gray-700 rounded-md items-center">
<img class="w-16 h-16 rounded-md" src="" alt="Product">
<div class="text-gray-100 flex-1 ml-4">
<h3 class="text-lg font-semibold">Product Name</h3>
<p class="cartItemPrice">Price INR</p>
</div>
<button class="remove-btn bg-red-500 text-white px-2 py-1 rounded-md">Remove</button>
</div>
</template>
<!-- <script src="cart.js"></script> -->
</body>
</html>