-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (78 loc) · 2.18 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
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
78
79
<!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" />
<title>📍 Which Baltimore Neighborhood</title>
<meta
name="description"
content="Geolocation progressive web app that tells you which Baltimore neighborhood you're in"
/>
<meta name="author" content="Brian Zelip" />
<link rel="author" href="https://zelip.me" />
<link rel="author" href="https://bmore.space/humans.txt" />
<link rel="stylesheet" href="css/hood.css" />
</head>
<body class="dark">
<button title="Toggle color mode">
<svg
viewBox="0 0 32 32"
width="24"
height="24"
fill="currentcolor"
class="css-13o7eu2"
>
<circle
cx="16"
cy="16"
r="14"
fill="none"
stroke="currentcolor"
stroke-width="4"
></circle>
<path
d="
M 16 0
A 16 16 0 0 0 16 32
z
"
></path>
</svg>
</button>
<h1>Which Baltimore neighborhood are you in?</h1>
<noscript class="noscript">
<p>
JavaScript is required to use this web application.
</p>
<p>
Enable JavaScript in your web browser to find out which Baltimore
neighborhood you're in.
</p>
<p>
Inspect this application's use of JavaScript at its
<a href="https://github.com/brianzelip/which-baltimore-neighborhood"
>source</a
>.
</p>
</noscript>
<a class="hood-wrap hide" data-hood-wrap>
<p class="neighborhood" data-neighborhood></p>
</a>
<p class="coordinates-wrapper hide delay" data-coordinates-wrapper>
Your coordinates:
</p>
<footer class="small">
by
<a class="small" href="https://zelip.me">Brian Zelip</a>
·
<a
class="small"
href="https://github.com/brianzelip/which-baltimore-neighborhood"
>source</a
>
<p class="small">privacy respected, no data collected</p>
</footer>
<script src="main.js"></script>
</body>
</html>