summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorDavid Blajda <blajda@hotmail.com>2019-08-24 15:47:36 +0000
committerDavid Blajda <blajda@hotmail.com>2019-08-24 15:47:36 +0000
commit1e09bbf7e814d20ddbc446206d0855121ad556f2 (patch)
tree33f46ecbe5bbfc57f5cdd24345984da08aec78f8 /static
parent42e06126fc8ad6b17d3e4c1c082fb7feb36d067f (diff)
:WIP: Web UI with stdwebHEADmaster
Diffstat (limited to 'static')
-rw-r--r--static/index.html25
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>