-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
34 lines (28 loc) · 885 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<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 da CoDe</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1 class="titulo">Pomodoro da CoDe</h1>
<div class="switch-wrapper">
Modo automático
<label class="switch">
<input type="checkbox" id="auto">
<span class="slider round"></span>
</label>
</div>
</header>
<div class="caixa">
<p class="cronometro" id="cronometro">25:00</p>
<button class="comecar" id="disparador">Começar</button>
</div>
<p class="historico" id="historico">0</p>
<script src="js/main.js"></script>
</body>
</html>