-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Etch-a-sketch</title>
<link rel="stylesheet" href="style.css">
</head>
<body draggable="false">
<heading>
<h1>Etch-A-Sketch</h1>
</heading>
<div id="grid" draggable="false"></div>
<div class="eraser-notify"><b>Right-click toggles the eraser!</b></div>
<div class="buttons">
<button id="random">RANDOM</button>
<button id="darken">DARKEN</button>
<button id="clear">CLEAR</button>
</div>
<label for="color-picker">Select a color:</label>
<input id="color-picker" value="#ff0000" type="color" oninput="updateColor(this.value)">
<div class="slider-container">
<div class="slider-size-text">16x16</div>
<input type="range" min="1" max="64" step="1" value="16" class="slider" id="myRange" oninput="updateCanvas(this.value)">
</div>
<script src="script.js"></script>
</body>
</html>