-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (72 loc) · 4.75 KB
/
index.html
File metadata and controls
82 lines (72 loc) · 4.75 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>COUNTER</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<!--CONTENT-->
<div class="main container-fluid">
<div class="counter_content container-fluid col-6 bg-primary text-light col">
<div class="2000_notes col">
<form>
<div class="mb-3 container-fluid justify-content-center align-items-center text-center">
<label for="exampleInputEmail1" class="form-label col-3"><p class="h6">Amount Payable</p></label>
<input type="number" min="0" onkeyup="countFunction()" class="form-control text-dark text-center col" id="amountPayable">
</div>
<div class="mb-3 container-fluid justify-content-center align-items-center text-center">
<label for="exampleInputEmail1" class="form-label col-3"><p class="h6">2000'S</p></label>
<input type="number" min="0" onkeyup="countFunction()" class="form-control text-dark text-center col" id="2000notes">
<label for="exampleInputEmail1" class="form-label col-3"><p class="h6">500'S</p></label>
<input type="number" min="0" onkeyup="countFunction()" class="form-control text-dark text-center col" id="500notes">
</div>
<div class="mb-3 container-fluid justify-content-center align-items-center text-center">
<label for="exampleInputEmail1" class="form-label col-3"><p class="h6">200'S</p></label>
<input type="number" min="0" onkeyup="countFunction()" class="form-control text-dark text-center col" id="200notes">
<label for="exampleInputEmail1" class="form-label col-3"><p class="h6">100'S</p></label>
<input type="number" min="0" onkeyup="countFunction()" class="form-control text-dark text-center col" id="100notes">
</div>
<div class="mb-3 container-fluid justify-content-center align-items-center text-center">
<label for="exampleInputEmail1" class="form-label col-3"><p class="h6">50'S</p></label>
<input type="number" min="0" onkeyup="countFunction()" class="form-control text-dark text-center col" id="50notes">
<label for="exampleInputEmail1" class="form-label col-3"><p class="h6">20'S</p></label>
<input type="number" min="0" onkeyup="countFunction()" class="form-control text-dark text-center col" id="20notes">
</div>
<div class="paisa mb-3 container-fluid justify-content-center align-items-center text-center text-center flex-center align-center">
<label for="exampleInputEmail1" class="form-label col-3"><p class="h6">10'S</p></label>
<input type="number" min="0" onkeyup="countFunction()" class="form-control text-dark text-center col" id="10notes">
<label for="exampleInputEmail1" class="form-label col"><p class="h6">05'S</p></label>
<input type="number" min="0" onkeyup="countFunction()" class="form-control container-fluid text-dark text-center col" id="5notes">
<label for="exampleInputEmail1" class="form-label col"><p class="h6">02'S</p></label>
<input type="number" min="0" onkeyup="countFunction()" class="form-control container-fluid text-dark text-center col" id="2notes">
<label for="exampleInputEmail1" class="form-label col"><p class="h6">01'S</p></label>
<input type="number" min="0" onkeyup="countFunction()" class="form-control container-fluid text-dark text-center col" id="1notes">
</div>
<div class="container text-center flex-center align-center">
<p class="h1 text-center text-white text-center" id="total"></p>
<p class="h1 text-center text-white text-center" id="balance"></p>
</div>
<div class="container text-center flex-center align-center">
<button type="reset" class="btn btn-outline-warning">Reset</button>
</div>
</form>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>