-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.09 KB
/
Copy pathindex.html
File metadata and controls
32 lines (32 loc) · 1.09 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Tip Calculator</title>
<link rel="stylesheet" href="main.css">
<script src="script.js"></script>
</head>
<body>
<div class="container">
<div id="heading">Tip Calculator</div>
<div class="body">
<p>How much was your Bill?</p>
<sub>Rs</sub><input type="number" id="amount" min="1">
<p>How was service?</p>
<select id="service">
<option value="0">--Chose any option--</option>
<option value="0.15">15% Outstanding</option>
<option value="0.1">10% Good</option>
<option value="0.05">5% Not Bad</option>
</select>
<p>How many people sharing the bill?</p>
<input type="number" id="people" min="1"><sub>people</sub><br>
<button type="button" id="btn" onclick="main()">Calculate</button>
<hr>
<div class="calc">
<span id="calculation"></span><span id="author">Developer-Aman Singh</span>
</div>
</div>
</div>
</body>
</html>