-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
170 lines (150 loc) · 5.32 KB
/
cart.html
File metadata and controls
170 lines (150 loc) · 5.32 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
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">
<title>Shopping Cart</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- <link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css"> -->
<link rel="stylesheet" href="./dave.css">
</head>
<body>
<section id="header">
<a href="#"><img id="img-logo" src="logo.png" alt="logo" ></a>
<div>
<ul id="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="new&featured.html">New & Featured</a></li>
<li><a href="men.html">Men</a></li>
<li><a href="women.html">Women</a></li>
<li><a href="kids.html">Kids</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="favorite.html">Favorite</a></li>
<li><a href="about us.html">About Us</a></li>
<li><a id="cart" class="active" href="cart.html"><i class="fa-solid fa-bag-shopping"></i></a></li>
</ul>
</div>
</section>
<div class="main-container">
<h1>Shopping Cart</h1>
<div class="cart-container">
<div class="cart-item">
<img src="./shoes.jpg" alt="Item 1">
<div class="item-details">
<h3>Leather Shoes</h3>
<p>Category: Men's Shoes</p>
<div class="quantity">
<p>Price: $10</p>
<input id="Amount" type="number" value="1" min="1" max="10" step="1">
</div>
<p class="remove">
<button class="remove-btn">
<i class="fa fa-trash" aria-hidden="true"></i>
Remove
</button>
</p>
</div>
</div>
<!-- Add more cart items similarly -->
<div class="summary">
<h2 id="order">Order Summary</h2>
<div class="subtotal">
<p>Subtotal: $10</p>
</div>
<div class="additional-costs">
<p>Shipping: $5</p>
</div>
<div class="total">
<p>Total: $15</p>
</div>
<div class="action-buttons">
<button class="checkout-button">Proceed to Checkout</button>
<button class="continue-shopping-button"> <a href="./products.html">Continue Shopping</a> </button>
</div>
</div>
</div>
<div class="cart-container">
<div class="cart-item">
<img src="./watch.jpg" alt="Item 1">
<div class="item-details">
<h3>Digital Watch</h3>
<p>Category: Men's Watches</p>
<div class="quantity">
<p>Price: $5</p>
<input id="Amount" type="number" value="1" min="1" max="10" step="1">
</div>
<p class="remove">
<button class="remove-btn">
<i class="fa fa-trash" aria-hidden="true"></i>
Remove
</button>
</p>
</div>
</div>
<!-- Add more cart items similarly -->
<div class="summary">
<h2>Order Summary</h2>
<div class="subtotal">
<p>Subtotal: $5</p>
</div>
<div class="additional-costs">
<p>Shipping: $2</p>
</div>
<div class="total">
<p>Total: $7</p>
</div>
<div class="action-buttons">
<button class="checkout-button">Proceed to Checkout</button>
<button class="continue-shopping-button"> <a href="./products.html">Continue Shopping</a> </button>
</div>
</div>
</div>
</div>
<section id="newsletter" class="section-p1 section-m1">
<div class="newstext">
<h4>Sign Up For Newsletters</h4>
<p>Get E-mail updates about our latest shop and special offers.</p>
</div>
<div class="form">
<input type="text" placeholder="Your email address">
<button class="normal">Sign Up</button>
</div>
</section>
<footer class="section-p1">
<div class="col">
<img class="logo" src="logo.png" alt="ichain-brand logo" style="width: 150px;">
<h4>Contact</h4>
<p><strong>Address:</strong> University of Nigeria, Nsukka, Enugu state.</p>
<p><strong>Phone:</strong> +234(0) 8132535835, +234(0) 9042360422, +234(0) 7086337316 </p>
<p><strong>Hours:</strong> University of Nigeria, Nsukka, Enugu state.</p>
<div class="follow">
<h4>follow us</h4>
<div class="icon">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-youtube"></i>
</div>
</div>
</div>
<div class="col">
<h4>About</h4>
<a href="#">Abouts Us</a>
<a href="#">Delivery Information</a>
<a href="#">Privacy Policy</a>
<a href="#">Terms & Conditions</a>
<a href="#">Contact Us</a>
</div>
<div class="col">
<h4>My Account</h4>
<a href="#">Sign In</a>
<a href="#">View Cart</a>
<a href="#">My Wishlist</a>
<a href="#">Track My Order</a>
<a href="#">Help</a>
</div>
<div class="copyright">
<p>@Maxpeters, @Didi, @David Ehirim 2023, Team A Ecommerce Website Assessment</p>
</div>
</footer>
</body>
</html>