-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathindex.html
29 lines (27 loc) · 869 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Create color palette with Javascript" />
<meta
name="keywords"
content="JavaScript, Color spaces, CSS, Color palette, Color quantization"
/>
<meta name="author" content="Zygimantas Sniurevicius" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Create color palette</title>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<script src="./index.js"></script>
<h1>Color palette creator</h1>
<form action="#">
<input type="file" id="imgfile" />
<input type="button" id="btnLoad" value="Load" onclick="main();" />
</form>
<canvas id="canvas"></canvas>
<div id="palette"></div>
<hr />
<div id="complementary"></div>
</body>
</html>