-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoneDayOvertime.html
132 lines (128 loc) · 4.04 KB
/
oneDayOvertime.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="oneDayOVTStyle.css" />
<link rel="stylesheet" href="CSS/navBarStyle.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<title>ExtraTime</title>
</head>
<body>
<div class="big-wrapper">
<!-- Navigation Bar -->
<header>
<div class="navBarContainer">
<div class="name">
<h3><a href="index.html">ExtraTime</a></h3>
</div>
<div class="links">
<ul>
<li>
<a href="#">Calculator <i class="fa fa-caret-down"></i></a>
<ul class="dropdown">
<li><a href="oneDayOvertime.html">Daily</a></li>
<li><a href="weekOvertime.html">Weekly</a></li>
</ul>
</li>
<li><a href="#">Features</a></li>
<li>
<a href="#">News</a>
</li>
<li><a href="about.html">About us</a></li>
<li>
<a href="#" class="btn"><i class="fa fa-gear"></i></a>
</li>
</ul>
</div>
</div>
</header>
<!-- Main Area-->
<div class="main">
<div class="first_heading">
<h3>Single Day Calculator</h3>
</div>
<div class="first_info">
<p>
With this calculator you are able to calculate your overtime for a
single day. <br />
Enter your arrival time, your break time and lastly your overtime.
</p>
</div>
<div class="second_heading">
<h3>How does the calculation work?</h3>
</div>
<div class="second_info">
<p>
The calculation is based on the following formula:<br />
Arrival Time + Break Time + Overtime + 7.5 hours = Departure Time
</p>
</div>
<div class="third_heading">
<h3>How do I use the calculator?</h3>
</div>
<div class="third_info">
<p>
Step 1: Enter your Arrival Time.
<br />
Step 2: Enter your Break Time.
<br />
Step 3: Enter your Overtime.
<br />
Step 4: If you want to dismantle your overtime, check the box.
<br />
Step 5: Click the calculate button.
</p>
</div>
</div>
<!-- Overtime Calculator -->
<div class="overtimeCalculatorForm">
<div class="inputSideForm">
<ul class="inputHeader">
<li>Arrival</li>
<li>Break</li>
<li>Overtime</li>
</ul>
<div class="inputs">
<input type="time" id="input_Arrival" />
<input type="time" id="input_Break" />
<input type="time" id="input_Overtime" />
<input type="checkbox" id="dismantle" />
</div>
</div>
<div class="vLine"></div>
<div class="outputSideForm">
<ul class="outputs">
<li>
Departure Time
<p class="departureTime">00:00</p>
</li>
<li>
Worked Hours
<p class="workedHours">00:00</p>
</li>
</ul>
</div>
</div>
<button class="calculateBttn">Calculate</button>
<!-- FAQ -->
<div class="faq">
<h3>FAQ</h3>
<p><strong>Q:</strong> How much overtime is allowed?</p>
<p>
<strong>A:</strong> The law states that you are only allowed to work
60h a week.
</p>
<p><strong>Q:</strong> Are there taxes on my overtime payment?</p>
<p>
<strong>A:</strong> Yes, there are! The same taxes from your normal
pay apply to your overtime pay.
</p>
</div>
</div>
</body>
<script src="JS/oneDayOVTScript.js"></script>
</html>