-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (34 loc) · 1.17 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" type="image/png" sizes="32x32" href="assets/imgs/favicon-relogio-32x32.png">
<title>Data/Relogio</title>
<link rel="stylesheet" href="assets/css/relogio.css">
<link rel="stylesheet" href="assets/css/global.css">
</head>
<body>
<div class="background-img">
<section class="container">
<div class="bg-box">
<h1 class="titulo">🕑 Horário 🕑</h1>
</div>
<div class="retangulo">
<p class="tempo">00:00:00
<p>
<p class="data">DD/MM/AAAA</p>
</div>
</section>
<section class="container">
<h2 class="titulo">Outras opções</h2>
<p class="opcoes">
<a class="options" href="temporizador.html"><button class="botao" id="temporizador">Temporizador ⌛</button></a>
<a class="options" href="cronometro.html"><button class="botao" id="cronometro">Cronometro ⏱️</button></a>
</p>
</section>
</div>
<script src="./assets/js/data.js"></script>
</body>
</html>