generated from code4policy/dataviz-with-gpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (23 loc) · 868 Bytes
/
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
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"> <content="width=device-width, initial-scale=1.0>
<title>311 Calls Visualization</title>
<!-- Include D3 library -->
<script src="https://d3js.org/d3.v5.min.js"></script>
<!-- Include your JavaScript file (bar_chart.js) -->
<script src="script.js"></script>
<!-- Link to external CSS file -->
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;1,600&display=swap" rel="stylesheet">
</head>
<body>
<h1>Top 10 Reasons for 311 Calls in Boston</h1>
<!-- Visualization Container -->
<div id="chart-container"></div>
</body>
</html>