-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (56 loc) · 1.92 KB
/
index.html
File metadata and controls
62 lines (56 loc) · 1.92 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!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="styles.css">
</head>
<body>
<div class="main-container">
<div class="drawing-board inactive">
<h1 class="heading">Etch-A-Sketch</h1>
<p class="description">-click to toggle drawing-</p>
</div>
<div class="control-board">
<div class="grid-size-btn-container">
<!-- <button class="grid-size-btn">Change Grid Size</button> -->
<p>Grid Size: <span class="sliderValue">16</span></p>
<input type="range" class="gridSizeSlider" min="16" max="100" value="16">
<!-- Create a button for activating the grid size change -->
<button class="activateGridSizeBtn">Redraw Board</button>
</div>
<!-- <span class="brush-div">
<div class="div"></div>
<div class="div-2">Brush color</div>
</span>
<span class="span-3">
<div class="div-3"></div>
<div class="div-4">Rainbow Mode</div>
</span>
<span class="span-4">
<div class="div-5"></div>
<div class="div-6">Shading mode</div>
</span>
<span class="span-5">
<div class="div-7"></div>
<div class="div-8">Eraser</div>
</span>
<div class="div-9">Grid size</div>
<div class="slider">
<div class="div-11"><div class="div-12"></div></div>
</div>
<span class="span-6">
<div class="div-13"></div>
<div class="div-14">Canvas color</div>
</span>
<span class="span-7">
<div class="div-15"></div>
<div class="div-16">Toggle Grid lines</div>
</span>
<span class="span-8">Clear</span> -->
</div>
</div>
</body>
<script src="script.js"></script>
</html>