-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
90 lines (84 loc) · 2.74 KB
/
index2.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<link rel="icon" href="images/favicon.png" />
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conversor Challenge de Moedas</title>
<!-- CSS externo -->
<link rel="stylesheet" href="style2.css" />
</head>
<body>
<main id='tela-principal'>
<h1>Conversor de Moedas</h1>
<section class='conteudos'>
<div class='form-group'>
<label for="valorEmReal">R$</label>
<input
type="number"
name="valorEmReal"
id="valorEmReal"
class='input'
step='0.01'
min='0.00'
max='9999999999.99'
value=''
tabindex="1"
onClick='ativarBotao()'
onChange='ativarBotao()'
autofocus
required
/>
</div>
<div class="form-group">
<input
type="radio"
id='dolar'
name="moedaEstrangeira"
class="input radio"
value='Dólar'
tabindex="2"
/> <label for="dolar">Dólar</label>
<input
type="radio"
id='euro'
name="moedaEstrangeira"
class="input radio"
value='Euro'
tabindex="3"
/> <label for="euro">Euro</label>
<input
type="radio"
id='libra'
name="moedaEstrangeira"
class="input radio"
value='Libra'
tabindex="4"
/> <label for="libra">Libra</label>
<input
type="radio"
id='bitcoins'
name="moedaEstrangeira"
class="input radio"
value='Bitcoins'
tabindex="5"
/> <label for="bitcoins">Bitcoins</label>
</div>
<div class="form-group">
<button class='desativado botao' id='btnConverter'
onClick='ativarBotao(); bloquearBotao()' disabled>Converter</button>
<button type="reset" class='botao' id='btnLimpar' tabindex="7">Limpar</button>
</div>
</section>
<div class="instrucoes">
<p class='centro' id='aviso'>Digite o valor, escolha a moeda e converter</p>
</div>
<br>
<div class="instrucoes" style='background:#222; border:0'>
</div>
</main>
<!-- JS externo -->
<script src="script2.js"></script>
</body>
</html>