-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--LINK CSS FILE-->
<link rel="stylesheet" href="style.css" />
<title>Tip Calculator</title>
</head>
<body>
<div class="calculator">
<h1 class="title">Tip Calculator</h1>
<div class="input-group">
<label for="bill">Bill</label>
<input type="number" name="bill" id="bill" />
</div>
<div class="input-group">
<label for="tip-percentage">Tip Percentage</label>
<input type="number" name="tip-percentage" id="tip-percentage" />
</div>
<div class="input-group">
<label for="persons">No. of Persons</label>
<input type="number" name="persons" id="persons" />
</div>
<div class="result input-group">
<h2 class="total">Total</h2>
<div id="totalOutput"></div>
</div>
<button class="calculate-btn">Calculate</button>
</div>
<!--LINK JAVASCRIPT FILE-->
<script src="./script.js"></script>
</body>
</html>