-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (30 loc) · 1001 Bytes
/
index.html
File metadata and controls
38 lines (30 loc) · 1001 Bytes
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">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<title>Etch A Sketch</title>
</head>
<body>
<h1>Etch A Sketch</h1>
<div class="container">
<div class="setting">
<div class="size">
<div class="sizeLabel"> </div>
<input type="range" id="size" value="16" min="1" max="100" step="1" />
</div>
<button class="lineBtn">Grid Line</button>
<button class="reset">Reset</button>
<div class="color">
<laber for="picker">Color: </laber>
<input type="color" id="picker" />
</div>
<button class="darken">Darken</button>
<button class="eraser">Erase</button>
</div>
<div class="plate"></div>
</div>
</body>
</html>