-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
83 lines (81 loc) · 2.94 KB
/
cart.html
File metadata and controls
83 lines (81 loc) · 2.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shopping Cart</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="header-top">
<div class="header-logo">
<img src="Amazon-Logo.webp" alt="Amazon Logo">
</div>
<div class="header-search">
<input type="text" placeholder="Search...">
<button>Search</button>
<a href="addtocart.html"></a>
</div>
<div class="header-account">
<a href="sign in.html">Hello, Sign in</a>
<div class="header-dropdown">
<a href="#">Account & Lists</a>
<a href="#">Orders</a>
<a href="#">Cart</a>
</div>
</div>
</div>
<div class="header-nav">
<a href="All.html">All</a>
<a href="Best Sellers.html">Best Sellers</a>
<a href="Customer Service.html">Customer Service</a>
<a href="Fashion.html">Fashion</a>
<a href="Electronics.html">Electronics</a>
</div>
</header>
<section class="cart">
<h2>Shopping Cart</h2>
<ul id="cart-list">
<!-- Cart items will be displayed here -->
</ul>
<p>Total Price: $<span id="total-price">0.00</span></p>
</section>
<footer>
<div class="footer-container">
<div class="footer-section">
<h3>Get to Know Us</h3>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Press Releases</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Make Money with Us</h3>
<ul>
<li><a href="#">Sell on Amazon</a></li>
<li><a href="#">Sell under Amazon Accelerator</a></li>
<li><a href="#">Become an Affiliate</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Amazon Payment Products</h3>
<ul>
<li><a href="#">Amazon Business Card</a></li>
<li><a href="#">Shop with Points</a></li>
<li><a href="#">Reload Your Balance</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Let Us Help You</h3>
<ul>
<li><a href="#">Amazon and COVID-19</a></li>
<li><a href="#">Your Account</a></li>
<li><a href="#">Your Orders</a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>