-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<title>RGBit</title>
<style>
#colorDisplay {
width: 200px;
height: 200px;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #f8f9fa;
color: black;
text-align: center;
padding: 10px;
}
.slider {
width: 100%;
}
</style>
</head>
<body>
<div id="colorDisplay"></div>
<label for="red">Red: </label><input type="range" id="red" min="0" max="255" class="slider"><input type="number" id="redNum" min="0" max="255"><br>
<label for="green">Green: </label><input type="range" id="green" min="0" max="255" class="slider"><input type="number" id="greenNum" min="0" max="255"><br>
<label for="blue">Blue: </label><input type="range" id="blue" min="0" max="255" class="slider"><input type="number" id="blueNum" min="0" max="255"><br>
<button onclick="submitGuess()">Submit</button>
<p id="distance"></p>
<p id="result"></p>
<div class="footer">
<p id="correctRGB"></p>
<p>Copyright © 2023 Amir Naveh. All rights reserved.</p>
</div>
<script src="main.js"></script>
</body>
</html>