]> git.cworth.org Git - lmno.games/blobdiff - scribe/game.html
Initial implementation of Scribe
[lmno.games] / scribe / game.html
diff --git a/scribe/game.html b/scribe/game.html
new file mode 100644 (file)
index 0000000..b9136b7
--- /dev/null
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <meta charset="utf-8"/>
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+
+    <title>Tic-tac-toe</title>
+
+    <link rel="stylesheet" href="/reset.css" type="text/css" />
+    <link rel="stylesheet" href="/style.css" type="text/css" />
+    <link rel="stylesheet" href="tictactoe.css" type="text/css" />
+
+    <script src="/react.js"></script>
+    <script src="/react-dom.js"></script>
+    <script type="module" src="tictactoe.js"></script>
+  </head>
+  <body>
+
+    <div id="page">
+
+      <h1>Tic Tac Toe</h1>
+
+      <p>
+        Just the classic game.
+      </p>
+
+      <div id="message-area">
+      </div>
+
+      <div id="tictactoe"></div>
+
+    </div>
+
+  </body>
+</html>