-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (30 loc) · 1.2 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cálculo do volume de um aquário</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Cálculo do volume de um aquário</h1>
<!-- Formulário para entrada de dados -->
<form onsubmit="calcularVolume(event)">
<label for="comprimento">Comprimento (cm):</label>
<input type="number" id="comprimento" placeholder="Digite o comprimento (em cm)" required>
<br>
<label for="largura">Largura (cm):</label>
<input type="number" id="largura" placeholder="Digite a largura (em cm)" required>
<br>
<label for="altura">Altura (cm):</label>
<input type="number" id="altura" placeholder="Digite a altura (em cm)" required>
<br>
<button type="submit">Calcular volume</button>
<button type="reset">Limpar</button>
<label for="resultado">Volume do aquário:</label>
<input type="text" id="resultado" readonly>
</form>
<!-- Link para o arquivo JavaScript -->
<script src="script.js"></script>
</body>
</html>