-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (33 loc) · 1.06 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<title>Calculadora bota peso</title>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta name="HandheldFriendly" content="true">
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<script src="main.js"></script>
</head>
<body>
<div class="title_block"><h1>Bota Peso</h1></div>
<div class="content">
<h3>Calculadora de Carga x Tempo</h3>
<hr>
<div class="calculator-outputs">
<span title="Quantidade de minutos" id="m">(m)min</span>
<span title="Quantidade de segundos" id="s">(s)s</span>
</div>
<div class="calculator-inputs">
<label for="tara">TARA (Kg)</label>
<input id="tara" name="tara" type="text"></input>
<label for="pesobruto">PESO BRUTO (Kg)</label>
<input id="pesobruto" name="peso bruto" type="text"></input>
<label for="carga">CARGA (Kg/s)</label>
<input id="carga" name="carga" type="text" value="112.18"></input>
<button onclick="calcular()">CALCULAR</button>
</br>
</div>
</div>
</div>
</body>
</html>