-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.html
107 lines (88 loc) · 4.35 KB
/
header.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
105
106
107
<html>
<head>
<!--<meta charset="utf-8">-->
<!--<meta http-equiv="X-UA-Compatible" content="IE=edge">-->
<!--<meta name="viewport" content="width=device-width, initial-scale=1">-->
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="Visualization Project">
<meta name="author" content="Stephen Boesch">
<!--<link rel="icon" href="../../favicon.ico">-->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<link href="css/starter-template.css" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<link href="css/d3-tip.css" rel="stylesheet">
<script src="https://www.w3schools.com/lib/w3.js"></script>
<script>
w3.includeHTML();
</script>
<!--<!– HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries –>-->
<!--<!–[if lt IE 9]>-->
<!--<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>-->
<!--<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>-->
<!--<![endif]–>-->
<title>US County Crime Rates</title>
<script>
function bottomNav(arr) {
var out =
`<div class="container">
<div class="col-lg-2 text-left">
<a href="${arr[0][0]}">
<button type="button" class="btn btn-default btn-xs btn-info">
${arr[0][1]}<span class="glyphicon glyphicon-home" aria-hidden="true"></span>
</button>
</a>
</div>
<div class="col-lg-8 text-center">
<a href="${arr[1][0]}">
<button type="button" class="btn btn-default btn-xs btn-info">
${arr[1][1]}<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
</button>
</a>
</div>
<div class="col-lg-2 text-right">
<a href="${arr[2][0]}">
<button type="button" class="btn btn-default btn-xs btn-info">
${arr[2][1]}<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
</button>
</a>
</div>
</div>`;
return out;
}
</script>
<!--<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>-->
<!-- Latest compiled and minified JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.1.0/topojson.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vega/3.0.0-beta.38/vega.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vega-lite/2.0.0-beta.6/vega-lite.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vega-embed/3.0.0-beta.19/vega-embed.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vega-tooltip/0.4.2/vega-tooltip.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/topojson.v2.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-legend/2.24.0/d3-legend.min.js"></script>
<script src="/js/d3-tip.js"></script>
<script src="/js/crimeRate.js"></script>
<style>
body {
font-family: sans-serif;
}
.vega-actions a {
padding: 0.2em;
}
</style>
</head>
<body>
<!--<h2><center>US Crime Rates by Population Density</center></h2>-->
<div w3-include-html="navbar.html"></div>