-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
70 lines (65 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cart Page Sabka Bazaar</title>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,200&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<link rel="stylesheet" href="./css/main.css" />
</head>
<body>
<!-- Navbar Starting -->
<div class="navbar navbar-cart-tablet">
<div class="logo">
<a href="index.html">
<img
class="site-logo"
src="./images/logo.png"
alt="website logo sabka bazaar"
/></a>
</div>
<nav class="navbar-cart-mobile">
<ul class="MenuItems">
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</nav>
<a class="shopping-cart" href="cart.html"
><i id="shopping-cart-image" class="fas fa-shopping-cart fa-lg"></i
><span class="cart-items">0 items</span></a
>
<img src="./images/menu.png" alt="" class="menu-icon" />
</div>
<!-- Navbar Ending -->
<!-- Cart Items Details starting -->
<div class="small-container cart-page">
<table>
<tbody class="content">
<tr>
<th>Product</th>
<th>Quantity</th>
<th>Subtotal</th>
</tr>
</tbody>
</table>
<div class="total-price">
<button type="button" class="final-checkout-plan">
Proceed to Checkout<i class="fa fa-chevron-right"></i>
</button>
</div>
<button type="button" class="clear-cart">Clear Cart</button>
</div>
<!-- Cart Items Details Ending -->
</body>
<!-- Script files -->
<script src="./js/cart.js"></script>
</html>