-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
33 lines (33 loc) · 946 Bytes
/
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
<!doctype html>
<html dir="ltr" lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Dataseed Interactive Data Visualization</title>
<meta name="viewport" content="width=device-width" />
<link href="dist/css/dataseed.css" rel="stylesheet" type="text/css" />
<style>
body {
font-family: Helvetica, Arial, sans-serif;
margin: 0;
}
.visualisation {
width: 95%;
margin: 0 auto;
}
</style>
</head>
<body>
<div id="page"></div>
<script src="dist/js/dataseed.js"></script>
<script>
require(['./views/dataset'], function(DatasetEmbedView) {
new DatasetEmbedView({
'el': document.getElementById('page'),
'id': 'mortality',
'visualisation_id': '1'
});
});
</script>
</body>
</html>