-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (67 loc) · 3.2 KB
/
index.html
File metadata and controls
77 lines (67 loc) · 3.2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Ubuntu:regular,bold&subset=Latin">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script type="text/javascript" src = "https://maps.googleapis.com/maps/api/js?key=AIzaSyBaxQVxYmgGU-td_YT8Q-gdyfNf9UskNcc"></script>
<script type="text/javascript" src = "map.js"></script>
</head>
<body onload="initialize()">
<div class = "content">
<div class = "header">
<img src="logo.svg" alt="Logo" id="logo-img">
<h1>KERNEL INITIATIVE</h1>
</div>
<div class = "container">
<section class = "cont">
<div class = "row">
<div id = "col1">
<h4>Utilization:</h4>
<p>Click on the location markers to see the data statistics for each NYC District
<br><br>
Graphs below show the correlation between unmet medical care and annual income
</p>
</div>
<div id = "col2">
<h2>The Issue</h2>
<p>This website is giving a visualization of the disparities in our healthcare system that were exacerbated by Covid-19. As you look through our map notice how our entire system is broken and living quality should be improved.</p>
</div>
</div>
</section>
<section class = "cont">
<div class="row" id = "maprow">
<div id = "map"> </div>
<div id = "col3">
<div id = "map-content">
<h2>Statistics</h2>
<p class="x">District: </p> <p class="stats" id="district"></p>
<br>
<p class="x">Unemployment:</p> <p class = "stats" id="unemployment"></p>
<br>
<p class="x">Annual Income ($1000s): </p> <p class = "stats" id="annual"></p>
<br>
<p class="x">Unmet Medical Care (%):</p> <p class = "stats" id="unmet"></p>
<br>
<p class="x">Uninsured (%): </p> <p class = "stats" id="uninsured"></p>
<br>
<p class="x">Avoidable Adult Hospitality: </p> <p class = "stats" id="avoid"></p>
</p>
</div>
</div>
</div>
</section>
<section class = "cont">
<div class="row">
<div id = 'col5'>
<img class = "graph" src="graph.svg" alt="">
</div>
</div>
</section>
</div>
</div>
</body>
</html>