-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 928 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<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>Calculadora Binária</title>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
</head>
<body>
<script src="js/calculadora.js"></script>
<h1>Bin2Dec<br>CONVERSOR BÍNARIO PARA DECIMAL</h1>
<!--caixas onde vai ser digitado os numeros binarios e -->
<div class="caixa">
<label class="caixa-index binario">BÍNARIO</label><=================>
<label class="caixa-index decimal">DECIMAL</label><br>
<input type="number" maxlength=8 id="binarioText"> =
<input type="number" id="decimalText" readonly><br><br>
<input type="button" value="Calcular" onclick="calcular()">
</div>
</body>
</html>