-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (37 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>U.S. Incarceration Data</title>
<!--put your external stylesheet links here-->
<link rel="stylesheet" href="css/style.css">
<!--[if IE<9]>
<link rel="stylesheet" href="css/style.ie.css">
<![endif]-->
</head>
<body>
<h1 class="title">United States Incarceration Data 2005-2019</h1>
<div class="popupText">
<p>
DISCALIMER: Disproportionate incarceration of certain populations is a major problem in the United States. To learn more about this issue please visit
<a href=https://www.sentencingproject.org/publications/color-of-justice-racial-and-ethnic-disparity-in-state-prisons>
The Sentencing Project</a> and read about "The Color of Justice." Please note that the demographic data presented in this visualization is not calculated on a per capita basis due to the unavailability of necessary data. Therefore,
data will likely be reflective of the size of various populations in each state and should not be used to draw conclusions about disproportionate incarceration.
<br>
<br> Thank you to the <a href=https://bjs.ojp.gov/library/publications/census-jails-2005-2019-statistical-tables>Bureau of
Justice Statistics</a> for their Census of Jails publication from which our data is drawn.
<br> This app was developed by Zac Clement([email protected]), Sarah Peters([email protected]), and Rita Sherwood([email protected]) for <a href=https://www.colorado.edu/geography/morteza-karimzadeh>Dr. Morteza Karimzadeh's</a> Advanced Webmapping and Geovisualization course, offered by CU Boulder's <a href=https://www.colorado.edu/geography>Department of Geography</a>. The plugins and libraries used to develop this app were <a href=https://d3js.org>D3</a> and
<a
href=https://jquery.com>jQuery</a>.
<br>
<br> An explanatory video on the app is avaialable here: <a href=https://youtu.be/EX_pxY26KDM>Youtube
walkthrough</a>
</p>
</div>
<!--put your external script links here-->
<script type="text/javascript" src="lib/jquery-3.5.1.js"></script>
<script type="text/javascript" src="lib/d3.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>