diff options
Diffstat (limited to 'static')
-rw-r--r-- | static/index.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..9a27422 --- /dev/null +++ b/static/index.html @@ -0,0 +1,25 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>Level Generation</title> + <style> + html, body, canvas { + margin: 0px; + padding: 0px; + overflow: hidden; + } + canvas { + width: 350px; + height: 350px; + } + </style> + </head> + <body> + <canvas id="canvas"></canvas> + <div> + <button id="new">New</button> + </div> + <script src="web.js"></script> + </body> +</html> |