diff options
Diffstat (limited to 'tictactoe/index.html')
-rw-r--r-- | tictactoe/index.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tictactoe/index.html b/tictactoe/index.html new file mode 100644 index 0000000..51b4b60 --- /dev/null +++ b/tictactoe/index.html @@ -0,0 +1,32 @@ +<!DOCTYPE html> +<html lang="en"> +<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</title> + <style> + body { + background: black; + color: white; + text-align: center; + font-family: sans-serif; + } + </style> +</head> +<body> + <div style="display:flex;position:fixed;inset:0;align-items: center;justify-content: center;"> + <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>
\ No newline at end of file |