summaryrefslogtreecommitdiffstats
path: root/playgrounds/colors/index.html
blob: cb0b688a2a73842d89c3688254420ea2684e43e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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="main.js" charset="utf-8"></script>

</html>