-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (30 loc) · 1.07 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
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Etch-A-Sketch</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<div class="header">
<h1>Paintr</h1>
</div>
<div class="sketch-container">
<div class="sketch-board"></div>
</div>
<div class="sketch-options">
<div class="sketch-btn-group">
<input id="color-picker" type="color" value="#000000">
<button id="pen"><img src="./assets/drawing.png" width="30px" height="30px"></button>
<button id="eraser"><img src="./assets/eraser.png" width="30px" height="30px"></button>
<button id="clear"><img src="./assets/trash.png" width="30px" height="30px"></button>
</div>
</div>
<div class="size-controller">
<span id="size-display">Sketch Area : 16 x 16</span>
<input id="sketch-size" type="range" min="16" max="64" value="16">
</div>
</body>
</html>