-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.21 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.21 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>colors-rgb</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="img/rueda-de-color.png">
</head>
<body>
<div class="contenedor-principal">
<div class="color">
<label for="rojo">Red (R)</label>
<input id="rojo" type="range" min="0" max="255" value="23" step="1">
<p id="text-rojo"></p>
</div>
<div class="color">
<label for="verde">green (G)</label>
<input id="verde" type="range" min="0" max="255" value="41" step="1">
<p id="text-verde"></p>
</div>
<div class="color">
<label for="azul">blue (B)</label>
<input id="azul" type="range" min="0" max="255" value="56" step="1">
<p id="text-azul"></p>
</div>
<div class="color">
<p>color rbg</p>
<p id="colorcompleto"></p>
</div>
</div>
<script src="app.js"></script>
</body>
</html>