-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmoney-counterG1.html
More file actions
60 lines (48 loc) · 1.73 KB
/
money-counterG1.html
File metadata and controls
60 lines (48 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Money Counter</title>
<link rel="stylesheet" href="styleG1.css">
</head>
<body>
<div class="allBox"> <!-- All Box -->
<div class="container"> <!-- Inital Box -->
<h1>Money Counter</h1>
<h2 for="rate">Enter Rate ($/hr):</h2>
<input type="number" id="rate" value="3600" step="0.01">
</div>
<div class="button-group">
<button id="startButton">Start</button>
<button id="resetButton">Reset</button>
<button id="stopButton" disabled>Stop</button>
</div>
<div class="loadOnStart"> <!-- Load on click Start Box -->
<div class="moneyDisplay">
<p>$<span id="money">0.00</span></p>
</div>
<div class="timer-display">
<h2>Total Time Elapsed:</h2>
<h3><span id="timerD">00:00:00</span></h3>
</div>
</div>
<div class="stat-container"> <!-- Load on click Stop Box -->
<h1>More Stats</h1>
<div class="time-of-emplyment">
<h2>Started at:</h2>
<h3><span id="toe"></span></h3>
</div>
<div class="tax-display1">
<h2>Estimated Tax %: </h2>
<h3><span id="taxD1">0</span>%<h2>
<h2>Gross Pay: </h2>
<h3>$<span id="taxD2">0</span><h2>
<h2>Estimated Net Pay: </h2>
<h3>$<span id="taxD3">0</span><h2>
</div>
</div>
</div>
<script src="scriptG1.js"></script>
</body>
</html>