-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (45 loc) · 1.98 KB
/
index.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
45
46
47
48
<!DOCTYPE HTML>
<!--
__________________________
(。♥‿♥。)
pick a date!
✧*。(◍•ᴗ•◍) ♡
__________________________
-->
<html lang="nl">
<head>
<title>Accessible datepicker</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css">
<script src="/main.js"></script>
<meta property="og:title" content="Accessible datepicker" />
<meta name="twitter:title" content="Acccessible datepicker" />
<meta name="twitter:card" content="Adheres to WCAG" />
<meta name="description" content="Adheres to WCAG" />
<meta property="og:description" content="Adheres to WCAG" />
<meta name="twitter:description" content="Adheres to WCAG" />
<meta property="og:image" content="" />
<meta property="twitter:image" content="" />
<meta property="og:image:width" content="500" />
<meta property="og:image:height" content="500" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
<link rel="manifest" href="/assets/favicon/site.webmanifest">
<link rel="mask-icon" href="/assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/assets/favicon/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/assets/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div id="elm"></div>
<script>
var app = Elm.Main.init({
node: document.getElementById('elm'),
flags: Date.now()
});
</script>
</body>
</html>