-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (45 loc) · 1.16 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 name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Challenge</title>
<link rel="stylesheet" href="colorRanges.css"
</head>
<body>
<form>
<label for="RedDial">RED</label>
<input
type="range"
id="RedDial"
min="0"
max="255"
onchange="turnColor()"
/>
<input type="text" id="readRed" size="3" value="0" readonly />
<br />
<label for="GreenDial">GREEN</label>
<input
type="range"
id="GreenDial"
min="0"
max="255"
onchange="turnColor()"
/>
<input type="text" id="readGreen" size="3" value="0" readonly />
<br />
<label for="BlueDial">BLUE</label>
<input
type="range"
id="BlueDial"
min="0"
max="255"
onchange="turnColor()"
/>
<input type="text" id="readBlue" size="3" value="0" readonly />
<br />
<div id="square" class="squareColor"></div>
</form>
<script src="./colors.js"></script>
</body>
</html>