-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsketch.html
31 lines (30 loc) · 968 Bytes
/
sketch.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Sketch Pad</title>
<link rel="stylesheet" href="sketch.css" type="text/css">
</head>
<body>
<div id="menu">
<h1>Sketch Pad</h1>
<button id="clear">Clear</button>
<span>Resolution: </span>
<input type="number" id="resolution" value="60" autocomplete="off">
<span>x</span>
<span id="lines"></span>
<h3>Colors:</h3>
<span>black:</span>
<input type="radio" name="color" checked="true" value="black" autocomplete="off">
<span>random:</span>
<input type="radio" name="color" value="rand" autocomplete="off">
<h3>Tail:</h3>
<input type="checkbox" name="tail" value="0" autocomplete="off">
</div>
<div id="pad"></div>
<!-- importing JavaScripts -->
<script src="jquery.min.js"></script>
<script src="sketch.js"></script>
</body>
</html>