-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
50 lines (48 loc) · 1.57 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
<html>
<head>
<title>CSforIowa</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="https://unpkg.com/dc@3/dc.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/index.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>
<div class="mainWrapper">
<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>
</header>
<div class="iowa">
<article>
<div id="map"></div>
</article>
</div>
<section>
<div id="gradeBands">
<h3>Schools</h3>
</div>
<div id="csResponses">
<h3>School Offers Computer Science?</h3>
</div>
</section>
<section>
<table id="districts"></table>
</section>
<footer>
© 2018 NewBoCo
</footer>
<script src="https://unpkg.com/d3@5/dist/d3.js"></script>
<script src="https://unpkg.com/crossfilter2@1.4/crossfilter.js"></script>
<script src="https://unpkg.com/dc@3/dc.js"></script>
<script src="https://unpkg.com/topojson@3/dist/topojson.min.js"></script>
<script src="js/viz.js"></script>
</body>
</html>