-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (121 loc) · 4.27 KB
/
index.html
File metadata and controls
123 lines (121 loc) · 4.27 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!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="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<title>Checkout</title>
</head>
<body>
<main>
<h1 id="checout-title">Checout Page</h1>
<div id="products-preview">
<div id="product-painel">
<div class="products">
<div class="product">
<img
src="./assets/photo1.png"
alt="Vintage
Backbag"
/>
<div class="product-info">
<div class="product-price">
<h2>Vintage Backbag</h2>
<p>
<strong>25.98</strong>
<span class="line-through">$34.99</span>
</p>
</div>
<div class="quantity-controller">
<i class="fa-solid fa-minus"></i>
<p class="quantity">1</p>
<i class="fa-solid fa-plus"></i>
</div>
<div class="product-removal">
<button class="remove-product">Remove</button>
</div>
<div class="product-line-price">
Product Total:$
<span class="price">25.98</span>
</div>
</div>
</div>
<div class="product">
<img src="./assets/photo2.png" alt="Levi Shoes" />
<div class="product-info">
<div class="product-price">
<h2>Levi Shoes</h2>
<p>
<strong>45.99</strong>
<span class="line-through">$54.99</span>
</p>
</div>
<div class="quantity-controller">
<i class="fa-solid fa-minus"></i>
<p class="quantity">1</p>
<i class="fa-solid fa-plus"></i>
</div>
<div class="product-removal">
<button class="remove-product">Remove</button>
</div>
<div class="product-line-price">
Product Total:
<span class="price">45.99</span>
</div>
</div>
</div>
<div class="product">
<img src="./assets/photo3.jpg" alt="Antique Clock" />
<div class="product-info">
<div class="product-price">
<h2>Antique Clock</h2>
<p>
<strong>74.99</strong>
<span class="line-through">$94.99</span>
</p>
</div>
<div class="quantity-controller">
<i class="fa-solid fa-minus"></i>
<p class="quantity">1</p>
<i class="fa-solid fa-plus"></i>
</div>
<div class="product-removal">
<button class="remove-product">Remove</button>
</div>
<div class="product-line-price">
Product Total:
<span class="price">74.99</span>
</div>
</div>
</div>
<div class="buy-detail" id="cart-subtotal">
<p>Subtotal</p>
<p id="subtotalCart">0</p>
</div>
<div class="buy-detail" id="cart-tax">
<p>Tax(%18)</p>
<p id="taxRateCart">0</p>
</div>
<div class="buy-detail" id="cart-shipping">
<p>Shipping</p>
<p id="shippingCart">0</p>
</div>
<div class="buy-detail" id="cart-total">
<p>Total</p>
<p id="totalCart">0</p>
</div>
</div>
</div>
</div>
</main>
<script src="app.js"></script>
</body>
</html>