-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (26 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<title>Calculadora de NDPCal%</title>
</head>
<body>
<div class="container">
<h1>Calculadora de NDPCal%</h1>
<p>VET <input type="text" name="" id="vet" placeholder="2000"></p>
<p>NPU <input type="text" name="" id="npu" disabled placeholder=""></p>
<p>PTN <input type="text" name="" id="ptn"></p>
<p>NDPCal% <input type="text" name="" id="ndpcal" disabled placeholder=""></p>
<select id="opcao">
<option value="0.5" name="cereal">Cereal ou vegetal</option>
<option value="0.6" name="Leguminosas">Leguminosas</option>
<option value="0.7" name="Animal">Animal</option>
</select>
<button onclick="executar();">Calcular</button>
<br><br>
</div>
<script src="main.js"></script>
</body>
</html>