-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (22 loc) · 1.08 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./style/style.css" rel="stylesheet">
<title>Churrascometro</title>
<link rel="shortcut icon" href="./assets/icon.svg">
</head>
<body>
<div class="container">
<h1>Churrascômetro</h1>
<input id="adultos" type="number" name="adultos" placeholder="Adultos">
<input id="criancas" type="number" name="criancas" placeholder="Crianças">
<input id="duracao" type="number" name="duracao" placeholder="Duração (h)">
<button onclick="calcular()">Calcular</button>
<div id="resultado"></div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="#ffd700" fill-opacity="0.8" d="M0,128L80,154.7C160,181,320,235,480,234.7C640,235,800,181,960,144C1120,107,1280,85,1360,74.7L1440,64L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z"></path></svg>
<script src="./script/script.js"></script>
</body>
</html>