-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·38 lines (37 loc) · 1.26 KB
/
index.html
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
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"
/>
<link type="image/png" rel="shortcut icon" href="/vivaxy.icon.png" />
<link type="text/css" rel="stylesheet" href="index.css" />
<title>Polygon Painter</title>
<meta name="author" content="vivaxy" />
<meta
name="keywords"
content="vivaxy,design,github,demo,test,playground,codrops,polygon-painter"
/>
<meta name="description" content="Polygon Painter" />
</head>
<body>
<div class="controls js-controls">
<div class="form">
<label for="vertices">vertices</label
><input type="number" id="vertices" class="js-vertices" value="5" />
</div>
<div class="form">
<label for="rotations">rotations</label
><input type="number" id="rotations" class="js-rotations" value="2" />
</div>
<div class="form">
<a href="javascript:" class="js-button">paint</a>
</div>
</div>
<canvas></canvas>
<script type="module" src="index.js"></script>
<script type="text/javascript" charset="utf-8" src="/cm.js"></script>
</body>
</html>