-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
109 lines (105 loc) · 4.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ShopEvUN - Everything U Need</title>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="styles/cart.css">
<link rel="icon" href="assets/images/e-commerce-logo.png" type="icon/image">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css" integrity="sha512-5Hs3dF2AEPkpNAR7UiOHba+lRSJNeM2ECkwxUIxC1Q/FLycGTbNapWXB4tP889k5T5Ju8fs4b1P5z/iB4nMfSQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<nav>
<a href="index.html" style="text-decoration: none;">
<div class="nav-logo">
<div class="logo">
<img src="assets/images/e-commerce-logo.png" alt="logo">
</div>
<div class="nav-text">ShopEvUN
<p>Shop Everything U Need</p>
</div>
</div>
</a>
<ul class="nav-links" id="nav-links">
<li class="menu-icon" id="menu-icon">
<a href="#" onclick="toggleMenu()">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e8eaed"><path d="M120-240v-80h720v80H120Zm0-200v-80h720v80H120Zm0-200v-80h720v80H120Z"/></svg>
</a>
</li>
<li class="close" id="close">
<a href="#" onclick="toggleMenu()">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e8eaed"><path d="m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z"/></svg>
</a>
</li>
<li class="home nav-link">
<a href="index.html"><span>Home</span>
</a>
</li>
<li class="products nav-link">
<a href="products.html"><span>Explore Products</span>
</a>
</li>
<li class="cart nav-link">
<a href="cart.html">
<i class="fa-solid fa-cart-shopping"></i>
Cart
<span id="cart-count"></span>
</a>
</li>
</ul>
</nav>
</header>
<main>
<h1 class="cart-page-title">Your Cart</h1>
<div class="cart-container">
<!-- <div class="cart-item">
<img src="" alt=""/>
<div class="product-info">
<h2>title</h2>
<p>Price</p>
</div>
<button>remove from cart</button>
</div> -->
</div>
<div class="checkout-div">
<h3>Checkout Summary</h3>
<p class="no-of-items-text">No.of Items: <span class="no-of-items"></span></p>
<p class="total-price-text">Total Price: $<span class="total-price"></span></p>
<button id="checkout-btn">
Proceed to Checkout ?
</button>
</div>
</main>
<footer>
<div class="footer-content">
<section>
<p class="footer-section-title">Quick Links</p>
<ul class="footer-links">
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Explore Products</a></li>
<li><a href="cart.html">Cart</a></li>
</ul>
</section>
<section>
<p class="footer-section-title">Have a Query? Let Us Know!</p>
<form action="" class="footer-queries-form" id="footer-queries-form">
<label for="query-title">Query</label>
<input id="query-title" name="query-title" type="text" placeholder="Enter your query here.." required>
<br>
<label for="query-desc">Describe Your Query:</label>
<textarea id="query-desc" name="query-desc" type="text" placeholder="Provide details here...." required></textarea>
<br>
<button type="submit">Submit</button>
</form>
<p id="query-message"></p>
</section>
</div>
<section class="footer-copyright">
<p>© 2024 ShopEvuN. All rights reserved.</p>
</section>
</footer>
<script src="scripts.js"></script>
</body>
</html>