-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (28 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Population Outflow from State to State</title>
<link href="css/style_main.css" rel="stylesheet">
<script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="//d3js.org/queue.v1.min.js"></script>
</head>
<body>
<h1>Population Outflow from State to State 2014-2015</h1>
<p>The thickness of links between states represents the population outflow between two states: thicker links represent larger population outflow.</p>
<p>For detailed population information, hover over the link, or the arc that represent each state</P><br><br>
<aside>
<h3>Legend:</h3>
<ul class="legend">
<li id="midwest"><span class="midwest"></span> Midwest</li>
<li id="northeast"><span class="northeast"></span> Northeast</li>
<li id="southeast"><span class="southeast"></span> Southeast</li>
<li id="southwest"><span class="southwest"></span> Southwest</li>
<li id="west"><span class="west"></span> West</li>
</ul>
</aside>
<script type="text/javascript" src="js/script.js"></script>
<footer>
</footer>
</body>
</html>