-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.01 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Drawing App using Cnavas API</title>
<script src="js/drawing.js"></script>
<link rel="stylesheet" href="css/drawing.css">
</head>
<body>
<canvas id="myCanvas"></canvas>
<div id="saveArea">
<img id="canvasImage">
<h2>Right Click to save...</h2>
<buttion id="btnBack">Back</buttion>
</div>
<div id="tools">
<table>
<tr>
<td>
<label for="colorChange">Color : </label>
<input type="color" id="colorChange" value="#000000">
</td>
<td>
<label for="lineWidth">Line Width : </label>
<input type="range" id="lineWidth" min="1" max="20" value="1">
</td>
<td>
<button id="btnSave">Save</button>
<button id="btnClear">Clear</button>
</td>
</tr>
</table>
</div>
</body>
</html>