-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (28 loc) · 1007 Bytes
/
index.html
File metadata and controls
31 lines (28 loc) · 1007 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
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" />
<script src="index.js" defer></script>
</head>
<body>
<div class="drawAndTool">
<canvas></canvas>
<div class="drawTextBox">
<span class="decrease">-</span>
<span class="drawSize">6</span>
<span class="increase">+</span>
<input type="color" class="colorInp">
<span class="pen"><i class="fa-solid fa-paintbrush"></i></span>
<span class="erase"><i class="fa-solid fa-eraser"></i></span>
<span class="clearCanva"><i class="fa-solid fa-trash"></i></span>
</div>
</div>
<div class="downloadBtnDiv">
<button>Download</button>
</div>
</body>
</html>