12 lines
286 B
HTML
12 lines
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>
|