-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (69 loc) · 2.15 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>POS Project </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<img src="img/Juice_OrangeJuice.png" alt="orange juice">
<img src="img/cup-coffee-icon.png" alt="coffee">
<img src="img/toast.png" alt="toast">
<img src="img/Croissant-icon.png" alt="croissant">
<img src="img/eggs-512.png" alt="eggs">
<img src="img/soda-icon.png" alt="soda">
<img src="img/pizza-slice-icon.png" alt="pizza">
<img src="img/hot-dog-icon.png" alt="hot dog">
<img src="img/french-fries-icon.png" alt="fries">
<img src="img/hamburger-icon.png" alt="hamburger">
<img src="img/lobster.png" alt="lobster">
<img src="img/ramen-soup-icon.png" alt="ramen">
<img src="img/sushi-combo-icon.png" alt="sushi">
<img src="img/food_chocolate_snickers.png" alt="chocolate">
<img src="img/cake.png" alt="donut">
<img src="img/cigarretes_256.png" alt="cigarretes">
<img src="img/beer-icon.png" alt="beer">
<img src="img/Whiskey.png" alt="whiskey">
<img src="img/Alcohol_Cocktail_TequilaSunrise.png" alt="cocktail">
<img src="img/wine-icon.png" alt="wine">
</div>
<aside>
<div class="table-area">
<table>
<thead>
<tr>
<th>Item name</th>
<th>Qty</th>
<th>Price</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="checkout">
<img id="print" src="img/printer-icon.png" alt="print">
<img id="calctip" src="img/tips.png" alt="tips">
<img id="free" src="img/home-icon-free.png" alt="free">
<img id="paid" src="img/paid-icon.png" alt="paid">
</div>
<div class="charges">
<div id= "cash-input">
<input type="number" placeholer="0.00">
<h2 id ="cash">Cash: 0.00</h2>
<h1 id="change">Change: 0.00</h1>
</div>
<div id ="output">
<p id="sub-total">Subtotal: 0.00</p>
<p id="tax">Tax: 0.00</p>
<p id="tip">Tip: 0.00</p>
<h2 id="total">Total: 0.00</h2>
</div>
</div>
</aside>
<script type="text/javascript" src="jquery-2.1.4.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>