-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
75 lines (57 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Data Viz - Chicago Data Learnathon</title>
<!--
including font awesome - it is nifty for adding icons to your webpage
see http://fortawesome.github.io/Font-Awesome/icons/
-->
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<!--
including bootstrap - it is nifty for pre-styled components
see http://getbootstrap.com/components/ for components
see https://bootswatch.com/ for other bootstrap themes
-->
<link href="https://bootswatch.com/yeti/bootstrap.min.css" rel="stylesheet">
<!-- Leaflet stylesheet -->
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.5/leaflet.css" />
<!--
including a custom stylesheet that you can edit - css/custom.css
-->
<link href="custom.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Data Viz on the Web</h1>
<h4>Chicago Data Learnathon - 9/19/15</h4>
<hr/>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-6">
<div id="chart-1"></div>
</div>
<div class="col-sm-6">
<div id="map"></div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12">
<div id="chart-2"></div>
</div>
</div>
</div>
</body>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://cdn.leafletjs.com/leaflet-0.7.5/leaflet.js"></script>
<script src="http://maps.stamen.com/js/tile.stamen.js?v1.3.0"></script>
<script src="dataviz.js"></script>
</html>