-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
140 lines (125 loc) · 4.14 KB
/
index.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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!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"
/>
<link
rel="shortcut icon"
href="./img/cart-shopping-solid.svg"
type="image/x-icon"
/>
<title>Shopping Cart</title>
</head>
<body>
<section>
<aside>
<div class="element">
<header>
<h1><i class="fa-solid fa-cart-shopping"></i> Shopping Cart</h1>
</header>
<div class="element1">
<img
src="https://cdn.shopify.com/s/files/1/1504/8590/products/Frost-sise_900x.jpg?v=1658915456"
alt=""
/>
<div class="e-discription">
<h2>Frost Cold Brew Bottle</h2>
<p>
<strong class="price">14.99</strong>
<span class="line">$24.99</span>
</p>
</div>
<div class="e-button">
<i class="fas fa-minus" aria-hidden="true"></i>
<p class="amount">1</p>
<i class="fas fa-plus" aria-hidden="true"></i>
</div>
<button class="remove">
<i class="fa-solid fa-trash"></i>
</button>
<div class="p-total">
<p>Product Total:</p>
<p class="countprice">14.99</p>
</div>
</div>
<div class="element2">
<img
src="https://cdn.shopify.com/s/files/1/1504/8590/products/luna_c0165fa2-de08-43af-bbf7-9bca810992d8_900x.jpg?v=1591877639"
alt=""
/>
<div class="e-discription">
<h2>Montag Luna Coffee</h2>
<p>
<strong>99.99</strong>
<span class="line">$124.99</span>
</p>
</div>
<div class="e-button">
<i class="fas fa-minus" aria-hidden="true"></i>
<p class="amount">1</p>
<i class="fas fa-plus" aria-hidden="true"></i>
</div>
<button class="remove"><i class="fa-solid fa-trash"></i></button>
<div class="p-total">
<p>Product Total:</p>
<p class="countprice">99.99</p>
</div>
</div>
<div class="element3">
<img
src="https://cdn.shopify.com/s/files/1/1504/8590/products/traditional_900x.jpg?v=1605518537"
alt=""
/>
<div class="e-discription">
<h2>Coffee Paper Filter</h2>
<p>
<strong>24.99</strong>
<span class="line">$34.99</span>
</p>
</div>
<div class="e-button">
<i class="fas fa-minus" aria-hidden="true"></i>
<p class="amount">1</p>
<i class="fas fa-plus" aria-hidden="true"></i>
</div>
<button class="remove">
<i class="fa-solid fa-trash"></i>
</button>
<div class="p-total">
<p>Product Total:</p>
<p class="countprice">24.99</p>
</div>
</div>
<div class="order">
<div class="c-subtotal">
<p>Subtotal</p>
<p class="subtotal"></p>
</div>
<div class="c-tax">
<p>Tax(%18)</p>
<p class="tax"></p>
</div>
<div class="c-shipping">
<p>Shipping</p>
<p class="shipping"></p>
</div>
<div class="c-totalize">
<p>Total</p>
<p class="total"></p>
</div>
</div>
</div>
</aside>
</section>
<script src="app.js"></script>
</body>
</html>