-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 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
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link type="text/css" rel="stylesheet" href="Content/css/style.css">
</head>
<body>
<header class="header">
<h3>Color Picker</h3>
</header>
<div class="wrapper">
<div class="colorContent">
<p class="rgbCode">
rgb(
<span class="code" id="redCode">255</span>,
<span class="code" id="greenCode">255</span>,
<span class="code" id="blueCode">255</span> )
</p>
</div>
<div class="singleColor" id="red">
<p>RED</p>
<input type="range" min="0" max="255" class="slider" id="redSlider">
<input type="number" class="number" id="redNumber">
</div>
<div class="singleColor" id="green">
<p>GREEN</p>
<input type="range" min="0" max="255" class="slider" id="greenSlider">
<input type="number" class="number" id="greenNumber">
</div>
<div class="singleColor" id="blue">
<p>BLUE</p>
<input type="range" min="0" max="255" class="slider" id="blueSlider">
<input type="number" class="number" id="blueNumber">
</div>
</div>
<script src="./main.js"></script>
</body>
</html>