-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpen.html
16 lines (15 loc) · 819 Bytes
/
pen.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Canvas</title>
<meta name = "viewport" content = "width = device-width, user-scalable = no">
<link rel='stylesheet' href='styles/pen.css'/>
</head>
<body>
<canvas id="canvas"></canvas>
<div id='bc'>Pen Color:<input placeholder='Input color(#hex or css color)' id='cs'/><button onclick='ch()'>Submit</button><button onclick='document.getElementById("bc").remove()'>Close</button></div>
<div id='search'></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.3.2/html2canvas.min.js"></script>
<script type="text/javascript" charset="utf-8" src="scripts/draw.js"></script>
</body>
</html>