-
Notifications
You must be signed in to change notification settings - Fork 0
/
page3.html
36 lines (28 loc) · 978 Bytes
/
page3.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>calculadora</title>
<link rel="stylesheet" href="css/stylesheetpg3.css">
<script src="scripts/scripts-pg1.js"></script>
</head>
<body class="calculadorapage3">
<div class="container">
<a href="index.html">
<img src="img/logo.png" alt="">
</a>
<h1>calculador</h1>
<div class="inputs">
<label for="horaDormir">hora de Dormir:</label>
<input type="time" id="horaDormir" required>
<label for="horaAcordar">hora de Acordar:</label>
<input type="time" id="horaAcordar" required>
<button onclick="calcularCiclos()">calcular agora</button>
</div>
<div class="resultados" id="resultados">
<!-- Resultados serão exibidos aqui -->
</div>
</div>
</body>
</html>