forked from dixonsimon/NammaRation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrice_cart.html
More file actions
48 lines (44 loc) · 1.96 KB
/
Copy pathrice_cart.html
File metadata and controls
48 lines (44 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="icon" type="image/png" href="images/logo.jpg"/>
<link rel="stylesheet" href="stylesheets/global.css">
<title>Namma Ration - Cart</title>
</head>
<body>
<div class="header">
<div class="search-bar">
<input type="text" placeholder="Search" />
<div class="search-icon">
<i class="fas fa-search"></i>
</div>
</div>
</div>
<main class="cart-layout">
<div class="cart-items-section">
<div class="cart-header">My Cart</div>
<div class="cart-item-container">
<img src="https://media.istockphoto.com/id/153737841/photo/rice.jpg?s=612x612&w=0&k=20&c=lfO7iLT0UsDDzra0uBOsN1rvr2d5OEtrG2uwbts33_c=" alt="Rice">
<h2>Arborio Rice - 1 Kg</h2>
</div>
</div>
<aside class="price-details-section">
<div class="price-header">Price Summary</div>
<h4 style="text-align: center;">Price:- ₹64.50</h4>
<h4 style="text-align: center; margin-top: 20px; font-weight: bold;">Tax:- ₹5.50</h4>
<h4 style="text-align: center; margin-top: 20px;">Delivery Charges:- Free</h4>
<hr style="margin-top: 20px; color: #888;">
<h3 style="text-align: center; margin-top: 20px; font-weight: bold;">Total Amount:- ₹70.00</h3>
<hr style="margin-top: 20px; color: #888;">
<button class="shop-now-btn" style="display: block; margin: 20px auto 20px auto;"><a href="location.html">Checkout</a></button>
</aside>
</main>
<div class="copyright">
<p>© 2025 Namma Ration. All rights reserved.</p>
</div>
<script src="scripts/global.js"></script>
</body>
</html>