-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (70 loc) · 2.24 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<title>Tip calculator app</title>
</head>
<body>
<img src="images/logo.svg" alt="logo">
<section id="card">
<div id="input-screen">
<!-- bill input -->
<div class="bill">
<label for="bill-input">Bill</label>
<input type="number" id="bill-input" placeholder="0">
<span>₦</span>
</div>
<!-- number of people input -->
<div class="people">
<label for="people-input">Number of People</label>
<input type="number" id="people-input" placeholder="0">
<img src="images/icon-person.svg" alt="person icon">
</div>
<!-- tip buttons -->
<div class="tip">
<p>Select Tip %</p>
<div class="buttons-div">
<button class="percent"><span>5</span>%</button>
<button class="percent"><span>10</span>%</button>
<button class="percent"><span>15</span>%</button>
<button class="percent"><span>20</span>%</button>
<button class="percent"><span>25</span>%</button>
<button class="custom">Custom</button>
</div>
</div>
</div>
<div id="display-screen">
<div id="loading">
<img src="images/loading.svg" alt="loading...">
</div>
<div id="person-tip" class="tip-display">
<ul>
<li>Tip Amount</li>
<li>/ person</li>
</ul>
<p id="tip-per-person">₦<span>0.00</span></p>
</div>
<div id="total-tip" class="tip-display">
<ul>
<li>Total</li>
<li>/ person</li>
</ul>
<p id="total-per-person">₦<span>0.00</span></p>
</div>
<div class="tip-display" id="billDisplayDiv">
<ul>
<li>Bill</li>
<li>/ total</li>
</ul>
<p id="total-bill">₦<span>0.00</span></p>
</div>
<button id="reset">reset</button>
</div>
</section>
<script src="js/script.js"></script>
</body>
</html>