summaryrefslogtreecommitdiff
path: root/index.html
blob: 614d49f2bb79e661cd0345a5c12e429fa9393e5f (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
<!DOCTYPE html>
<html lang="en" translate="no">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Minteck Arcade</title>
  <link rel="icon" href="/_general/favicon.svg" type="image/svg+xml">
  <style>
    body {
      background: black;
      color: white;
      text-align: center;
      font-family: sans-serif;
    }
  </style>
</head>
<body>
<iframe src="/_general/navbar.html" style="position: fixed;z-index: 9999999999;top: 0;border: none;left: 0;right: 0;height: 32px;width: 100%;"></iframe>

<div style="display:flex;position:fixed;inset:0;align-items: center;justify-content: center;top:32px;">
  <div>
    <h1>Minteck Arcade</h1>
    <p>Select a game:</p>
    <div style="width:max-content;margin-left:auto;margin-right:auto;">
      <a href="/tictactoe" style="color:white;text-decoration:none;display:block;border:1px solid white;border-bottom:none;padding:10px;">Tic-Tac-Toe</a>
      <a href="/rps" style="color:white;text-decoration:none;display:block;border:1px solid white;border-bottom:none;padding:10px;">Rock Paper Scissors</a>
      <a href="/kartik" style="color:white;text-decoration:none;display:block;border:1px solid white;padding:10px;">Kartik: A New Start <span style="background: #910000;font-size: 12px;padding: 2px 5px;vertical-align: middle;margin-left: 5px;border-radius: 999px;">ALPHA</span></a>
<!--      <a href="game.html#/train" style="color:white;text-decoration:none;display:block;border:1px solid white;border-bottom:none;padding:10px;">Local multiplayer</a>-->
<!--      <a href="online.html" style="color:white;text-decoration:none;display:block;border:1px solid white;border-bottom:none;padding:10px;">Online multiplayer</a>-->
<!--      <a href="game.html#/auto" style="color:white;text-decoration:none;display:block;border:1px solid white;padding:10px;">Automated machine learning</a>-->
    </div>
    <p>© Minteck</p>
  </div>
</div>
</body>
</html>