-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
24 lines (23 loc) · 1.09 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
<html>
<head>
<title>
Census Profiles
</title>
<script src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
</script>
<script src="https://raw.github.com/ireapps/census/master/tools/js/ire_census.js"></script>
<script type="text/javascript" src="highcharts/js/highcharts.js"></script>
<script type="text/javascript" src="profile.js"></script>
</head>
<body>
<form id="geoid-form"><label for="geoid">GeoID</label><input type="text" name="geoid" value="" placeholder="change the geography" id="geoid"><br></form>
<div id="name"></div>
<div id="gender-breakdown">
Male Population: <div id="male-population"></div><div id="male-pct"></div>
Female Population: <div id="female-population"></div><div id="female-pct"></div>
Total: <div id="total-population"></div>
<div id="gender-age-chart"></div>
</div>
</body>
</html>