-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (25 loc) · 819 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
24
25
26
27
28
29
30
31
32
33
34
<html>
<head>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<div class="container">
<h1>Caucule seu IMC</h1>
<form>
<div class="container-calculadora-peso">
<p1>Digite seu peso</p1>
<input id="peso" class="input-number" type="number"/>
<spam>Kg</spam>
</div>
<div class="container-calculadora-altura">
<p1>Digite sua altura</p1>
<input id="altura" class="input-number" type="number"/>
<spam>m</spam>
</div>
<input id="btnCalcular" class="botaoCalcular" type="button" value="Calcular"/>
</form>
<div id="resultado"></div>
</div>
<script type="text/javascript" src="scripts/index.js"></script>
</body>
</html>