diff options
author | Martin Fischer <martin@push-f.com> | 2025-03-14 07:10:37 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-03-14 08:35:51 +0100 |
commit | 8e0e3165807c5123148ba1b205854a723e3fc5c2 (patch) | |
tree | bb6e6935e0f6b84505b97d9089bc30cac38fa797 /index.html | |
parent | 1f860bc34f01d25f95310ea8cb7e2f27fff3283b (diff) |
refactor: build DOM via JS
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -3,11 +3,9 @@ <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> + <div id="content"></div> <noscript>This website requires JavaScript</noscript> + <script src="script.js"></script> <style> body { max-width: 40ch; |