-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (31 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css"
integrity="sha512-q3eWabyZPc1XTCmF+8/LuE1ozpg5xxn7iO89yfSOd5/oKvyqLngoNGsx8jq92Y8eXJ/IRxQbEC+FGSYxtk2oiw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<title>Drawing Pad</title>
</head>
<body>
<div class="body">
<h1>Drawing Window</h1>
<canvas id="canvas" width="900" height="600"></canvas>
<div class="tool">
<button id="increase">+</button>
<span id="size">10</span>
<button id="decrease">-</button>
<input id="color" type="color" />
<button id="reset"><i class="fab fa-gg-circle"></i></button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>