-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (64 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>My Paint</title>
<link href="./assets/css/styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="container">
<canvas width="800px" height="400px" id="canvas"></canvas>
<div class="paint-buttons">
<p>
Default:
<input
type="radio"
class="inputPrint"
checked
name="inputPrint"
value="Default"
/>
</p>
<p>
Circle:
<input
type="radio"
class="inputPrint"
value="Circle"
name="inputPrint"
/>
</p>
<p>
Triangle:
<input
type="radio"
class="inputPrint"
value="Triangle"
name="inputPrint"
/>
</p>
<p>
Square:
<input
type="radio"
class="inputPrint"
value="Square"
name="inputPrint"
/>
</p>
<p>Color: <input type="color" id="inputColor" /></p>
<p>Size: <input type="number" id="inputSize" value="10" /></p>
</div>
<div class="other-buttons">
<button id="buttonClean">Clean</button>
<a id="buttonExport">Export</a>
</div>
</div>
</body>
<script src="constants/view.constants.js"></script>
<script src="views/paint.view.js"></script>
<script src="controllers/paint.controller.js"></script>
<script src="app.js"></script>
</html>