-
-
Save parzibyte/4f5948a5aa0930a73b31b191bae88a2a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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"> | |
<title>Temporizador con JavaScript - By Parzibyte</title> | |
<link rel="stylesheet" href="https://unpkg.com/bulma"> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@5.9.55/css/materialdesignicons.min.css"> | |
<link rel="stylesheet" href="estilos.css"> | |
</head> | |
<body> | |
<section class="section"> | |
<div class="columns is-centered"> | |
<div class="column has-text-centered"> | |
<div id="contenedorInputs"> | |
<div class="field"> | |
<label class="label">Minutos</label> | |
<div class="control"> | |
<input class="input" id="minutos" type="number" placeholder="Minutos"> | |
</div> | |
</div> | |
<div class="field"> | |
<label class="label">Segundos</label> | |
<div class="control"> | |
<input class="input" id="segundos" type="number" placeholder="Segundos"> | |
</div> | |
</div> | |
</div> | |
<h2 id="tiempoRestante">00:00.0</h2> | |
<button id="btnIniciar" class="button is-success"><span class="mdi mdi-play"></span></button> | |
<button id="btnPausar" class="button is-success"><span class="mdi mdi-pause"></span></button> | |
<button id="btnDetener" class="button is-success"><span class="mdi mdi-stop"></span></button> | |
<br> | |
<a href="https://parzibyte.me/blog">Creado por Parzibyte</a> | |
</div> | |
</div> | |
</section> | |
<script src="script.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment