-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 815 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 815 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Simple Tip Calculator</title>
</head>
<body>
<h1>Tip Calculator</h1>
<form>
<label for="amount">Bill Amount: $</label>
<input type="amount" step="0.01" min="0" name="amount" placeholder="Bill Amount">
</br>
<label for="percentTip">Percent to Tip: %</label>
<input type="number" step="0.01" min="0" max="100" name="percentTip" placeholder="Tip Percentage">
</br>
<button type="submit">Calculate Tip</button>
</form>
<p id="summary"></p>
<p id="total-bill"></p>
<script src="calculator.js"></script>
</body>
</html>