-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
70 lines (55 loc) · 2.11 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
<!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>Cash Resgistor</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="creater">Coder Sam</div>
<h1 class="heading">Cash Registor Manager</h1>
<p class="description">Enter the bill amount and cash given by the customer and know minimum number of notes to return.
</p>
<section>
<label class="label" for="bill-amount">Bill Amount:</label>
<input id="bill-amount" type="number"></input>
<button class="buttonNext" id="nextBtn">Next</button>
</section>
<section class="cash-given-section">
<label class="label" for="cash-given">Cash given:</label>
<input id="cash-given" type="number"></input>
<button id="check-button">Check</button>
</section>
<p class="errorMsg" id="error-message"></p>
<section class="notes-section" id="output">
<table class="change-table">
<caption class="caption">Return Change:</caption>
<tr>
<th>No. of notes</th>
<td class="no-of-notes"></td>
<td class="no-of-notes"></td>
<td class="no-of-notes"></td>
<td class="no-of-notes"></td>
<td class="no-of-notes"></td>
<td class="no-of-notes"></td>
<td class="no-of-notes"></td>
</tr>
<tr>
<th>Note</th>
<td>2000</td>
<td>500</td>
<td>100</td>
<td>20</td>
<td>10</td>
<td>5</td>
<td>1</td>
</tr>
</table>
</section>
</div>
<script src="app.js" type="text/javascript"></script>
</body>
</html>