-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshopping-cart.html
90 lines (60 loc) · 2.2 KB
/
shopping-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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shopping Cart</title>
<link rel="stylesheet" href="/css/bootstrap.min.css">
</head>
<body>
<div class="row m-4" ">
<div class="col-6">Product
</div>
<div class="col-2">Price
</div>
<div class="col-2">Quantity
</div>
<div class="col-2">Subtotal
</div>
</div>
<hr>
<div class="row m-4">
<div class="col-1">
<div class="card" style="width: 7rem;">
<img class="card-img-top" src="..." alt="image">
<div class="card-body">
<p class="card-text"></p>
</div>
</div>
</div>
<div class="col-5" >
<h4>Product 1</h4>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Similique, delectus fugit! Expedita nemo magnam, fugiat non.
</div>
<div class="col-2">$1.99
</div>
<div class="col-2">
<input type="text" style="width: 100%;" placeholder=" 1">
</div>
<div class="col-1">$1.99
</div>
<div class="col-1">
<button type="button" class="btn btn-info"> </button>
<button type="button" class="btn btn-danger"> </button>
</div>
</div>
<hr>
<div class="row m-4" ">
<div class="col-10">
<button type="button" class="btn btn-warning">< Continue Shopping</button>
</div>
<div class="col-1"> <b>Total: $1.99</b>
</div>
<div class="col-1">
<button type="button" class="btn btn-success">Checkout></button>
</div>
</div>
</body>
<script src="/js/bootstrap.bundle.min.js"></script>
</html>