-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
88 lines (88 loc) · 3.77 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
<!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">
<meta name="description" content="">
<meta name="keywords" content="">
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180">
<title>Pizza House</title>
<!-- C-D-N -->
<!-- Icons font aswsome V 6.2.1 Link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!--Linearicons Free v1.0.0 -->
<link rel="stylesheet" href="https://cdn.linearicons.com/free/1.0.0/icon-font.min.css">
<!-- Bootstrap link V5 -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.rtl.min.css" integrity="sha384-+qdLaIRZfNu4cVPK/PxJJEy0B0f3Ugv8i482AKY7gwXwhaCroABd086ybrVKTa0q" crossorigin="anonymous">
<!-- CSS Files -->
<link rel="stylesheet" href="css/header.css"/>
<link rel="stylesheet" href="css/bgPage.css"/>
<link rel="stylesheet" href="css/footer.css"/>
<link rel="stylesheet" href="css/utilities.css"/>
<link rel="stylesheet" href="css/animation.css"/>
<link rel="stylesheet" href="css/responsive.css"/>
<link rel="stylesheet" href="css/contactForm.css">
<link rel="stylesheet" href="css/commonStyles.css">
<link rel="stylesheet" href="css/cart.css"/>
</head>
<body >
<!-- Start Header"-->
<header id="header"></header>
<!-- End Header -->
<!-- start style-page -->
<section id="bgPage"></section>
<!-- end style-page -->
<section id="cart">
<div class="container">
<div class="cart__content section-padding-80">
<div class="cart__header">
<div class="table__style">
<table class="table__custom cart__table">
<thead class="cart__table-head mb-5">
<tr>
<th>Product name</th>
<th>orignal Price</th>
<th>Final Price</th>
<th>Quantity</th>
<th>Total</th>
<th>Delete</th>
</tr>
</thead>
<tbody class="cart__table-body">
</tbody>
</table>
</div>
</div>
<div class="cart__checkout mt-3">
<div class="cart__display-total">
<div class="btn__style">
<div class="cart__total-text slideInUp ">total</div>
<span class="cart__total-price slideInUp "></span>
</div>
</div>
<a href="checkout.html"id="checkoutBtn" class="btn__style slideInUp mt-3" >checkout</a>
<a href="shop.html"id="" class="btn__style slideInUp mt-3" >Back to shop</a>
</div>
</div>
<div class="empty__cart card text-center mt-5 mb-5">
<div class="card-body">
<h5 class="card-title mb-3">Empty Cart!</h5>
<a href="shop.html" class="btn btn-primary shop-page">Go Shop Page</a>
</div>
</div>
</div>
</section>
<!-- Start Footer -->
<footer id="footer"></footer>
<!-- End Footer -->
<!-- JS bootstarb v.5-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<!-- JS files -->
<script src="js/header.js"></script>
<script src="js/footer.js"></script>
<script src="js/bgPage.js"></script>
<script src="js/cart.js"></script>
</body>
</html>