-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout.html
More file actions
44 lines (39 loc) · 1.34 KB
/
checkout.html
File metadata and controls
44 lines (39 loc) · 1.34 KB
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
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/3d46d02806.js"></script>
</head>
<body>
<div class="checkout-title">
<h1 class="checkout-header">Cart</h1>
</div>
<div class="checkout-container">
<div class="Cart">
</div>
<div class="Totals">
<a class="forward" href="menu.html">
<i class="fas fa-arrow-circle-left"></i>
</a>
<div class="total-text">
<h1 class="total" id="subtotal">Subtotal: $0.00</h1>
</div>
<div class="total-text">
<h1 class="total" id="tax">Tax: $0.00</h1>
</div>
<div class="total-text">
<h1 class="total" id="total">Total: $0.00</h1>
</div>
<div class="total-text">
<h1 class="total" id="total-cals">Cals: 0 kcal</h1>
</div>
<a class="backward " href="end.html">
<i class="fas fa-arrow-circle-right"></i>
</a>
</div>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="checkout.js"></script>
</html>