-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (24 loc) · 757 Bytes
/
index.html
File metadata and controls
29 lines (24 loc) · 757 Bytes
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>
<head>
<title>SVG Drawing Tool</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h2>SVG Drawing Tool</h2>
<div class="toolbar">
<span>Choose Color:</span>
<button class="color-btn" data-color="black"></button>
<button class="color-btn" data-color="red"></button>
<button class="color-btn" data-color="blue"></button>
<button class="color-btn" data-color="green"></button>
<br><br>
<button id="undoBtn">Undo</button>
<button id="clearBtn">Clear</button>
</div>
<svg id="drawingCanvas" width="500" height="350"></svg>
</div>
<script src="script.js"></script>
</body>
</html>