-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (45 loc) · 1.62 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!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>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
</head>
<body>
<header>
<img src="./logo.png" alt="etch a sketch logo">
<p>Move the mouse over the pad to make your sketch!</p>
</header>
<div class="layout">
<section class="tools">
<div class="slider">
<label for="size">Choose a grid size: </label><br>
<input
type="range"
name="size"
id="size"
min="16"
max="100"
step="1"
value="16"
/>
<output class="grid-size" for="size"></output>
</div>
<div>
<label for="color" class="color">Change the color: </label><br>
<input type="color" id="color" name="color" value="#2165A3">
</div>
<div>
<button class="random-color">GENERATE RANDOM COLOR</button>
</div>
<div>
<button type="button" id="reset">RESET THE SKETCH</button>
</div>
</section>
<div id="container"></div>
</div>
</body>
</html>