-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdata.html
100 lines (94 loc) · 3.32 KB
/
data.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CSforIowa - Data</title>
<link rel='stylesheet' href="css/reset.css">
<link rel='stylesheet' href='css/style.css'>
<link rel='stylesheet' href='css/data.css'>
<link href="https://fonts.googleapis.com/css?family=Oswald|Source+Sans+Pro" rel="stylesheet">
<link rel='shortcut icon' href='images/csforia_final_baK_icon.ico'>
</head>
<body>
<header>
<div class="forIowa">
<img src="images/CSforIA_FINAL.png">
</div>
<div>
<h1 class="cs4ia">Computer Science <span>for</span> Iowa</h1>
</div>
<div><p class="buyline">A joint project with NewBoCo & DeltaV Code School</p></div>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="data.html">Data</a>
</li>
<li>
<a href="about.html">About Us</a>
</li>
</ul>
</nav>
</header>
<section class='main'>
<h2>District Data</h2>
<aside id=scatterChart>
<canvas></canvas>
</aside>
<aside id =dataForm>
<form action="">
<label for='teachesCs'>
Teaches CS
</label>
<select id='teachesCs' class='filter' name='teachesCs'><option value='All'>All</option><option value="Yes">Yes</option><option value='No'>No</option></select>
<label>
County
</label>
<input id='county' class='filterText' type='text' name='county' placeholder='County Name'>
<label>
Number of Schools in District
</label>
<select id='inDist' class='filter'>
<option value=''></option>
<option value='1'>1</option>
<option value='2'>2</option>
<option value='3'>3</option>
<option value='4'>4</option>
<option value='5'>5</option>
<option value='6-10'>6-10</option>
<option value='11+'>11+</option>
</select>
<button type='reset' value='Reset'>Reset</button>
</form>
</aside>
<div class='legend'>
<p><span class='perfect'></span>100% Teaching Computer Science</p>
<p><span class='semiPerfect'></span>100% Response Rate and Teaches Some Computer Science</p>
<p><span class='bad'></span>Responded but doesn't Teach Computer Science</p>
<p><span class='perfectlyBad'></span>Has Not Responded</p>
</div>
<table id='dataTable'>
<thead>
<th>District Name</th>
<th>% Teaching Computer Science</th>
<th># of Schools in District</th>
<th>District Population</th>
<th>% of Responses</th>
<th>County</th>
</thead>
<tbody id='tableBody'>
</tbody>
</table>
</section>
<footer>
© 2018 Barkley, Cashmann, Robinson & Van Meter
</footer>
<script src='js/lib/papaparse.js'></script>
<script src="js/lib/chart.bundle.js"></script>
<script src='js/dataFilter.js'></script>
</body>
</html>