-
Notifications
You must be signed in to change notification settings - Fork 1
/
comparison.html
26 lines (24 loc) · 1.1 KB
/
comparison.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
<header>
<title>Project 2</title>
<meta name="description" content="Project 2 - Group 4">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="script/comparison.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/comparison.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">
<input type="range" min="1965" max="2012" id="nRadius" value="1965">
</div>
</body>