-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<title>Tip Calculator</title>
<link rel="stylesheet" type="text/css" href="index.css">
<script src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
<script src="https://rawgit.com/moment/moment/2.2.1/min/moment.min.js"></script>
<script type="text/javascript" src='index.js'></script>
</head>
<body>
<main>
<div id='receipt'>
<div id='title'>
<p>Tip Calculator</p>
<p>Columbus, OH 43201</p>
</div>
<div id='heading'>
<p id='timestamp'></p>
<p>Server: Joe R.</p>
</div>
<table>
<tr>
<td>Bill</td>
<td>$<input type='number' id='bill_amount'> </td>
</tr>
<tr>
<td>Percentage</td>
<td> <input type='number' id='tip_percentage'></div>%</td>
</tr>
<tr>
<td>Tip</td>
<td><span id='tip_amount'></span> </td>
</tr>
<tr>
<td>Total</td>
<td><span id='grand_total'></span> </td>
</tr>
</table>
</div>
</main>
</body>
</html>