diff options
Diffstat (limited to 'playgrounds/colors/index.html')
-rw-r--r-- | playgrounds/colors/index.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/playgrounds/colors/index.html b/playgrounds/colors/index.html new file mode 100644 index 0000000..301dd3a --- /dev/null +++ b/playgrounds/colors/index.html @@ -0,0 +1,26 @@ + +<!DOCTYPE html> +<html> + + <head> + <meta charset="utf-8"> + <title>SVG Playground</title> + <link type="text/css" rel="stylesheet" href="style.css"> + </head> + + <body> + + <h1>Color Playground</h1> + + <p> + Lets test the different types of random colors we can make + </p> + + <svg viewBox="0 0 1500 1500" id="canvas"></svg> + + </body> + + <script src="../../dist/svg.js" charset="utf-8"></script> + <script src="bundle.js" charset="utf-8"></script> + +</html> |