summary refs log tree commit diff
path: root/index.html
blob: 1e30d6516d4435dd3cf7fa03c257e6c065305fbc (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
40
41
42
43
44
45
46
<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;
      }
      #webring {
        position: fixed;
        top: 0;
        left: 0;
        border: none;
      }
      #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>
    <iframe id="webring" width="500" height="50" sandbox="allow-top-navigation-by-user-activation" src="https://ring.helena.place/malte"></iframe>
  </body>
</html>