-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.32 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
<!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">
<title>Etch a Sketch</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer ></script>
</head>
<body>
<h1>Etch a Sketch</h1>
<div class="container">
<div class="side-content">
<p class="paintbrush">Paint Brush: Off</p>
<button class="color-btn">
<label for="colorpicker">Color Picker:</label>
<input type="color" id="colorpicker" value="#0000ff">
</button>
<button class="black-btn">Black</button>
<button class="random-btn">RGB</button>
<button class="eraser">Eraser</button>
<button class="reset-btn">Reset</button>
<button class="grid-lines">Toggle Grid Lines</button>
<div class="slider-container">
<p class="slider-label">Grid Size: 16 x 16</p>
<input type="range" min="1" max="100" value="16" id="slider">
</div>
</div>
<div class="grid"></div>
</div>
</body>
</html>