-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (100 loc) · 2.32 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>RANGE DE CORES</title>
</head>
<body>
<div class="cabecalho">
<h1><strong>Bootcamp:</strong> Trabalho Prático 1</h1>
<h2>Seletor de Cores RGB</h2>
</div>
</header>
</body>
<main>
<!-- Input para a cor Vermelha -->
<table border="1">
<thead>
<tr>
<th>(R) Vermelho</th>
<th>(G) Verde</th>
<th>(B) Azul</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<input
class="RangeRed"
id="InputRed"
type="range"
value="0"
min="0"
max="255"
step="1"
/>
</td>
<td>
<input
class="RangeGreen"
id="InputGreen"
type="range"
value="0"
min="0"
max="255"
step="1"
/>
</td>
<td>
<input
class="RangeBlue"
id="InputBlue"
type="range"
value="0"
min="0"
max="255"
step="1"
/>
</td>
</tr>
<tr>
<td>
<input
id="ResultRed"
type="text"
style="text-align: center"
readonly
/>
</td>
<td>
<input
id="ResultGreen"
type="text"
style="text-align: center"
readonly
/>
</td>
<td>
<input
id="ResultBlue"
type="text"
style="text-align: center"
readonly
/>
</td>
</tr>
<tr>
<td colspan="3">
<div class="Content"></div>
</td>
</tr>
</tbody>
</table>
<footer>
<div class="perfil"><em>Desenvolvido por</em> Adriana Gama</div>
</footer>
</main>
<script src="javascript.js"></script>
</body>
</html>