-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (36 loc) · 1.2 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 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">
<link rel="stylesheet" href="style.css">
<title>Tip calculate</title>
</head>
<body>
<div class="main">
<div class="midle">
<h1 class="bill">Bill amount</h1>
<input type="text" placeholder="amount" class="bill inp" id="Bill">
<h1 class="bill">Select percentage</h1>
<select name="percen" class="bill inp" id="percentage">
<option value="4%">4%</option>
<option value="5%">5%</option>
<option value="10%">10%</option>
<option value="15%">15%</option>
<option value="20%">20%</option>
</select>
<h1 class="bill">Number of people</h1>
<input type="text" placeholder="people" class="bill inp" id = "people">
<br>
<div class="calc">
<button onclick="allClick()" id="btn">calculate</button>
<div class="display">
<p class="bill" id="demo"></p>
</div>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>