-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (37 loc) · 1.35 KB
/
index.html
File metadata and controls
48 lines (37 loc) · 1.35 KB
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
47
48
<!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">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div id="back">
<div id="box">
<h3>Make your own Colors!</h3>
<input id="red" type="number" placeholder="0" min="0" max="255" class="inputs">
<small>Enter value of Red(0-255)</small>
<input id="green" type="number" placeholder="0" min="0" max="255" class="inputs">
<small>Enter value of Green(0-255)</small>
<input id="blue" type="number" placeholder="0" min="0" max="255" class="inputs">
<small>Enter value of Blue(0-255)</small>
<button id="btn">Mix Now</button>
<h5>Your color code is : </h5>
<div id="code"></div>
</div>
<div id="circle"></div>
<div id="pallette">
<h5>Colors made by You</h5>
<!-- <div id="inside">
<div class="color">
<div style="background-color:red;" id="save"></div>
<h5 id="text">rgb(20, 35, 70)</h5>
</div>
</div> -->
</div>
</div>
<script src="script.js"></script>
</body>
</html>