-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
22 lines (22 loc) · 838 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Industrial Hours Calculator</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="converter">
<h2>Industrial Hours Calculator</h2>
<label for="timeInput">Enter duration (hh:mm or minutes):</label>
<br><br><input type="text" id="timeInput" placeholder="e.g. 1:30 or 90">
<button onclick="convertTime()">Calculate</button>
<p id="result"></p>
<p id="error"></p>
<p id="showTableLink" class="showTableLink" onclick="toggleTableVisibility();">Show conversion table</p>
<div id="calculationTableContainer"></div>
</div>
<script defer src="script.js"></script>
</body>
</html>