blob: 017abbab8b9cbf2b0d05741ec396f6945cad3c03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!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>
|