-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (66 loc) · 2.57 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
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Drawing App</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div class="container">
<section class="tools-board">
<div class="row">
<label class="title">Shapes</label>
<ul class="options">
<li class="option tool" id="rectangle">
<img src="icons/rectangle.svg" /><span>Rectangle</span>
</li>
<li class="option tool" id="circle">
<img src="icons/circle.svg" /><span>Circle</span>
</li>
<li class="option tool" id="triangle">
<img src="icons/triangle.svg" /><span>Triangle</span>
</li>
<li class="option">
<input type="checkbox" id="fill-color" /><label for="fill-color">Fill Color</label>
</li>
</ul>
</div>
<div class="row">
<label class="title">Options</label>
<ul class="options">
<li class="option active tool" id="brush">
<img src="icons/brush.svg" /><span>Brush</span>
</li>
<li class="option tool" id="eraser">
<img src="icons/eraser.svg" /><span>Eraser</span>
</li>
<li class="option">
<input type="range" id="size-handler" min="1" max="30" value="5" />
</li>
</ul>
</div>
<div class="row colors">
<label class="title">Colors</label>
<ul class="options">
<li class="option selected"></li>
<li class="option"></li>
<li class="option"></li>
<li class="option"></li>
<li class="option">
<input type="color" value="#4A98F7" id="color-picker" />
</li>
</ul>
</div>
<div class="row buttons">
<button class="clear-canvas">Clear Canvas</button>
<button class="save-image">Save As Image</button>
</div>
</section>
<section class="drawing-board">
<canvas></canvas>
</section>
<script src="index.js"></script>
</div>
</body>
</html>