-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (44 loc) · 1.58 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
<!DOCTYPE html />
<html lang="pt-br">
<head>
<title>Churrascômetro</title>
<!-- meta -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- links / style -->
<link rel="icon"
type="image/png"
href="/assets/images/churrasqueira.png">
<link rel="stylesheet" href="/assets/style/style.css">
<!-- scripts -->
<script defer type="module" src="/js/main.js"></script>
</head>
<body>
<section class="alert-error">
Digite somente números
</section>
<main class="container">
<img src="/assets/images/churras.jpg" alt="2 pessoas fazendo churrasco.">
<form>
<h1 class="title">Churrascômetro</h1>
<p>Saiba quanta comida e bebida vai precisar!</p>
<label for="adults">Quantidade de adultos</label>
<input id="adults" name="adults" type="text" placeholder="Adultos">
<label for="kids">Quantidade de crianças</label>
<input id="kids" name="kids" type="text" placeholder="Crianças">
<label for="timing">Duração do churrasco</label>
<input id="timing" name="timing" type="text" placeholder="Duração (h)">
<button type="submit">Calcular</button>
</form>
</main>
<div class="modal-result">
<div class="modal card">
<h2 class="title">Cálculo</h2>
<button id="close">
<img src="/assets/images/close.svg" alt="An close icon">
</button>
<p id="change">Precisará de 1kg de Carne</p>
</div>
</div>
</body>
</html>