-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (62 loc) · 2.71 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="index, follow">
<meta name="author" content="Gustavo Fernandes">
<meta name="description" content="Marque e registre seu tempo de forma simples e prática!">
<link rel="shortcut icon" href="images/logo.png"/>
<link rel="stylesheet" href="css/components.css">
<link rel="stylesheet" href="css/elements.css">
<link rel="stylesheet" href="css/generic.css">
<link rel="stylesheet" href="settings/global.css">
<link rel="stylesheet" href="settings/reset.css">
<link rel="stylesheet" href="settings/responsive.css">
<script type="module" src="https://unpkg.com/ionicons@4.5.10-0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@4.5.10-0/dist/ionicons/ionicons.js"></script>
<script type="text/javascript" src="js/convertTime.js" defer></script>
<script type="text/javascript" src="js/counting.js" defer></script>
<script type="text/javascript" src="js/switchButtons.js" defer></script>
<script type="text/javascript" src="js/checkOutput.js" defer></script>
<script type="text/javascript" src="js/insertTime.js" defer></script>
<script type="text/javascript" src="js/showTable.js" defer></script>
<script type="text/javascript" src="js/scramble.js" defer></script>
<title>Timer | Cronômetro para speedcubing</title>
</head>
<body>
<main>
<section class="box">
<ion-icon class="back" name="arrow-round-back"></ion-icon>
<h3>Solves</h3>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<p>Melhor tempo</p>
<input type="reset" value="" disabled>
<p>Pior tempo</p>
<input type="reset" value="" disabled>
<p>MD5</p>
<input type="reset" value="" disabled>
<p>Média geral</p>
<input type="reset" value="" disabled>
<br>
<a href="https://github.com/gufernandess"><ion-icon class="github" name="logo-github"></ion-icon></a>
<p id="subtitle">Feito com ❤️ por Gustavo Fernandes</p>
</section>
<section class="cronometer">
<span id="scramble"></span>
<p class = "timer" id="timer">
<span class="minute">00</span>:<span class="second">00</span>:<span class="millisecond">00</span>
</p>
<button><ion-icon class="button-icon" name="time"></ion-icon>Iniciar</button>
<ion-icon class="folder" name="folder-open"></ion-icon>
</section>
</main>
</body>
</html>