-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 1.34 KB
/
index.html
File metadata and controls
38 lines (37 loc) · 1.34 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
<!DOCTYPE html>
<html lang="es">
<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" />
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<script src="https://kit.fontawesome.com/be137e345d.js" crossorigin="anonymous"></script>
<title>Repaso JavaScript</title>
</head>
<body>
<div class="wrapper">
<h1>
C R O N O M E T R O
</h1>
<div class="container">
<p class="texto"></p>
<div class="buttonContainer">
<button onclick="iniciar()" class="iniciar">
<i class="fas fa-play"></i>
</button>
<button onclick="pausar()" class="pausar">
<i class="fas fa-pause"></i>
</button>
<button onclick="parar()" class="parar">
<i class="fas fa-stop"></i>
</button>
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>