-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
170 lines (154 loc) · 6.79 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
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cart</title>
<link rel="stylesheet" href="./styles.css">
<link rel="stylesheet" href="./cart.css">
</head>
<body>
<nav>
<a href="/"><img src="./images/amazon_logo.png" width="100" alt=""></a>
<div class="nav-country">
<img src="./images/location_icon.png" height="20" alt="">
<div><p>Deliver to</p>
<h1>United Kingdom</h1>
</div>
</div>
<div class="nav-search">
<div class="nav-search-gategory">
<p style="color: grey;">All</p>
<img src="./images/dropdown_icon.png" height="12" alt="">
</div>
<input type="text" class="nav-search-input" placeholder="Search Amazon">
<img src="./images/search_icon.png" class="nav-search-icon">
</div>
<div class="nav-language">
<img src="./images/us_flag.png" width="25px">
<p style="color: #fff;">EN</p>
<img src="./images/dropdown_icon.png" width="8px" alt="">
</div>
<div class="nav-text">
<p style= "color: #fff;"> <a href="./signin.html">Hello, Sign in</a></p>
<h1 style="color: #fff;">Account & Lists <img src="./images/dropdown_icon.png" width="8px"></h1>
</div>
<div class="nav-text" style="color: #fff;">
<p>Return</p>
<h1>& Orders</h1>
</div>
<a href="/signin.html" class="mobile-user-icon" style="display: none;">
<img src="./images/user.png" alt="">
</a>
<a href="/cart.html" class="nav-cart">
<img src="./images/cart_icon.png" width="35px" alt=""> <h4 style="color: #fff;">Cart</h4>
</a>
</nav>
<div class="nav-bottom">
<div>
<img src="./images/menu_icon.png" alt="">
<p>All</p>
</div>
<p>Today's Deals</p>
<p>Customer Service</p>
<p>Registry</p>
<p>Gift Cards</p>
<p>Sell</p>
</div>
<div class="cart">
<div class="cart-left">
<h1>Shopping Cart</h1>
<hr>
<div class="product-cart-list">
<img src="./images/ipad_img.jpg" alt="" width="180px">
<div>
<div class="product-card-titleprice">
<p>Apple iPad (9th gen): with A13 Bionic chip, 10.2-inch Retina Display, 64GB,Wi-Fi, 12MP front/8MP Back Camera, Touch ID,All-Day Battery life - Space Gray </p> <p><b>$249.00</b></p>
</div>
<p class="product-cart-bestseller"><span>#1 Best Seller</span> in Computer Tablets</p>
<p class="product-cart-stock">In Stock</p>
<p class="product-cart-delivery">FREE delivery <b>Mon, Jan 29</b> available at checkout</p>
<p class="product-cart-returns">FREE Returns ⮷</p>
<p class="product-cart-giftoption">Gift options not available. <span>Learn more</span></p>
<div class="product-cart-specs">
<p><b>Style:</b></p> <p>Wifi</p>
<p><b>Size:</b></p> <p>64GB</p>
<p><b>Color:</b></p> <p>Space Gray</p>
</div>
<div class="cart-list-action">
<select name="" id="">
<option value="1">Qty: 1</option>
<option value="2">Qty: 2</option>
<option value="3">Qty: 3</option>
<option value="4">Qty: 4</option>
<option value="5">Qty: 5</option>
</select>
<hr>
<p class="action-btn">Delete</p>
<hr>
<p class="action-btn">Save for later</p>
<hr>
<p class="action-btn">Compare with similar items</p>
<hr>
<p class="action-btn">Share</p>
</div>
</div>
</div>
<hr>
<div class="product-cart-list">
<img src="./images/product_img.jpg" alt="" width="180px">
<div>
<div class="product-card-titleprice">
<p> BENGOO G900 Gaming Headset for PS4 PC Xbox One PS Controller,Noise Cancelling Over Ear Headphones with Mic,LED Light, Bass Surrond </p> <p><b>$25.99</b></p>
</div>
<p class="product-cart-bestseller"><span>#1 Best Seller</span> in PC Game Headsets</p>
<p class="product-cart-stock">In Stock</p>
<p class="product-cart-delivery">FREE delivery <b>Mon, Jan 29</b> available at checkout</p>
<p class="product-cart-returns">FREE Returns ⮷</p>
<p class="product-cart-giftoption">Gift options not available. <span>Learn more</span></p>
<div class="product-cart-specs">
<p><b>Style:</b></p> <p>Wired</p>
<p><b>Size:</b></p> <p>free</p>
<p><b>Color:</b></p> <p>Blue</p>
</div>
<div class="cart-list-action">
<select name="" id="">
<option value="1">Qty: 1</option>
<option value="2">Qty: 2</option>
<option value="3">Qty: 3</option>
<option value="4">Qty: 4</option>
<option value="5">Qty: 5</option>
</select>
<hr>
<p class="action-btn">Delete</p>
<hr>
<p class="action-btn">Save for later</p>
<hr>
<p class="action-btn">Compare with similar items</p>
<hr>
<p class="action-btn">Share</p>
</div>
</div>
</div>
<hr>
<div class="cart-list-subtotal">
Subtotal (2 items): <b>$274.99</b>
</div>
</div>
<div class="cart-right">
<div class="cart-free-delivery">
<p>✅</p>
<p>Your order qualifies for FREE Shipping. <b>Choose this option at checkout.</b> See details</p> </div>
<p class="cart-subtotal">Subtotal (2 items): <b>$274.99</b></p>
<p class="cart-right-gift"><input type="checkbox"> This order contains a gift</p>
<button>Proceed to checkout</button>
</div>
</div>
</div>
</div>
<footer class="product-footer">
<img src="./images/amazon_logo.png" width="100" alt="">
<p>ⓒ 1996-2024, Amazon.com, Inc. or its affliates</p>
</footer>
</body>
</html>