-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 898 Bytes
/
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
<!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="style.css">
<script src="main.js" defer></script>
</head>
<body>
<div>
<h1>Etch-a-Sketch</h1>
</div>
<div id="buttons">
<div class="slider-container">
<output class="slider-value" id="selectedNumber">16 x 16</output>
<input type="range" min="16" max="100" value="16" class="slider" id="numberSlider">
</div>
<input type="checkbox" id="rainbow" name="rainbow">
<label for="rainbow">Rainbow Mode</label>
<input type="checkbox" id="shading" name="shading">
<label for="shading">Shader Mode</label>
<button id="clear">Clear</button>
</div>
<div id="container"></div>
</body>
</html>