-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
84 lines (72 loc) · 4.17 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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="utf-8" />
<link rel="icon" href="Resources/Texas.ico" type="image/x-ico" sizes="16x16">
<meta name="viewport" content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<title>Educational Attainment in Texas</title>
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@TXHigherEdBoard" />
<meta name="twitter:creator" content="@johndinning" />
<meta name="twitter:title" content="Texas' Educated Population" />
<meta name="description" content="Interactive map of the educational attainment of 25 to 34 year olds in Texas.">
<meta name="twitter:description" content="Interactive map of the educational attainment of 25 to 34 year olds in Texas.">
<meta name="twitter:image" content="https://www1.thecb.state.tx.us/map/attainment/Resources/SummaryCard.png" />
<meta name="keywords" content="Texas Educated Population 60x30TX Attainment">
<meta name="author" content="John Dinning">
<meta property="og:url" content="https://www1.thecb.state.tx.us/map/attainment/" />
<meta property="og:title" content="Texas' Educated Population" />
<meta property="og:type" content="website" />
<meta property="og:description" content="A map of the educational attainment of 25 to 34 year olds in Texas." />
<meta property="og:image" content="Resources/SummaryCard.png" />
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.37.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.37.0/mapbox-gl.css' rel='stylesheet' />
<script src='js/turf_Mask_TueNov272018.min.js'></script>
<link href='css/styles.css' rel='stylesheet' />
<link href='css/buttons.css' rel='stylesheet' />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans">
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-104524078-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<nav id="menu"></nav>
<div id='mapid'></div>
<div id='map-overlay'>
<div id="THECB"><a href="http://www.60x30tx.com/" target="_blank" rel="noopener noreferrer"> <img id=logo src="Resources/Logo_cut.png"
alt="logo" style="width:100px;"> </a>
<h1>Texas' Educated Population Ages 25 - 34</h1>
</div>
</div>
<div id='legend'>
<div id='legendheader'>
<h3>Each dot represents about <span id='DotNumbers'></span> people.</h3>
</div>
<h4>Higher Education Degree</h4>
<div id='GradPro' class='clickable'><span id='GradPro_' style='background-color: #005f84'></span>Graduate/Professional</div>
<div id='Bacc' class='clickable'><span id='Bacc_' style='background-color: #0097d2'></span>Bachelor's</div>
<div id='Assoc' class='clickable'><span id='Assoc_' style='background-color: #84ddff'></span>Associate</div>
<h4>Some Higher Education</h4>
<div id='SomeHE' class='clickable'><span id='SomeHE_' style='background-color: #f6d61a'></span>Certificate holders
or non-completers</div>
<h4>No Higher Education Degree</h4>
<div id='HSunder' class='clickable'><span id='HSunder_' style='background-color: #a81d40'></span>High school
diploma or less</div>
<div id='info' style="font-size: 0.75em; margin-left: 10px;"><br>
<a href="https://github.com/TexasHigherEducationCoordinatingBoard/AttainmentMap" target="_blank" rel="noopener noreferrer">
<img id=github src="Resources/GitHub-Mark-32px.png" alt="logo"> </a>
<a href="Resources/AboutTheMap.html" target="_blank" rel="noopener noreferrer">Additional information about the
map.</a>
</div>
<script type="text/javascript" src="js/style.js"></script>
<script type="text/javascript" src="js/texas.js"></script>
<script type="text/javascript" src="js/AttainmentScript.js"></script>
</body>
</html>