-
Notifications
You must be signed in to change notification settings - Fork 0
/
CartPage.html
60 lines (49 loc) · 1.55 KB
/
CartPage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Cart Page</title>
</head>
<body>
<header>
<div class="top-bar">
<div class="left-icons">
<i class="fa-solid fa-list-ul icons list-icon white-things"></i>
<div class="logo">
<a href="index.html">
<h1 class="txt-color">Click & Buy</h1>
</a>
</div>
</div>
<div class="right-icons">
<i class="fa-solid fa-user white-things"></i>
<a href="index.html"> Home</a>
<a href="loginRegister.html" class=" white-things">LogIn</a>
</div>
</div>
</header>
<section class="main-Container">
<div class="CartsofCartPage">
<div class="single-cart" id="singlediv-cartpage">
</div>
<div class="clearandSum">
<div class="clear btn-clear">
<button id="btn-clear">
Clear
</button>
</div>
<div class="sum">
<!-- <button id="btn-sum">
Sum
</button> -->
</div>
</div>
<div class="totalSum" id="totalSum">
</div>
</div>
</section>
<script src="InsertDivIntoCart.js"></script>
</body>
</html>