-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
35 lines (34 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NYC Boundaries</title>
<meta
name="description"
content="View NYC neighborhoods, zipcodes, community boards, city council districts, school districts, and other administrative boundaries."
/>
<meta
name="keywords"
content="new york city,nyc,address,geocoding,311,open data,boundaries,neighborhoods,zipcodes,community boards,city council,city council member,school districts,police wards, police precincts,administrative boundaries,historic districts,business improvement districts, bids"
/>
<meta name="robots" content="index">
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-58265408-7"
></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3J25P3G0SE"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3J25P3G0SE');
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>