-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (27 loc) · 848 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
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Indeed Image Convertor</title>
<meta
name="description"
content="Convert any image to use Indeed-approved colours."
/>
<meta property="og:title" content="Indeed Image Convertor" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="Convert any image to use Indeed-approved colours."
/>
</head>
<body>
<input type="file" accept="image/*" onchange="onFileUpload(event)" />
<br />
<img id="input" />
<button onclick="convertImage()">Convert Image</button>
<img id="output" />
<script src="expressiveColours.js"></script>
<script src="script.js"></script>
</body>
</html>