Add index.html

This commit is contained in:
Minecon724 2024-06-17 15:11:52 +02:00
commit fdd7402bff

12
index.html Normal file
View file

@ -0,0 +1,12 @@
<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>