-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcalculateTimeStamp.html
44 lines (38 loc) · 1.52 KB
/
calculateTimeStamp.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
<!DOCTYPE html>
<html lang="pt-BR">
<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>WTOOLS</title>
</head>
<body>
<menu></menu>
<main>
<h1>Calcular TimeStamp</h1>
<fieldset>
<legend>Date to TimeStamp</legend>
<label for="dateIniEl">Data:</label>
<input name="dateIniEl" id="dateIniEl" type="date" /><br />
<label for="hourIniEl">Data:</label>
<input name="hourIniEl" id="hourIniEl" type="time" /><br />
<label for="timestampEl">TimeStamp:</label>
<output id="timestampEl"></output><br />
<button id="generateDateToTimestamp">Gerar</button>
</fieldset>
<fieldset>
<legend>TimeStamp To Date</legend>
<label for="timestampEndEl">TimeStamp:</label>
<input name="timestampEndEl" id="timestampEndEl" type="text" />
<br />
<label for="dateEl">Data:</label>
<output id="dateEl"></output><br />
<button id="generateTimestampToDate">Gerar</button>
</fieldset>
</main>
<footer></footer>
<script src="scripts/menu.js"></script>
<script src="scripts/footer.js"></script>
<script src="scripts/calculateTimeStamp.js"></script>
</body>
</html>