-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
29 lines (29 loc) · 851 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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8' />
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<title>Sowwyz-Drawing Website</title>
<link rel='stylesheet' href='Stylesheet/Style.css' />
<script src='Script/Main.js' defer></script>
</head>
<body>
<canvas id='canvas' width='1600' height='1000'></canvas>
<div class='toolbox'>
<button id='decrease'>
-
</button>
<span id='size'>
30
</span>
<button id='increase'>
+
</button>
<label for='color'></label>
<input type='color' id='color' />
<button id='clear'>
🆕
</button>
</div>
</body>
</html>