public/todo.html
2024-05-22 04:03:59 -07:00

12 lines
327 B
HTML

<style>
body {
color-scheme: dark;
background: #1a1b26;
}
</style>
<input id="input" autofocus>
<script>
const input = document.getElementById("input");
input.addEventListener("input", () => document.title = location.hash = input.value);
document.title = input.value = decodeURIComponent(location.hash.slice(1));
</script>