-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
47 lines (42 loc) · 2.16 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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Cost of the Crisis</title>
<link href='css/reset.css' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Karla' rel='stylesheet' type='text/css'>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<link href='wax/ext/leaflet.css' rel='stylesheet' type='text/css' />
<link href='wax/theme/controls.css' rel='stylesheet' type='text/css' />
<link href='css/style.css' rel='stylesheet' type='text/css' />
</head>
<body>
<div id='map'>
</div>
<div id="title">The Human Cost of the Global Financial Crisis</div>
<div class="about">
<h1>Percentage of people who have fallen behind on their mortgage payments for over 90 days</h1>
<ul class="layers">
<li><a class="active" data-layer="occupy.4q11-delinq" href="#">2011</a></li>
<li><a data-layer="occupy.4q10-delinq" href="#">2010</a></li>
<li><a data-layer="occupy.4q09-delinq" href="#">2009</a></li>
<li><a data-layer="occupy.4q08-delinq" href="#">2008</a></li>
<li><a data-layer="occupy.4q07-delinq" href="#">2007</a></li>
<li><a data-layer="occupy.4q06-delinq" href="#">2006</a></li>
<li><a data-layer="occupy.4q05-delinq" href="#">2005</a></li>
<li><a data-layer="occupy.4q04-delinq" href="#">2004</a></li>
<li><a data-layer="occupy.4q03-delinq" href="#">2003</a></li>
<li><a data-layer="occupy.4q02-delinq" href="#">2002</a></li>
<li><a data-layer="occupy.4q01-delinq" href="#">2001</a></li>
<li><a data-layer="occupy.4q00-delinq" href="#">2000</a></li>
<li><a data-layer="occupy.4q99-delinq" href="#">1999</a></li>
</ul>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script src="leaflet/dist/leaflet.js"></script>
<script src="wax/dist/wax.leaf.js"></script>
<script src="js/museums.js"></script>
<script src="js/app.js"></script>
</body>
</html>