-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (32 loc) · 1.27 KB
/
Copy pathindex.html
File metadata and controls
39 lines (32 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<!-- Roy Curtis, MIT license, 2017 -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sleep charter</title>
<link rel="stylesheet" href="css/main.css"/>
<link rel="stylesheet" href="css/main-500w.css" media="(max-width: 500px)" />
<link rel="stylesheet" href="css/main-550h.css" media="(max-height: 550px)" />
</head>
<body>
<sleep-chart class="nojs">
Either Javascript is disabled, or a fatal error occured (F12 to open console)
</sleep-chart>
</body>
<scripts>
<!-- 3rd party fetch API polyfill -->
<script type="application/javascript" src="js/vendor/fetch.js"></script>
<!-- Sleep charter scripts -->
<script type="application/javascript" src="js/data.js"></script>
<script type="application/javascript" src="js/dom.js"></script>
<script type="application/javascript" src="js/events.js"></script>
<script type="application/javascript" src="js/layout.js"></script>
<script type="application/javascript" src="js/main.js"></script>
<script type="application/javascript" src="js/util.js"></script>
<script type="application/javascript">
// Change these to use a different file or element
main("sleepData.csv", "sleep-chart");
</script>
</scripts>
</html>