-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (47 loc) · 1.51 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
41
42
43
44
45
46
47
48
49
50
51
52
53
<!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>Relógio</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/digital-clock.css">
</head>
<body>
<header>
<i class="fa-solid fa-clock"></i>
<span>Relógio Digital</span>
</header>
<div id="container-button">
<button class="button-clock" id="digital-clock-button">
<a href="index.html">Relógio Digital</a>
</button>
<button class="button-clock" id="analog-clock-button">
<a href="analog-clock.html">Relógio Analógico</a>
</button>
</div>
<main id="main-digital">
<div class="container-digital-clock">
<div>
<span id="hours">00</span>
<span class="time">Horas</span>
</div>
<div>
<span id="minutes">00</span>
<span class="time">Minutos</span>
</div>
<div>
<span id="seconds">00</span>
<span class="time">Segundos</span>
</div>
</div>
</main>
<footer>
<a href="http://github.com/mkmya">Marina Kamiya</a>
</footer>
<script src="./script/digital-clock.js"></script>
<script src="https://kit.fontawesome.com/8d59b48e38.js" crossorigin="anonymous">
</script>
</body>
</html>