-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathindex.html
59 lines (54 loc) · 1.74 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="./src/main.css" />
<title>Gama Academy - Calculadora de churrasco</title>
</head>
<body>
<header>
<h5>GAMA ACADEMY</h5>
<h2>Calculadora de Churrasco</h2>
</header>
<div>
<label for="mulheres-qnt">Mulheres</label>
<input id="mulheres-qnt" type="text" />
<label for="homens-qnt">Homens</label>
<input id="homens-qnt" type="text" />
<label for="criancas-qnt">Crianças</label>
<input id="criancas-qnt" type="text" />
<br>
<label for="acompanhamentos">acompanhamentos</label>
<input id="acompanhamentos" type="checkbox" />
</div>
<div>
<label for="bebidas-alcoolicas">Bebidas alcoolicas</label>
<input id="bebidas-alcoolicas" type="text" />
<label for="bebidas-nao-alcoolicas">Bebidas não alcoolicas</label>
<input id="bebidas-nao-alcoolicas" type="text" />
</div>
<br>
<button id="botaoCalcular">Calcular</button>
<div>
<div>
<label for="total-carne" id="total-carne"></label>
</div>
<div>
<label for="total-pessoas" id="total-pessoas"></label>
</div>
<div>
<label for="total-acompanhamento" id="total-acompanhamento"></label>
</div>
<div>
<label for="total-bebidas-nao-alcoolicas" id="total-bebidas-nao-alcoolicas"></label>
</div>
<div>
<label for="total-bebidas-alcoolicas" id="total-bebidas-alcoolicas"></label>
</div>
<div>
</div>
</div>
<script src="./src/main.js"></script>
</body>
</html>