diff --git a/README.md b/README.md
index 84e6498..45acc2b 100644
--- a/README.md
+++ b/README.md
@@ -1,27 +1,30 @@
-SVG-optimiser.js
-================
+# `SVG-optimiser.js`
+> An online SVG optimiser using JavaScript and jQuery
-An online SVG optimiser using Javascript and jQuery
+Use it now: https://mountainash.github.io/SVG-optimiser.js/
-##Using optimise-functions.js and SVG-elements.js
+## Using `optimise-functions.js` and `SVG-elements.js`
-###Create an SVG_Root object
+### Create an `SVG_Root` object
The `SVG_Root` object is what parses the SVG and allows you to access the optimisation functions. You can pass it either a complete SVG or an SVG element (which can have child elements).
You can pass it a string with:
`var SVGObject = SVG_Root('');`
-Or a JQuery object with:
+Or a jQuery object with:
`var SVGObject = SVG_Root($('#my-svg'));`
-###Optimise the SVG
+### Optimise the SVG
Optimisation is done with: `svg.optimise();`
There are many options which I will have to write about at some point.
-###Write the SVG
+### Write the SVG
You can get the SVG as a string with:
`SVGObject.write();`
Or as a DOM element with:
`SVGObject.createSVGObject();`
+
+## Licence
+- [MIT](./LICENSE)
diff --git a/test.html b/index.html
similarity index 56%
rename from test.html
rename to index.html
index 8b236a9..048c4a4 100644
--- a/test.html
+++ b/index.html
@@ -1,16 +1,43 @@
-