-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (35 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<title>Etch-a-sketch</title>
<meta charset="utf=8">
<meta name="viewport" content ="width=device.width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<div id="frame">
<h2 id="title">Etch-a-Sketch</h2>
<div id="container">
</div>
<div id="controls">
<div class="whiteball"></div>
<div class="resolution">
<label for="range">Resolution <span id="sqNumber"></span></label><br>
<input name="range" id="range" type="range" value="16" min=10 max=150>
</div>
<button type="reset" name="clear" id="clear" value="clear">Clear</button>
<button type="button" name="black" id="black">Black</button>
<button type="button" name="gradDark" id="gradDark">Gradually darker</button>
<button type="button" name="random" id="random">Rainbow!</button>
<div class="colors">
<label for="color">Choose your own color</label>
<input type="color" name="color" id="color" value="#ffffff">
</div>
<div class="whiteball"></div>
</div>
</div>
</body>
<script src="first.js"></script>
</html>