-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (46 loc) · 1.95 KB
/
index.html
File metadata and controls
53 lines (46 loc) · 1.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Timer</title>
<!-- <link
rel="icon"
type="image/png"
href="https://www.google.com/s2/favicons?domain=jacinto.design"
/> -->
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css"
/>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="clocklet.min.css">
</head>
<body>
<p id="remainderDaily" style="color: snow; font-size: 2rem;"></p>
<p id="feierabend" style="color: snow; font-size: 2rem;"></p>
<!-- <input id="dateTimeInput" type="datetime-local" /> -->
<input id="dateInput" type="date" />
<input id="dateTimeInput2" type="datetime-local" />
<br />
<br />
<!-- <input id="dateInput" type="date" />
<br />
<input id="datum" type="date" value="new date" />
<br />
<input id="timepick" type="time" />
<input id="timepick2" type="time" /> -->
<p id="iP" style="color: snow; font-size: 2rem;"></p>
<p style="color: snow; font-size: 1.3rem;">set your start time</p>
<input id="dateTimeInput" readonly data-clocklet="alignment: center" style="width: 3rem; text-align: center;" placeholder="time">
<!-- Script -->
<script src="script.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.13.0/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment-duration-format/1.3.0/moment-duration-format.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/clocklet@0.2.6"></script>
<script>/* `window.clocklet` object is available */</script>
</body>
</html>