blob: a3a747d43af53c2b5912148fb168d3655295f934 (
plain)
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
|
<!doctype html>
<html>
<meta charset="utf-8">
<title>Share a geographic position</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<body>
<div id="content"></div>
<noscript>This website requires JavaScript</noscript>
<script src="script.js"></script>
<style>
body {
max-width: 40ch;
margin: 1em auto;
padding: 0 0.5em;
font-size: 1.2em;
}
li {
padding: 1em;
}
.input-group { display: flex; gap: 0.2em; margin-bottom: 1em; }
.input-group input { flex-grow: 1; }
input, button { font-size: inherit; }
.error { color: darkred; }
</style>
</body>
</html>
|