mirror of
https://github.com/binarydigitlol/gametimer.git
synced 2025-06-20 17:02:25 +00:00
41 lines
1.5 KiB
HTML
41 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<link rel="stylesheet" href="pomodoro.css">
|
|
<link href="https://unpkg.com/nes.css@latest/css/nes.min.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<h3 class="title">Game Switch Timer</h3>
|
|
<div class="nes-container is-dark">
|
|
<p>
|
|
<h3 id="timer">
|
|
<label id="timerText"></label>
|
|
</h3>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div id="controls">
|
|
<!-- <button class="btn-danger-outline" name="changegame" onclick="countdown(1500);"></button> -->
|
|
<button class="nes-btn is-primary" onclick="countdown(600);">10 Min</button>
|
|
<button class="nes-btn is-warning" onclick="countdown(900);">15 Min</button>
|
|
<br>
|
|
<button class="nes-btn is-error" onclick="stopTimer();">STOP</button>
|
|
</div>
|
|
|
|
<audio id="alarm" src="asset/SEGA.mp3" preload="auto"></audio>
|
|
<script src="pomodoro.js"></script>
|
|
|
|
</div>
|
|
|
|
<footer>
|
|
<a href="https://twitch.tv/KilobyteKeith"><i class="nes-icon twitch is-medium"></i></a>
|
|
<a href="https://github.com/BinaryDigitDev/gametimer"> <i class="nes-icon github is-medium"></i></a>
|
|
</footer>
|
|
<br>
|
|
</body>
|
|
</html>
|