-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (38 loc) · 1.12 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
<!doctype html>
<html>
<head>
<title>GDP, Population | G20</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="wrapper">
<h2>Population of G20 countries in 2013</h2>
<div id="graphWrap1">
</div>
<div class="divider"></div>
<h2>Gross Domestic Product of G20 countries in 2013</h2>
<div id="graphWrap2">
</div>
<div class="divider"></div>
<h2>Purchasing Power of G20 countries in 2013</h2>
<div id="graphWrap3">
</div>
<div class="divider"></div>
<h2>Growth in Population and Purchasing Power from 2010 to 2013</h2>
<div id="graphWrap4">
</div>
<!-- <div class="divider"></div>
<h2>Population and GDP of continents in 2013</h2>
<div id="graphWrap5">
</div> -->
<div class="divider"></div>
<h2>Population and GDP of continents in 2013</h2>
<div id="graphWrap6">
</div>
</div>
<script src="js/d3/d3.min.js"></script>
<script src="js/d3/tooltip.js"></script>
<script src="js/script.js"></script>
</body>
</html>