-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcart.html
132 lines (115 loc) · 3.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ecommerce website</title>
<link
rel="stylesheet"
href="https://unpkg.com/swiper/swiper-bundle.min.css"
/>
<!-- font awesome cdn link -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<!-- custom css file link -->
<link rel="stylesheet" href="css/./style.css" />
</head>
<body>
<!-- header section starts -->
<header>
<a href="index.html" class="logo">elderly<span>.</span></a>
<!-- <form action="">
<input type="search" id="search-bar" />
<label for="search-bar" class="fas fa-search"></label>
</form> -->
<div class="icons">
<div id="menu-bar" class="fas fa-bars nav-toggle" id="nav-toggle"></div>
<div id="theme-toggler" class="fas fa-moon"></div>
<!-- <a href="#" class="fas fa-heart"></a> -->
<div class="cart">
<a href="cart.html" class="fas fa-shopping-cart"></a>
<div class="cart-amount">0</div>
</div>
<!-- <a href="#" class="fas fa-user"></a> -->
</div>
</header>
<!-- navbar section -->
<nav class="navbar">
<div class="links">
<a href="https://ecommerce-vivek.netlify.app/">home</a>
<a href="#products">products</a>
<a href="#featured">featured</a>
<a href="#deal">deals</a>
<a href="#review">review</a>
</div>
<div id="close" class="fas fa-times"></div>
</nav>
<!-- navbar section ends -->
<!-- header section ends -->
<!-- main cart page -->
<div class="product-container">
<div class="product-header">
<h5 class="product-title">PRODUCT</h5>
<h5 class="price">PRICE</h5>
<h5 class="quantity">QUANTITY</h5>
<h5 class="total">TOTAL</h5>
</div>
<div class="products">
</div>
</div>
<!-- end of main cart page -->
<!-- footer -->
<footer class="section footer">
<!-- footer links -->
<!-- end of footer links -->
<ul class="footer-icons">
<!-- a single icon -->
<li>
<a
href="https://www.instagram.com/vivekbossss/"
target="_blank"
class="footer-icon"
>
<i class="fab fa-instagram"></i>
</a>
</li>
<!-- end of single icon -->
<!-- a single icon -->
<li>
<a
href="https://twitter.com/i_vivek_jsr"
target="_blank"
class="footer-icon"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<!-- end of single icon -->
<!-- a single icon -->
<li>
<a
href="https://www.linkedin.com/in/vivek-chatterjee-a590421b7"
target="_blank"
class="footer-icon"
>
<i class="fab fa-linkedin"></i>
</a>
</li>
<!-- end of single icon -->
</ul>
<p class="owner">Made with ❤️ by Vivek</p>
<p class="copyright">
copyright © ecommerce website
<span id="date"></span> all rights reserved
</p>
</footer>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<!-- custom js file links -->
<script src="js/data.js"></script>
<script src="js/script.js"></script>
<script src="js/cart.js"></script>
</body>
</html>