-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
46 lines (41 loc) · 1.29 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
<!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>Miscellaneous Store</title>
<!-- style sheet here -->
<link rel="stylesheet" href="./src/styles/cart.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
</head>
<body>
<!-- navbar component -->
<div class="navbar">
<div class="logo__name">
<i class="bi bi-award-fill logo"></i>
<a href="index.html"><h2>Your Store</h2></a>
</div>
<div class="search__bar">
<i class="bi bi-search"></i>
<input type="text" placeholder="search products">
<i class="bi bi-mic-fill"></i>
</div>
<a href="cart.html">
<div class="cart">
<i class="bi bi-cart2"></i>
<div class="cart__count" id="cart__count">0</div>
</div>
</a>
</div>
<!-- cart value component -->
<div id="label" class="text__center">
</div>
<!-- all items which is added into out basket to checkout -->
<div class="cart__items__container" id="cart__items">
</div>
</body>
<!-- js file here -->
<script src="./src/data/data.js"></script>
<script src="./src/features/cart.js"></script>
</html>