-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 768 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 768 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
<!DOCTYPE html>
<html lang="de" dir="ltr">
<head>
<!-- Source Code (Repo): https://gitlab.com/PplusS/yearprogress -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="manifest.json">
<title>Year Progress</title>
<script src="moment.js"></script>
<script src="main.js"></script>
<link rel="stylesheet" href="style.css">
<script>navigator.serviceWorker.register("sw.js");</script>
</head>
<body>
<span id="title">Year Progress</span>
<div id="processbar">
<div id="processbarinner"></div>
</div>
<span id="text">Kein Javascript?</span>
<div id="switchcontainer">
<select id="modeselect"></select>
</div>
</body>
</html>