diff options
author | Martin Fischer <martin@push-f.com> | 2022-10-23 11:50:54 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-10-23 11:58:44 +0200 |
commit | ecf142a7f105471eaf1da421ff1bf55881e6b493 (patch) | |
tree | a3b508031b1546181e27b7c7df1a256ba472e9ad /index.html |
initial commit
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..3ba426d --- /dev/null +++ b/index.html @@ -0,0 +1,22 @@ +<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> + <h1 id="heading"></h1> + <div id="instructions" hidden>Open in</div> + <ul id="links"></ul> + <script src="script.js"></script> + <noscript>This website requires JavaScript</noscript> + <style> + body { + max-width: 40ch; + margin: 1em auto; + font-size: 1.2em; + } + li { + padding: 1em; + } + </style> + </body> +</html> |