-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.html
More file actions
35 lines (34 loc) · 844 Bytes
/
index1.html
File metadata and controls
35 lines (34 loc) · 844 Bytes
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
<!doctype html>
<html lang="en">
<head>
<link
rel="icon"
href="/icons/favicon.ico"
/>
<meta charset="UTF-8" />
<meta
name="author"
content="Dr. Torben Menke"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>ETA - Estimated Time of Arrival</title>
<meta
name="description"
content="ETA: Calculate remaining (waiting) time / estimated time of arrival. Modes: count-down (target = 0), count-up (target > 0). "
/>
<meta
name="keywords"
content="eta, timer, stopwatch, countdown, items per minute, estimated time of arrival, idle game countdown, OpenSource, free"
/>
</head>
<body>
<div id="app"></div>
<script
type="module"
src="/src/mainEta.ts"
></script>
</body>
</html>