diff --git a/README.md b/README.md
new file mode 100644
index 0000000..00ddcae
--- /dev/null
+++ b/README.md
@@ -0,0 +1,7 @@
+# svganim
+
+Create a hand drawn vector animation.
+
+```bash
+poetry run python webserver.py
+```
\ No newline at end of file
diff --git a/www/draw.html b/www/draw.html
index c16773b..282e225 100644
--- a/www/draw.html
+++ b/www/draw.html
@@ -1,164 +1,168 @@
-
-
- Draw a line animation
-
-
-
-
-
-
-
-
-
-
+ .toolbox {
+ position: absolute;
+ left: 0;
+ top: 50px;
+ z-index: 100;
+ background-color: white;
+ padding: 5px;
+ border-radius: 0 5px 5px 0;
+ background-color: #ccc;
+ }
+
+ .toolbox>ul {
+ padding: 0;
+ margin: 0;
+ }
+
+ .toolbox>ul>li {
+ cursor: pointer;
+ }
+
+ .toolbox .colors>li.selected {
+ border-width: 3px;
+ border-color: gray;
+ }
+
+ .toolbox .colors>li {
+ display: block;
+ border: solid 3px white;
+ border-radius: 5px;
+ margin: 5px;
+ width: 25px;
+ height: 25px;
+ }
+
+ .filename {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ color: gray;
+ z-index: -1;
+ font-size: 8pt;
+ }
+
+ .closed {
+ background-color: lightgray;
+ }
+
+ .closed svg {
+ cursor: wait;
+ pointer-events: none;
+ }
+
+
+
+
+
+
+
+
+
+
+