-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 729 Bytes
/
index.html
File metadata and controls
30 lines (30 loc) · 729 Bytes
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
<!doctype html>
<html lang="en">
<head>
<title>Tip Calculator</title>
</head>
<body>
<h1>Tip Calculator</h1>
Bill Amount: $<input
type="number"
id="amount"
min="0"
step="0.01"
required
/><br />
Tip Percent:
<input
type="number"
id="tip-percent"
min="0"
step="0.01"
required
/><br />
<!--button to calculate total amount--><button id="calculate">
Calculate Total Amount and Tip Amount
</button>
<!--output text-->
<div id="output"></div>
<script src="main.js"></script>
</body>
</html>