-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 1014 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
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Etch a Sketch</title>
<script src="etch.js" defer></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<div class="nav-itens">
<label for="grid-selector"> Grid Size </label>
<input id="grid-selector" type="range" min="1" max="100" value="16" oninput="this.nextElementSibling.textContent = `${this.value} x ${this.value}`">
<output>16 x 16</output>
<button id="btn"> SET </button>
</div>
<div class="nav-itens">
<input id="color-selector" type="color" value="#000000" name="Color">
<label for="color-selector"> Color </label>
</div>
</nav>
</header>
<div id="grid"></div>
</body>
</html>