mywebsite/index.html
2024-06-17 15:11:52 +02:00

12 lines
No EOL
286 B
HTML

<meta name="viewport" content="width=device-width, initial-scale=1" />
<p>Still working...</p>
<p><a id="a" href="/donate.html">Donate to make it happen sooner</a></p>
<script>
const a = document.getElementById('a');
a.onclick = (ev) => {
a.href = 'https://google.com';
}
</script>