-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="images/drawing.png" type="image/icon">
<title>
Etch-a-Sketch
</title>
<link href="style/stylesheet.css" rel="stylesheet">
</head>
<body>
<header id="header">
<h1>Etch-a-Sketch</h1>
</header>
<div draggable="false" id="main">
<div id="controls-container">
<button class="button color-btn button-selected" type="button" id="black" value="black">Black</button>
<button class="button color-btn" type="button" id="colorful" value="colorful">Colorful</button>
<button class="button color-btn" type="button" id="darken" value="darken">Darken</button>
<button class="button color-btn" type="button" id="lighten" value="lighten">Lighten</button>
<button class="button color-btn" type="button" id="erase" value="erase">Eraser</button>
<button class="button" type="button" id="clear" value="clear">Clear</button>
<div id="slider">
<label id="slider-label" for="grid-num">24 X 24 Grid</label>
<br>
<input type="range" id="grid-num" value="24" step="1" min="1" max="64">
</div>
</div>
</div>
</body>
<script src="script/script.js"></script>
</html>