forked from Apurba-01/Paint-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (81 loc) · 2.69 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Paint App</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
media="screen and (max-width:600px)"
href="phone.css"
/>
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap");
</style>
</head>
<body>
<div class="container">
<div class="tools-box">
<div class="row">
<label class="title">Shapes</label>
<ul class="options">
<li class="option tool" id="line">
<img src="icons/line.png" />
<span>Line</span>
</li>
<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" />
<label class="fill" for="fill">Fill color</label>
</li>
</ul>
<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="slider" />
</li>
</ul>
</div>
<div class="row colors">
<label class="title">Colors</label>
<ul class="options">
<li class="option white"></li>
<li class="option black selected"></li>
<li class="option red"></li>
<li class="option green"></li>
<li class="option blue">
<input type="color" id="choose-color" value="blue" />
</li>
</ul>
<button class="clear">Clear All</button>
<button class="save">Save As Image</button>
</div>
</div>
<div class="drawing-board">
<canvas></canvas>
</div>
</div>
<script src="script.js"></script>
</body>
</html>