-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchangeCalculator_txt.html
More file actions
52 lines (44 loc) · 1.44 KB
/
changeCalculator_txt.html
File metadata and controls
52 lines (44 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<!--
Author: Kylie Drawdy
Date: 09/11/24
-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Hands-on Project 4-4</title>
<link rel="stylesheet" href="styles/styles.css" />
<script src="js/changeCalculator_txt.js" defer></script>
</head>
<body>
<header>
<h1>
Change Calculator
</h1>
</header>
<article>
<label for="cash">Cash Amount</label>
<input id="cash" type="number" min="0" max="100" step="0.01" value="20.00" />
<label for="bill">Bill</label>
<input id="bill" type="number" min="0" max="100" step="0.01" value="0.00" />
<label for="change">Change</label>
<input id="change" value="20.00" readonly />
<div id="warning"></div>
<aside id="bills">
<h2>Bills</h2>
<div>$20 Bills</div><div id="bill20">1</div>
<div>$10 Bills</div><div id="bill10">0</div>
<div>$5 Bills</div><div id="bill5">0</div>
<div>$1 Bills </div><div id="bill1">0</div>
</aside>
<aside id="coins">
<h2>Coins</h2>
<div>Quarters</div><div id="coin25">0</div>
<div>Dimes</div><div id="coin10">0</div>
<div>Nickels</div><div id="coin5">0</div>
<div>Pennies</div><div id="coin1">0</div>
</aside>
</article>
</body>
</html>