summary refs log tree commit diff
path: root/index.html
blob: 6672a32ba7eb03232c0115686b10ed58ce3c5ede (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
<html>
  <head>
    <title>malte's useless webpage</title>
    <meta charset="utf-8">
    <style>
      body {
        margin: 0;
        padding: 0;
        background-color: #000000
      }
      a {
        position: fixed;
        top: 0;
        right: 0;
        color: #ffffff;
        opacity: 0.8;
      }
      a:hover {
        opacity: 1.0;
      }
    </style>
  </head>
  <body>
    <script type="module">
      import init from './life/life.js';
      init();
    </script>
    <noscript>
      this site is less boring if you enable javashit.
    </noscript>
    <a href="https://git.mal.tc/life">source code</a>
  </body>
</html>