-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (122 loc) · 3.68 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- displays site properly based on user's device -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<link rel="stylesheet" href="css/styles.css" />
<title>SPLITTER | Split and Tip</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(183, 100%, 15%);
}
</style>
</head>
<body>
<div class="container">
<img class="logo" src="images/logo.svg" />
<div class="app">
<div class="col">
<div class="amount-selector">
<h2>Bill</h2>
<img class="icon" src="images/icon-dollar.svg" />
<input
type="number"
name="amount"
id="amount"
placeholder="0"
autocomplete="off"
/>
</div>
<h2>Select Tip %</h2>
<div class="tip-selector">
<div class="tip-btn">
<input type="radio" name="tip" id="tip-5" value="5" />
<label for="tip-5">5%</label>
</div>
<div class="tip-btn">
<input type="radio" name="tip" id="tip-10" value="10" />
<label for="tip-10">10%</label>
</div>
<div class="tip-btn">
<input type="radio" name="tip" id="tip-15" value="15" />
<label for="tip-15">15%</label>
</div>
<div class="tip-btn">
<input type="radio" name="tip" id="tip-25" value="25" />
<label for="tip-25">25%</label>
</div>
<div class="tip-btn">
<input type="radio" name="tip" id="tip-50" value="50" />
<label for="tip-50">50%</label>
</div>
<input
type="number"
name="tip-custom"
id="tip-custom"
placeholder="Custom"
autocomplete="off"
min="0"
/>
</div>
<div class="people-selector">
<div class="heading-label">
<h2>Number of People</h2>
<h2 class="error-msg">Can't be Zero</h2>
</div>
<img class="icon" src="images/icon-person.svg" />
<input
type="number"
name="people"
id="people"
autocomplete="off"
placeholder="0"
min="0"
/>
</div>
</div>
<div class="col col-bg">
<div class="result">
<div class="half">
<div class="output">
<div class="result-name">
<h3>Tip Amount</h3>
<h4>/ person</h4>
</div>
<h1 class="tip-amount"></h1>
</div>
<div class="output">
<div class="result-name">
<h3>Total</h3>
<h4>/ person</h4>
</div>
<h1 class="total-amount"></h1>
</div>
</div>
<div class="half">
<button class="reset">RESET</button>
</div>
</div>
</div>
</div>
</div>
<div class="attribution">
Coded by
<a href="https://github.com/anupamshekhar" target="_blank"
>Anupam Shekhar</a
>.
</div>
<script src="js/scripts.js"></script>
</body>
</html>