-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (26 loc) · 922 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
35
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CHURRASCÔMETRO</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Churrascômetro</h1>
<input type="number" id="adult" name="adult" placeholder="N° de Adultos">
<input type="number" id="children" name="children" placeholder="N° de Crianças" >
<input type="number" id="duration" name="duration" placeholder="Duração (em horas)">
<div>
<div class="buttonArea">
<button onclick="calculate()">
Calcular
</button>
</div>
<div id="result" class="result">
</div>
</div>
<script src="script.js"></script>
</body>
</html>