-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (47 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Energy mix by Country 2015</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="wrapper">
<div id="header">Energy mix by country (2015)</div>
<div id="controls">
<div class="menu">
<div>Sort by:</div>
<div class="items"></div>
</div>
<div class="legend">
<svg width="70" height="70">
<g transform="translate(35,35)">
<circle />
<text>100%</text>
</g>
</svg>
</div>
</div>
<div id="chart-wrapper">
<svg width="1200" height="1200">
<g id="chart"></g>
</svg>
</div>
<div id="footer">
<div>Data: <a href="https://datacatalog.worldbank.org/dataset/world-development-indicators">World Bank</a></div>
<div><a href="https://learn.createwithdata.com">D3 Start to Finish</a></div>
</div>
</div>
<script src="js/lib/d3.min.js"></script>
<script src="js/lib/popup-v1.1.1.min.js"></script>
<script src="js/lib/lodash.min.js"></script>
<script src="js/config.js"></script>
<script src="js/store.js"></script>
<script src="js/layout.js"></script>
<script src="js/update.js"></script>
<script src="js/popup.js"></script>
<script src="js/menu.js"></script>
<script src="js/main.js"></script>
</body>
</html>