-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (31 loc) · 1.39 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
<header>
<title>Project 2</title>
<meta name="description" content="Project 2 - Group 4">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="http://d3js.org/topojson.v0.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="script/index.js"></script>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</header>
<body>
<!-- Menu -->
<div class="menu col-xs-12">
<div class="col-xs-4"><center><a href="index.html">World Average</a></center></div>
<div class="col-xs-4"><center><a href="country.html">Individual Country</a></center></div>
<div class="col-xs-4"><center><a href="comparison.html">Comparison</a></center></div>
</div>
<!-- Main content -->
<div class="main">
</div>
<form id="myForm">
<select id="selectIndicator">
<option value = "temperature">Temperature(degree Celsius)</option>
<option value = "energy">Energy Consumption(Kg of Oil Equivalent per capita)</option>
<option value = "temperature">Carbon Emissions (Metric Tons per Capita)</option>
</select>
</form>
</body>