-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (31 loc) · 1.05 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
36
37
38
<!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="style.css">
</head>
<body>
<div class="header">
<h1>Etch-a-Sketch Project</h1>
</div>
<div class="pageContent">
<div id="optionsContainer">
<button id="colorButton" class="button">Randomize Colors</button>
<button id="eraser" class="button">Eraser</button>
<div class="sliderContainer">
<h2 id="sliderText">Grid size: 16 x 16 </h2>
<input type="range" min="1" max="50" value="16" class="slider" id="myslider"/>
</div>
<div class="colorPickerContainer">
<h2>Pick a color</h2>
<input onchange="colorSelected(this)" type="color">
</div>
</div>
<div id="gridContainer">
</div>
</div>
<script src="script.js"></script>
</body>
</html>