diff options
| author | kdam0 <kumar.damani@mail.utoronto.ca> | 2016-11-15 02:52:31 +0000 |
|---|---|---|
| committer | kdam0 <kumar.damani@mail.utoronto.ca> | 2016-11-15 02:52:31 +0000 |
| commit | e1b9507698a21b58e2b6be4e432ccd212e6742d4 (patch) | |
| tree | 41127e44616ab0e57d17f99003de913e80aa9a1f /index.php | |
| parent | 25ffd58a61f8c295d08502a37f765b0222c3046b (diff) | |
added base files and drawing the game board
Diffstat (limited to 'index.php')
| -rw-r--r-- | index.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/index.php b/index.php new file mode 100644 index 0000000..79267b9 --- /dev/null +++ b/index.php @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8"> + <title> Cube Shuffler </title> + <link rel="stylesheet" type="text/css" href="assets/css/style.css"> + <script type="text/javascript" src="assets/js/global.js" async></script> + </head> + <body id="body"> + <canvas id="main-canvas" width="600" height="600"></canvas> + + </body> +</html> |
