-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.24 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.24 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
<!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">
<script src="./dist/main.js"></script>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<link rel="shortcut icon" href="assets/images/house.png" type="image/x-icon" />
<link rel="stylesheet" href="./assets/stylesheets/style.css" type="text/css">
<title>Homefullness</title>
</head>
<body>
<!-- <img class='image' src="./assets/images/sf-alley.jpeg"> -->
<main>
<h1 class="title">Homeless Population of SF by Year</h1>
<div class="main-content">
<div class="info">
<div id='graph'></div>
<canvas id="myChart"></canvas>
<h6>Data aggregated from <a href="https://sfgov.org/scorecards/safety-net/homeless-population" target="_blank">https://sfgov.org/scorecards/safety-net/homeless-population</a></h6>
</div>
<div>
<div class="legend">
<img src="./assets/images/person-unknown.png" height="60" width="60" alt="">
<h3>= 60 homeless people</h3>
</div>
<canvas id='canvas' height="600" width="690"></canvas>
</div>
</div>
</main>
</body>
</html>