-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (48 loc) · 1.58 KB
/
index.html
File metadata and controls
58 lines (48 loc) · 1.58 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-Commerce Platform</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 class="header">E-Commerce Platform</h1>
<div class="search-bar">
<input type="text" id="search-input" placeholder="Search for products...">
</div>
</div>
<!-- Product Grid Section -->
<div class="product-grid">
<!-- Product items will be dynamically injected here -->
</div>
<!-- Show More Button -->
<div class="show-more-container">
<button id="show-more-btn" class="show-more-btn">Show More</button>
</div>
<!-- Cart Section -->
<div id="cart-section" class="cart-container">
<div class="cart-header">
<h1>Cart</h1>
</div>
<div class="cart-content">
<!-- Cart Items -->
<div class="cart-items-section">
<!-- Cart items will be dynamically added here -->
</div>
<!-- Price Details Section -->
<div class="price-details-section">
<h2>Price Details</h2>
<p>Total MRP: <span>₹0</span></p>
<p>Coupon Discount: <span>₹0</span></p>
<p>Platform Fee: <span>₹0</span></p>
<p>Shipping Charges: <span>₹0</span></p>
<h3>Total Amount: <span>₹0</span></h3>
<button class="place-order-btn" disabled>Place Order</button>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>