-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 768 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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="https://raw.githubusercontent.com/HACKERPRO908/Drawo/main/style.css">
</head>
<body>
<h1>Drawing App</h1>
<div id="controls">
<label for="color">Color:</label>
<input type="color" id="color" value="#000000">
<label for="brush-size">Brush Size:</label>
<input type="number" id="brush-size" min="1" value="5">
<button id="clear-button">Clear</button>
</div>
<canvas id="drawing-canvas"></canvas>
<script src="https://raw.githubusercontent.com/HACKERPRO908/Drawo/main/script.js"></script>
</body>
</html>