-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
71 lines (70 loc) · 3.09 KB
/
cart.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
---
layout: default
title: New Page Title
---
<button id="openbtn" class="openbtn" onclick="openNav()">☰</button>
<div class="container">
<h1>My Shopping Cart</h1>
<div class="row">
<div class="col-md-8">
<h2>Products</h2>
<div class="row">
<div class="col-md-4">
<div class="card">
<img class="card-img-top" src="https://via.placeholder.com/150x150.png" alt="Product 1">
<div class="card-body">
<h5 class="card-title">Product 1</h5>
<p class="card-text">₹10</p>
<button class="btn btn-primary add-to-cart" data-name="Product 1" data-price="10">Add to
Cart</button>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<img class="card-img-top" src="https://via.placeholder.com/150x150.png" alt="Product 2">
<div class="card-body">
<h5 class="card-title">Product 2</h5>
<p class="card-text">₹20</p>
<button class="btn btn-primary add-to-cart" data-name="Product 2" data-price="20">Add to
Cart</button>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<img class="card-img-top" src="https://via.placeholder.com/150x150.png" alt="Product 3">
<div class="card-body">
<h5 class="card-title">Product 3</h5>
<p class="card-text">₹30</p>
<button class="btn btn-primary add-to-cart" data-name="Product 3" data-price="30">Add to
Cart</button>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<h2>Cart</h2>
<table class="table">
<thead>
<tr>
<th>Product</th>
<th>Price</th>
<th>Quantity</th>
<th>Total</th>
<th>Action</th>
</tr>
</thead>
<tbody id="cart-body">
</tbody>
<tfoot>
<tr>
<td colspan="3" align="right">Total:</td>
<td colspan="2" id="cart-total">₹0</td>
</tr>
</tfoot>
</table>
</div>
</div>
</div>