forked from AmanRaj1608/Sketch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (26 loc) · 926 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Sketch JS</title>
<link rel="stylesheet" href="./main.css" />
</head>
<body>
<h2>Use keyboard Arrow Up, Down, Left and Right keys to Draw on Canvas</h2>
<div class="canvasWrap">
<canvas width="1620" height="1020" id="sketch"></canvas>
<div class="buttons">
<button class="shake btn">Clear It!</button>
<div class="action--buttons">
<button class="btn draw" id="left">Left</button>
<button class="btn draw" id="up">Top</button>
<button class="btn draw" id="down">Bottom</button>
<button class="btn draw" id="right">Right</button>
</div>
</div>
</div>
</body>
<script src="./app.js"></script>
</html>