-
Notifications
You must be signed in to change notification settings - Fork 0
/
ciclo.html
29 lines (28 loc) · 997 Bytes
/
ciclo.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pomodoro Clock</title>
<!-- IMPORTS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="ciclo.css">
</head>
<body>
<div class="timer-container">
<h1 id="timer">25:00</h1>
<p><strong>Siga as instruções dadas a seguir:
<ul>
<li>Cor Vermelha = Trabalho</li>
<li>Cor Verde = Intervalo</li>
<li>Cor Amarela = Descanso </li>
</ul>
</strong></p>
</div>
<!-- Botão de Cancelar -->
<button class="btn btn-danger btn-shadow fixed-bottom fixed-right" onclick="location.href='index.html'">Cancelar Ciclo!</button>
<!-- SCRIPT -->
<script src="script_ciclo.js"></script>
</body>
</html>