-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 1.25 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
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="calculator_container">
<h1>Total & Split</h1>
<div class="form_control">
<label for="bill">Bill (in $)</label>
<input type="number" id="bill_value" placeholder="0"/>
</div>
<div class="form_control">
<label for="tip">Tip %</label>
<input type="number" id="tip_value" placeholder="0" />
</div>
<footer>
<div class="result">
<span>Total:</span> <strong id="total">$0</strong>
</div>
</footer>
<div class="pop_up">
<hr></hr>
<p>Need to split with
<input type="number" id="head_count" placerholder="0" min=0> people</p>
<p>Each person:</p>
<p id="split"></p>
<button id="round" class="float">Round to cloest cent</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>