-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (36 loc) · 1.72 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E Commerce Site</title>
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
</head>
<body class="bg-gray-900">
<div class="bg-gray-800 h-[20rem] w-full flex items-center justify-center flex-col">
<h1 class="text-gray-50 text-center text-3xl font-bold">Add some item to cart</h1>
<a href="cart.html"><button class="mt-8 py-2 px-6 bg-white rounded-lg" id="cart">Visit Cart</button></a>
</div>
<main class="w-[90%] max-w-4xl mx-auto mt-8">
<div class="flex flex-col justify-center items-center py-6 gap-6" id="container">
</div>
<!-- Card Template -->
<template id="card-template">
<div class="bg-zinc-800 rounded-lg p-4 flex items-center justify-between w-[75%] shadow-lg">
<!-- Product Image -->
<img src="https://placehold.co/150x100" class="rounded-lg w-40 h-24 object-cover" alt="img" id="pImg">
<!-- Text Content -->
<div class="flex flex-col gap-2 items-center justify-center">
<h2 class="text-2xl font-bold text-gray-100" id="pName">Product Name</h2>
<p class="text-gray-300">Price: <span class="text-xl font-bold text-white" id="price">1200 INR</span></p>
</div>
<button class="mt-2 px-4 py-2 bg-sky-500 text-white font-semibold rounded-lg hover:bg-sky-600 transition">
Add to cart
</button>
</div>
</template>
</main>
<!-- js -->
<script src="script.js"></script>
</body>
</html>