-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
executable file
·50 lines (49 loc) · 2.16 KB
/
about.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
48
49
50
<!DOCTYPE html>
<html lang='en'>
<head>
<title>Searchable Map Template Demo</title>
<meta charset='utf-8' />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta content='' name='description' />
<meta content='' name='author' />
<!-- Styles -->
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/custom.css"/>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script type="text/javascript" src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class='navbar navbar-default navbar-static-top'>
<div class='container-fluid'>
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class='navbar-brand' href='index.html'>Bay Area housing affordability calculator</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Map</a></li>
<li class='active'><a href="about.html">About</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class='container-fluid'>
<div class='row'>
<div class='col-md-12'>
<h1>About</h1>
<p>Current rent and mortgage payment data for zip codes in Bay Area counties is provided by <a href='https://www.zillow.com/'>Zillow.</a></p>
<p>Additional data is from the <a href='https://www.census.gov/'>U.S. Census Bureau.</a><p/>
<p>Note: data is not exhaustive and some Bay Area zip codes may be excluded. Send questions and suggestions for improvement to [email protected].</p>
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</body>
</html>