diff options
author | David Blajda <blajda@hotmail.com> | 2019-08-24 15:47:36 +0000 |
---|---|---|
committer | David Blajda <blajda@hotmail.com> | 2019-08-24 15:47:36 +0000 |
commit | 1e09bbf7e814d20ddbc446206d0855121ad556f2 (patch) | |
tree | 33f46ecbe5bbfc57f5cdd24345984da08aec78f8 /static/index.html | |
parent | 42e06126fc8ad6b17d3e4c1c082fb7feb36d067f (diff) |
Diffstat (limited to 'static/index.html')
-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> |