blob: 15cf8142476b61a3a3262aafc2265cf9cb7f4c0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<html>
<head>
<title>malte's useless webpage</title>
<meta charset="utf-8">
<style>
body {
margin: 0;
padding: 0;
background-color: #000000;
color: #ffffff;
}
a {
position: fixed;
top: 0;
right: 0;
color: #ffffff;
opacity: 0.8;
}
a:hover {
opacity: 1.0;
}
#noscript {
position: fixed;
bottom: 0;
left: 0;
}
</style>
</head>
<body>
<script type="module">
import init from './life/life.js';
init();
</script>
<noscript>
<p id="noscript">this site is less boring if you enable javascript.</p>
</noscript>
<a href="https://git.mal.tc/life">source code</a>
</body>
</html>
|