-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
71 lines (65 loc) · 3 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CS594 UIC: CPS</title>
<!-- Bootstrap -->
<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">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">CPS Data-driven Visualizations</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="school-map.html">Map</a></li>
<li><a href="school-bubble.html">School Demographies</a></li>
<li><a href="school-networks.html">School Networks</a></li>
<li><a href="school-per-year.html">Schools Per Year</a></li>
<li class="active"><a href="#">About</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container">
<div class="starter-template">
<h1>About this application</h1>
<p class="lead">This data-driven visualization application was created as part of the Fall 18 UIC VDS (CS594) coursework.</p>
<h2>Technologies Used</h2>
<ul>
<li>jQuery, javaScript</li>
<li>Leaflet</li>
<li>D3</li>
<li>Bootstrap</li>
<li>HTML5</li>
<li>CSS3</li>
</ul>
<h2>Data Source</h2>
<a href="https://cps.edu/SchoolData/Pages/SchoolData.aspx">CPS, Department of School Quality Measurement</a>
<h2>Visual Data Science team</h2>
<h3>Vaibhav Singh</h3>
<p>[email protected]</p>
<p>Masters Student, Department of Computer Science</p>
<a href="https://www.linkedin.com/in/singh-vaibhav/">LinkedIn</a>
<h3>David Shumway</h3>
<p>[email protected] </p>
<p>PhD Student, Department of Computer Science</p>
<a href="">LinkedIn</a>
<h3>Josue Alvarez</h3>
<p>[email protected]</p>
<p>Masters Student, Department of Computer Science</p>
<a href="">LinkedIn</a>
<h2>Demonstration</h2>
<h4><a href="https://youtu.be/WN1UkMVGiFI">Watch the video</a></h4>
</div>
<footer>
<small>© Copyright 2018, UIC</small>
</footer>
</div><!-- /.container -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>