-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 1.64 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
<!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,maximum-scale=5">
<meta name="description" content="Author: Vítor Jungles, Details: A practical and easy timer">
<link rel="stylesheet" href="styles/style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="preload" as="style">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet" media="print" onload="this.media='all'">
<title>Timer</title>
</head>
<body>
<header>
<h1>Timer</h1>
</header>
<main>
<section id="time">
<div class="container">
<div class="user-input">
<h2 id="alert">Enter the desired time below:</h2>
<div class="data-input">
<input id="hours" name="data" type="text" maxlength="2" value="00">
:
<input id="minutes" name="data" type="text" maxlength="2" value="00">
:
<input id="seconds" name="data" type="text" maxlength="2" value="00">
</div>
</div>
</div>
<div class="buttons">
<input class="button" id="initial" type="button" value="Start">
<input class="button" id="reset" type="button" value="Reset">
</div>
</section>
</main>
<footer hidden>
<div class="footer-container">
<p>
<span id="copyright">©</span> - Made by <a href="https://github.com/vitorjungles">Vítor Jungles</a>
</p>
</div>
</footer>
<script src="js/index.js"></script>
</body>
</html>