-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (25 loc) · 849 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Image Converter</title>
<style></style>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<h1>Image Converter</h1>
<label for="file-picker" class="custom-file-picker"> Choose Image </label>
<input id="file-picker" type="file" accept="image/*" />
<div class="canvas-container">
<canvas id="canvas-editor"></canvas>
<button id="convert-button">convert-></button>
<canvas id="canvas-result"></canvas>
</div>
</div>
<br />
<script src="https://cdnjs.cloudflare.com/ajax/libs/color-thief/2.3.0/color-thief.umd.js"></script>
<script src="main.js"></script>
</body>
</html>