-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (29 loc) · 976 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
29
30
31
32
33
34
35
36
37
38
<html>
<head>
<link rel="stylesheet" href="index.css">
<title>Draw It!</title>
</head>
<body style='margin: 0;'>
<div id="toolbar">
<div id="brush">
Brush Size <span id="bsize">20</span>
<div id="dec" class="bsb">-</div>
<div id="inc" class="bsb">+</div>
</div>
<div id="title"> Draw It! </div>
<div id="color">
<div class="shade active" style="background-color:#000; "></div>
<div class="shade" style="background-color: #fff; "></div>
<div class="shade" style="background-color: #99c2ff;"></div>
<div class="shade" style="background-color: #ff6666;"></div>
<div class="shade" style="background-color: #99ff99;"></div>
<div class="shade" style="background-color: #ffff80;"></div>
</div>
<div id="clear">Clear</div>
<div id="erase">Erase</div>
<a href="" id="save">Save</a>
</div>
<canvas id="canvas"></canvas>
<script src="magic.js" type="text/javascript"></script>
</body>
</html>