-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·104 lines (87 loc) · 3.58 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<!--[if lt IE 7]>
<html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]>
<html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]>
<html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>AFFORDINATOR - Helping you find the best damn place to live</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- HTML5 Boilerplate example -->
<!-- <meta name="viewport" content="width=device-width,initial-scale=1"> -->
<!-- Google Maps Example - lets go with this for now-->
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"/>
<link rel="stylesheet" href="/css/style.css">
<!-- For progressive enhancement -->
<script src="/js/libs/modernizr-2.0.6.min.js"></script>
<!-- Der -->
<script src="http://maps.google.com/maps/api/js?v=3&sensor=false"></script>
<!-- Custom info box windows = awesome -->
<script src="/js/libs/infobox.js"></script>
<!-- All our custom functions-->
<script src="/js/common.js"></script>
<script type="text/javascript">
</script>
</head>
<body onload="initialize()">
<div id="map_canvas" style="width:100%; height:100%"></div>
<section id="control-panel" class="container">
<div class="padding">
<h1>Where can I afford to live?</h1>
<form>
<label for="min-price">Pocket Change (Minimum)</label>
<input type="text" id="min-price" placeholder="Enter $ minimum" class="price-field" value=""/>
<label for="max-price">Max Splash (Maximum)</label>
<input type="text" id="max-price" placeholder="Enter $ maximum" class="price-field" value=""/>
<fieldset>
<label><input type="radio" name="type" value="house" checked='checked'/>House</label>
<label><input type="radio" name="type" value="unit"/>Unit</label>
</fieldset>
<button id='submit'>Affordinate!</button>
</form>
</div>
</section>
<footer id="brand" class="container">
<!-- <div class="top-bar">
<span class="close-poppa" onclick="closePoppa();">close</span>
</div> -->
<span class="close-poppa" onclick="closePoppa();">x</span>
<img src="img/success-kid.png" class="kid" />
<div class="padding clearfix">
<div class="column">
<h1></h1><!-- Suburb -->
<p class="lorem">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</div>
<div class="column pricing">
<h2></h2><!-- Price -->
<p>The most recent median house price is $452,500 and the median unit price is $318,500.</p>
</div>
<div class="column pictures">
<img src="img/park-1.jpg" />
<img src="img/park-2.jpg" />
<img src="img/park-3.jpg" />
<img src="img/park-4.jpg" />
<img src="img/park-5.jpg" />
<img src="img/park-6.jpg" />
</div>
<div class="column last-column">
<img src="img/graph.png" />
</div>
</div>
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.6.2.min.js"><\/script>')</script>
<!--[if lt IE 7 ]>
<script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
<script>window.attachEvent('onload', function() {
CFInstall.check({mode:'overlay'})
})</script>
<![endif]-->
</body>
</html>