forked from GeeteshPaidi/Restaurant-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
25 lines (25 loc) · 835 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YOUR CART</title>
<link rel="stylesheet" href="cartstyles.css">
</head>
<body>
<main>
<div class="head">YOUR ORDER SUMMARY</div>
<div class="cart-items">
<table class="table">
<thead></thead>
<tbody></tbody>
</table>
</div>
<div class="finalprice">
<div class="total-price">TOTAL PRICE: <span id="total-price"></span></div>
<div class="checkout"><a href="https://www.phonepe.com/"><button id="checkout">CHECKOUT</button></a></div>
</div>
</main>
<script src="script.js" type="text/javascript"></script>
</body>
</html>