-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCro.html
More file actions
59 lines (49 loc) · 1.45 KB
/
Cro.html
File metadata and controls
59 lines (49 loc) · 1.45 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="Cro.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Koulen&display=swap" rel="stylesheet">
<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>Cronometro</title>
<style>
*{
margin: 0;
padding: 0;
margin: 0;
font-family: 'Koulen', cursive;
}
.container{
text-align: center;
font-size: 20px;
}
button{
background-color:grey;
color:black;
font-size: 30px;
cursor: pointer;
border: 0;
border-radius: 10px;
}
</style>
</head>
<body>
<audio src="alarm.mp3" id="som" style="display: none;"></audio>
<div class="container">
<h2>minutos</h2>
<select name="minutos" id="minutos"></select>
<h2>segundos</h2>
<select name="segundos" id="segundos"></select>
<br>
<br>
<button id="começar">começar</button>
<div id="display">
<h3></h3>
</div><!--display-->
</div><!--container-->
<script src="./Cro.Js"></script>
</body>
</html>