blob: 6a86ca6a0d452f5281e96b49d393875ca3731cb8 (
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
|
<!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>Tic-Tac-Toe | 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>Tic-Tac-Toe</h1>
<p>Select a game mode:</p>
<div style="width:max-content;margin-left:auto;margin-right:auto;">
<a href="morpion.html" style="color:white;text-decoration:none;display:block;border:1px solid white;border-bottom:none;padding:10px;">Singleplayer</a>
<a href="morpion.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="morpion.html#/auto" style="color:white;text-decoration:none;display:block;border:1px solid white;padding:10px;">Automated machine learning</a>
</div>
<p>By playing this game, you agree that your gameplay will be recorded to improve AI performance.</p>
</div>
</div>
</body>
</html>
|