-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (28 loc) · 961 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
30
31
32
33
34
<!DOCTYPE html>
<head>
<title>buondevid's Etch-a-Sketch</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<meta name="A simple Etch-a-Sketch project" content="A project from TOP curriculum to deepen HTML/CSS/JS knowledge">
</head>
<body>
<h1 id='title'>Etch-a-Sketch</h1>
<div id='inputs-wrapper'>
<form>
<label for='square-range'>Select the number of squares per side:<br></label>
<input id='square-range' type=range min='3' max='100' step='1' value='16'>
<p id='p-range'>16</p>
</form>
<button class='buttons inputs'>Rainbow</button>
<button class='buttons inputs'>Shades</button>
<button class='buttons inputs'>Black</button>
<button class='buttons inputs'>Rubber</button>
<button id='reset' class='inputs'>Reset</button>
</div>
<div id="page-wrapper">
<div id='grid-wrapper'>
</div>
</div>
<script src="scripts.js"></script>
</body>