forked from curran/dataviz-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (34 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Internet User and Mobile Subscriptions</title>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/topojson.v1.min.js"></script>
<script src="https://d3js.org/queue.v1.min.js"></script>
<script src="https://d3js.org/d3-selection-multi.v0.4.min.js"></script>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css" integrity="sha384-"
crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-legend/2.24.0/d3-legend.min.js"></script>
</head>
<body >
<div class="backgroundDiv" id="backgroundDiv">
<div class="title">
<br><br>
<h2 id="titleContent">Internet User and Mobile Subscriptions</h2>
</div>
<!--class="pure-u-1-3"-->
<div id="selectPanel" class="selectPanel"></div>
<div class="pure-g">
<div id="earthPanel" class="pure-u-1-2"></div>
<div id="rightPanel" class="pure-u-1-2">
<div id="detailChart1"></div>
<div id="detailChart2"></div>
<div id="detailChart3"></div>
</div>
</div>
</div>
<script src="./dist/bundle.js"></script>
</body>
</html>