]> git.cworth.org Git - lmno.games/blobdiff - tictactoe/index.html
Add a simple tictactoe game, implemented with React
[lmno.games] / tictactoe / index.html
diff --git a/tictactoe/index.html b/tictactoe/index.html
new file mode 100644 (file)
index 0000000..6a6d289
--- /dev/null
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <meta charset="utf-8"/>
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+
+    <title>Tic-tac-toe</title>
+
+    <script src="/react.js"></script>
+    <script src="/react-dom.js"></script>
+    <link rel="stylesheet" href="tictactoe.css" type="text/css" />
+    <script type="module" src="tictactoe.js"></script>
+  </head>
+  <body>
+    <div id="tictactoe"></div>
+  </body>
+</html>