-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.13 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
<!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">
</head>
<body>
<div class="main">
<div class="title">
<div class="inputs">
<input type="button" id="reset" value="reset"/>
<div class="colors">
<p class="green">green</p>
<p class="red">red</p>
<p class="yellow">yellow</p>
<p class="blue">blue</p>
<p class="eraser">eraser</p>
</div>
<div class="input-area">
<input type="range" id="num-of-squares" name ="num of squares" min="1" max="40" step="1" value="16">
<label for="num-of-squares" id="num-of-squares-label"></label>
</div>
</div>
<div class="text">
etch a sketch!
</div>
</div>
<div class="canvas"></div>
</div>
</body>
<script src="script.js"></script>
</html>