forked from marwannour1/SoftwareEngineering
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcartpro.html
More file actions
90 lines (82 loc) · 2.79 KB
/
cartpro.html
File metadata and controls
90 lines (82 loc) · 2.79 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
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">
<link rel="stylesheet" href="CSS/cartpro.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="JavaScript/cartpro.js"></script>
<title>Sign in </title>
</head>
<body>
<h1>Shopping Cart </h1>
<div class="shopping-cart">
<div class="column-labels">
<label class="product-image">Image</label>
<label class="product-details">Product</label>
<label class="product-price">Price</label>
<label class="product-quantity">Quantity</label>
<label class="product-removal">Remove</label>
<label class="product-line-price">Total</label>
</div>
<div class="product">
<div class="product-image">
<img src="https://media-cdn.greatbritishchefs.com/media/a24fj31z/img23663.jpg">
</div>
<div class="product-details">
<div class="product-title">sea bass</div>
<p class="product-description">enjoy our fresh sea bass!</p>
</div>
<div class="product-price">120.99</div>
<div class="product-quantity">
<input type="number" value="1" min="1">
</div>
<div class="product-removal">
<button class="remove-product">
Remove
</button>
</div>
<div class="product-line-price">120.99</div>
</div>
<div class="product">
<div class="product-image">
<img src="https://previews.123rf.com/images/paulgrecaud/paulgrecaud1602/paulgrecaud160200091/51758359-fine-selection-of-jumbo-shrimps-for-dinner-on-stone-plate-food-background.jpg">
</div>
<div class="product-details">
<div class="product-title">Jumbo shrimp</div>
<p class="product-description">Our jumbo shrimp from the red sea right to your doorstep!</p>
</div>
<div class="product-price">250.99</div>
<div class="product-quantity">
<input type="number" value="1" min="1">
</div>
<div class="product-removal">
<button class="remove-product">
Remove
</button>
</div>
<div class="product-line-price">250.99</div>
</div>
<div class="totals">
<div class="totals-item">
<label>Subtotal</label>
<div class="totals-value" id="cart-subtotal">371.98</div>
</div>
<div class="totals-item">
<label>Tax (14%)</label>
<div class="totals-value" id="cart-tax">52.1</div>
</div>
<div class="totals-item">
<label>Shipping</label>
<div class="totals-value" id="cart-shipping">15.00</div>
</div>
<div class="totals-item totals-item-total">
<label>Grand Total</label>
<div class="totals-value" id="cart-total">439.08</div>
</div>
</div>
<button class="checkout">Checkout</button>
</div>
</body>
</html>