-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (48 loc) · 1.17 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles/styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<h1 style="text-align:center;">OpenShapes</h1>
<div class = "buttons" style="text-align:center;">
<button>
Drawing</button>
<button>
Image</button>
<button>
Finalize</button>
<button>
Edit</button>
</div>
<div id = "draw">
<div id = "paint-tools">
<a class = "active-tool">Brush</a>
<a>Bucket</a>
<a>Bound</a>
<a>Erase</a>
<b>Clear</b>
</div>
<div id = "canvas-wrapper">
<canvas id = "canvas2" width="512" height="384"></canvas>
<canvas id = "image-canvas" width="512" height="384"></canvas>
</div>
<div id="vertical-menu">
<a class = "active">Sky</a>
<a>Mountains</a>
<a>Trees</a>
<a>Person</a>
<a>Water</a>
<a>Hills</a>
<a>Snow</a>
<a>Clouds</a>
<a>Elephant</a>
<a>Dirt</a>
</div>
</div>
<script src="js/canvas.js"></script>
<script src="js/bound.js"></script>
<script>initMenu()</script>
</body>
</html>