-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (39 loc) · 1.55 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">
<title>Cronômetro</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<nav>
<a href="./home.html" id="home" aria-label="Página inicial">Home</a>
<a href="./portfolio.html" id="portfolio" aria-label="Portfólio">Portfolio</a>
<a href="https://github.com/laisdeveloper" id="github" aria-label="Perfil no GitHub">GitHub</a>
<a href="https://www.linkedin.com/in/laisdev" id="linkedin" aria-label="Perfil no LinkedIn">Linkedin</a>
<a href="https://www.instagram.com/laistech" id="instagram" aria-label="Perfil no Instagram">Instagram</a>
<a href="home.html" id="logo-laisdev" aria-label="Logo da Laisdev">laisdev</a>
</nav>
</header>
<main>
<h2>Cronômetro</h2>
<section id="time">
<span id="minute">00</span> :
<span id="second">00</span> :
<span id="milisecond">00</span>
</section>
<section class="botoes">
<button onclick="iniciar()" class="botao">INICIAR</button>
<button onclick="parar()" class="botao">PARAR</button>
<button onclick="resetar()" class="botao">RESETAR</button>
</section>
</main>
<hr>
<footer>
<span>Feito por @laisdev. <br>Todos os direitos reservados. 2024.</span>
</footer>
<script src="main.js" defer></script>
</body>
</html>