forked from DarrylMK/MarketPlace-UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
88 lines (78 loc) · 2.47 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<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>Checkout Page</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link rel="stylesheet" href="cartstyle.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<div id="nav-placeholder">
</div>
<script>
$(function () {
$("#nav-placeholder").load("nav.html");
});
</script>
<div class="container">
<h1>Shopping Cart</h1>
<div class="cart">
<div class="products">
<div class="product">
<img src="productimage.jpg">
<div class="product-info">
<h3 class="product-name">Keyboard</h3>
<h4 class="product-price">Rp 999.999</h4>
<h4 class="product-offer">50%</h4>
<p class="product-quantity">Quantity: <input value="1" name="">
<p class="product-remove">
<i class="fa fa-trash" aria-hidden="true"></i>
<span class="remove">Remove</span>
</p>
</div>
</div>
<div class="product">
<img src="productimage.jpg">
<div class="product-info">
<h3 class="product-name">Keyboard</h3>
<h4 class="product-price">Rp 999.999</h4>
<h4 class="product-offer">50%</h4>
<p class="product-quantity">Quantity: <input value="1" name="">
<p class="product-remove">
<i class="fa fa-trash" aria-hidden="true"></i>
<span class="remove">Remove</span>
</p>
</div>
</div>
</div>
<div class="cart-total">
<p>
<span>Total Price</span>
<span>Rp 999.999</span>
</p>
<p>
<span>Number of Items</span>
<span>2</span>
</p>
<p>
<span>You Save</span>
<span>Rp 999.999</span>
</p>
<p>
<span>Total</span>
<span>Rp 999.999</span>
</p>
<a href="payment.html">Proceed to Checkout</a>
</div>
</div>
</div>
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous">
</script>
</body>
</html>