-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder.html
38 lines (36 loc) · 1.14 KB
/
order.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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta charset="UTF-8" />
<title>Burgerr - Your Delicious Burger</title>
<link href="css/simple-grid.min.css" rel="stylesheet" media="screen" />
<link href="css/stylesheet.css" rel="stylesheet" media="screen" />
</head>
<body>
<header>
<div class="container">
<div class="col-6">
<div class="logo col-12"><a href="./main.html" class="logo">BURGERR</a></div>
<div class="sub-logo col-12">Your Delicious Burger</div>
</div>
</div>
</header>
<div class="container">
<div class="col-12">
<h3>Your burger is processing...</h3>
<h3>Wait and calm...</h3>
<div id="result" class="col-12">
<div class="det">Detail Order</div>
<div id="table-detail">
<table id="detail"></table>
</div>
<div><table id="total"></table></div>
</div>
</div>
</div>
<script src="js/item.js"></script>
<script src="js/order.js"></script>
</body>
</html>