w3 validation
authorDylan Lloyd <dylan@dylansserver.com>
Wed, 17 Jun 2015 01:03:37 +0000 (18:03 -0700)
committerDylan Lloyd <dylan@dylansserver.com>
Wed, 17 Jun 2015 01:03:37 +0000 (18:03 -0700)
index.html [new file with mode: 0644]
index.php [deleted file]

diff --git a/index.html b/index.html
new file mode 100644 (file)
index 0000000..847c56d
--- /dev/null
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <meta charset="UTF-8">
+    <title>tictactoe</title>
+    <link type='text/css' rel='stylesheet' href='/tictactoe/style.css'>
+    <script type='text/javascript' src='/tictactoe/jquery-core.js'></script>
+    <script type='text/javascript' src='/tictactoe/ai.js'></script>
+  </head>
+  <body>
+    <canvas width='450' height='450' id='board'></canvas>
+    <div class='button' id='restart'>restart</div>
+  </body>
+</html>
diff --git a/index.php b/index.php
deleted file mode 100644 (file)
index 21179ed..0000000
--- a/index.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<!DOCTYPE html>
-<html>
-  <head>
-    <title>tictactoe</title>
-    <link type='text/css' rel='stylesheet' href='/tictactoe/style.css'>
-    <script type='text/javascript' src='/tictactoe/jquery-core.js'></script>
-    <script type='text/javascript' src='/tictactoe/ai.js'></script>
-  </head>
-  <body>
-    <canvas width='450px' height='450px' id='board'></canvas>
-    <div class='button' id='restart'>restart</div>
-  </body>
-</html>