-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (47 loc) · 1.88 KB
/
Copy pathindex.html
File metadata and controls
47 lines (47 loc) · 1.88 KB
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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Global Greenhouse Gases</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300, 400,700,800|Space+Mono:400,400i,700">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<link rel="stylesheet" href="styles/styles.css"/>
<script src="https://d3js.org/topojson.v2.min.js"></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-tip/0.7.1/d3-tip.min.js"></script>
</head>
<body>
<div class='title'>
<h1>global greenhouse gases</h1>
<!-- <h2> An interactive timeline of the history of global co2 emissions </h2> -->
</div>
<div id="button_container">
<button id="toggle" class="enabled-button">Toggle Per Capita</button>
<button id="heat-map-button" class="disabled-button" disabled>Heat Map</button>
<button id="line-graph-button" class="enabled-button">Scatter Plot</button>
<div id="dropdown_div">
<div id="dropdown_container">
<div>
<select id="dropdown">
<option value="sales" selected="selected">Automobile Sales</option>
<option value="population">Population</option>
<option value="gdp">GDP</option>
</select>
</div>
</div>
</div>
</div>
<div class="page1"></div>
<div class="page2"></div>
<script src="js/load.js"></script>
<script src="js/vars.js"></script>
<script src="js/heatmaptips.js"></script>
<script src="js/mp.js"></script>
<script src="js/donut.js"></script>
<script src="js/scatterplots.js"></script>
<script src="js/slider.js"></script>
<script src="js/sliders.js"></script>
</body>
</html>