-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (29 loc) · 999 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Etch-a-Sketch</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="script.js" defer></script>
</head>
<body>
<h1 id="heading">Etch-a-Sketch</h1>
<h3 id="choice">
<button id="black">Black</button>
<button id="rgb">RGB</button>
<button id="reset" onClick="window.location.reload()">Reset</button>
<div class="color-prompt">
<input type="color" id="color">
<p id="txt">Chose a color</p>
</div>
<div class="sliderprompt">
<input type="range" min="4" max="99" id="slider">
<p id="value"></p>
</div>
</h3>
<div class="grid">
</div>
</body>
</html>