-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<title>Tip Calculator - BY NIDHI UPMAN</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<div>
<center>
<h1>Tip Calculator - BY NIDHI UPMAN</h1>
</center>
<br>
<br>
<div class="container">
<div class="wrapper">
<p>Bill ₹</p>
<input id="amount" type="number" placeholder="Amount to be paid">
<p>Select Tip %</p>
<div class="tips">
<div class="tip">5%</div>
<div class="tip">15%</div>
<div class="tip">20%</div>
<div class="tip">25%</div>
<div class="tip">50%</div>
</div>
<p>Number of People</p>
<input id="people" type="number" placeholder="Number of people sharing the bill">
<button id="calculate">Calculate</button>
</div>
<div class="right-wrapper">
<p>Tip Amount: ₹<span id="tipamount">0</span><span> each</span></p>
<p>Total: ₹<span id="totalamount">0</span><span> each</span></p>
<button id="reset">Reset</button>
</div>
</div>
</div>
</body>
</html>