-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
54 lines (37 loc) · 1.52 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
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en-us">
<!-- Cabecera de la web -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Datos MedioAmbientales CYL.</title>
<meta charset="utf-8">
<script src="js/libraries/d3.v3.min.js" charset="utf-8"></script>
<script src="js/libraries/sankey.js" charset="utf-8"></script>
<script src="js/main.js" charset="utf-8"></script>
<script src="js/manipulateData.js" charset="utf-8"></script>
<script src="js/sankeyDiagram.js" charset="utf-8"></script>
<script src="js/lineChart.js" charset="utf-8"></script>
<script src="js/choroplethMap.js" charset="utf-8"></script>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div class= "content">
<div style="width: 100%; display: table;">
<div style="display: table-row">
<text id = "textProvince"> </text>
<button id = "restoreProvince"> </button>
</div>
</div>
<div style="width: 100%; display: table;">
<div style="display: table-row">
<div class = "box" id="lineChart"></div>
<div class = "box" id="choroplethMap"></div>
</div>
</div>
<div class = "box" id="sankeyDiagram"></div>
</div>
<script type="text/javascript" >
mainJS();
</script>
</body>
</html>